Show pop-ups the most elegant way

235,210

Solution 1

Based on my experience with AngularJS modals so far I believe that the most elegant approach is a dedicated service to which we can provide a partial (HTML) template to be displayed in a modal.

When we think about it modals are kind of AngularJS routes but just displayed in modal popup.

The AngularUI bootstrap project (http://angular-ui.github.com/bootstrap/) has an excellent $modal service (used to be called $dialog prior to version 0.6.0) that is an implementation of a service to display partial's content as a modal popup.

Solution 2

It's funny because I'm learning Angular myself and was watching some video's from their channel on Youtube. The speaker mentions your exact problem in this video https://www.youtube.com/watch?v=ZhfUv0spHCY#t=1681 around the 28:30 minute mark.

It comes down to placing that particular piece of code in a service rather then a controller.

My guess would be to inject new popup elements into the DOM and handle them separate instead of showing and hiding the same element. This way you can have multiple popups.

The whole video is very interesting to watch as well :-)

Solution 3

See http://adamalbrecht.com/2013/12/12/creating-a-simple-modal-dialog-directive-in-angular-js/ for a simple way of doing modal dialog with Angular and without needing bootstrap

Edit: I've since been using ng-dialog from http://likeastore.github.io/ngDialog which is flexible and doesn't have any dependencies.

Solution 4

  • Create a 'popup' directive and apply it to the container of the popup content
  • In the directive, wrap the content in a absolute position div along with the mask div below it.
  • It is OK to move the 2 divs in the DOM tree as needed from within the directive. Any UI code is OK in the directives, including the code to position the popup in center of screen.
  • Create and bind a boolean flag to controller. This flag will control visibility.
  • Create scope variables that bond to OK / Cancel functions etc.

Editing to add a high level example (non functional)

<div id='popup1-content' popup='showPopup1'>
  ....
  ....
</div>


<div id='popup2-content' popup='showPopup2'>
  ....
  ....
</div>



.directive('popup', function() {
  var p = {
      link : function(scope, iElement, iAttrs){
           //code to wrap the div (iElement) with a abs pos div (parentDiv)
          // code to add a mask layer div behind 
          // if the parent is already there, then skip adding it again.
         //use jquery ui to make it dragable etc.
          scope.watch(showPopup, function(newVal, oldVal){
               if(newVal === true){
                   $(parentDiv).show();
                 } 
              else{
                 $(parentDiv).hide();
                }
          });
      }


   }
  return p;
});

Solution 5

Angular-ui comes with dialog directive.Use it and set templateurl to whatever page you want to include.That is the most elegant way and i have used it in my project as well. You can pass several other parameters for dialog as per need.

Share:
235,210

Related videos on Youtube

Bruno
Author by

Bruno

I'm Bruno Scopelliti, web developer from Bologna, Italy. @brunoscopelliti

Updated on January 18, 2020

Comments

  • Bruno
    Bruno over 4 years

    I have this AngularJS app. Everything works just fine.

    Now I need to show different pop-ups when specific conditions become true, and I was wondering what would be the best way to proceed.

    Currently I’m evaluating two options, but I’m absolutely open to other options.


    Option 1

    I could create the new HTML element for the pop-up, and append to the DOM directly from the controller.

    This will break the MVC design pattern. I’m not happy with this solution.


    Option 2

    I could always insert the code for all the pop-ups in the static HTML file. Then, using ngShow, I can hide / show only the correct pop-up.

    This option is not really scalable.


    So I’m pretty sure there has to be a better way to achieve what I want.

  • deck
    deck over 10 years
    Misko is angular's seed! (bwa haha). Seriously tho. Regard his words as the definitive source for angular.
  • Mohammad Umair Khan
    Mohammad Umair Khan over 10 years
    angular-bootstrap 0.6 onwards has replaced $dialog with $modal. That means you need to change all code that is using $dialog as it is deprecated and write it in $modal
  • Sangram Singh
    Sangram Singh over 10 years
    $dialog is now $modal
  • Sangram Singh
    Sangram Singh over 10 years
    $watch instead of 'watch'. also shdn't it be 'popup' instead of 'showPopup' in scope.watch(showPopup, function(newVal, oldVal){ ?
  • jusopi
    jusopi almost 10 years
    I just did a quick sprint with this approach only to realize that this is great for a single popup/modal approach, however think of this particular UX: Say a customer is ordering an item, and the UI presents a confirm order popup (so we've 'occupied' Adam's popup with content). Now we click send or buy or whatever from that popup, and there is an error whereby the user needs to amend that order in the previous screen. I want to display that error in another popup at the top level. This approach doesn't facilitate this I don't believe.
  • jusopi
    jusopi almost 10 years
    @pkozlowski.opensource I like ui-bootstrap's approach however I can't seem to transclude content with the modal. I've researched it some and see other folks have this issue as well.
  • RasikaSam
    RasikaSam almost 10 years
  • superluminary
    superluminary over 9 years
    Just to mention, a service should not be accessing the DOM. A directive is the place for this.
  • pkozlowski.opensource
    pkozlowski.opensource over 9 years
    @superluminary this is indeed a good general rule to follow, but it is also god to know why a certain rule is in pace and understand when such a rule can (or even should!) be broken. I believe that modals / tooltips and the like are exception to the rule. In short: one need to know rules but also understand the context where those apply / not apply.
  • superluminary
    superluminary over 9 years
    Interesting. I take it back.
  • Dejan Bogatinovski
    Dejan Bogatinovski almost 9 years
    Hey this is great solution for creating modals. However I want to be able to also change the url when the modal is opened so that when I write that url in the address bar, the modal is opened with all the content in behind. How can I do this in addition to your answer? Any ideas ?
  • Nik Dow
    Nik Dow over 8 years
    True but I think more than one popup might be a poor UI.
  • Andres Felipe
    Andres Felipe over 7 years
    well the plugin is the answer i was looking for!