Modal dialogs and popups provider for Angular.js applications.
ngDialog is small (~2Kb), has minimalistic API, highly customizable through themes and has only Angular.js as dependency.
You can download all necessary ngDialog files manually or install it with bower:
bower install ngDialog
You need only to include ngDialog.js
and ngDialog.css
(as minimal setup) to your project and then you can start using ngDialog
provider in your directives, controllers and services. For example in controllers:
var app = angular.module('exampleApp', ['ngDialog']);
app.controller('MainCtrl', function ($scope, ngDialog) {
$scope.clickToOpen = function () {
ngDialog.open({ template: 'popupTmpl.html' });
};
});
ngDialog service provides easy to use and minimalistic API, but in the same time it's powerful enough. Here is the list of accessible methods that you can use:
Method allows to open dialog window, creates new dialog instance on each call. It accepts options
object as the only argument.
Dialog template can be loaded through path
to external html template or <script>
tag with text/ng-template
:
<script type="text/ng-template" id="templateId">
<h1>Template heading</h1>
<p>Content goes here</p>
</script>
ngDialog.open({ template: 'templateId' });
Also it is possible to use simple string as template together with plain
option.
If true
allows to use plain string as template, default false
:
ngDialog.open({
template: '<p>my template</p>',
plain: true
});
Name of controller that will be used for dialog window if necessary.
Scope object that will be passed to dialog. If you use controller with separate $scope
service this object will be passed to $scope.$parent
param:
$scope.value = true;
ngDialog.open({
template: 'externalTemplate.html',
className: 'ngdialog-theme-plain',
scope: $scope
});
<script type="text/ng-template" id="externalTemplate.html">
<p>External scope: <code>{{value}}</code></p>
</script>
Any data that you want to be stored in controller's $parent
scope, it could be stringified JSON as well.
This option allows to controll dialog look, you can use built-in themes or create your own styled modals.
This example enables one of built-in ngDialog themes - ngdialog-theme-default
(do not forget to include necessary css files):
ngDialog.open({
template: 'templateId',
className: 'ngdialog-theme-default'
});
Check themes block to learn more.
If false
it allows to hide close button on modals, default true
.
It allows to close modals by clicking Esc
button, default true
.
This will close all open modals if there several of them open at the same time.
It allows to close modals by clicking on overlay background, default true
.
Method accepts dialog's id
as string argument to close specific dialog window, if id
is not specified it will close all currently active modals (same behavior as .closeAll()
).
Method manages closing all active modals on the page.
By default ngDialog module is served with ngDialog
directive which can be used as attribute for buttons, links, etc. Almost all .open()
options are available through tag attributes as well, the only difference is that ng-template
id or path of template file is required.
Some imaginary button, for example, will look like:
<button type="button"
ng-dialog="templateId.html"
ng-dialog-class="ngdialog-theme-flat"
ng-dialog-controller="ModalCtrl">
Open modal text
</button>
Everytime when ngDialog is opened or closed we're broadcasting two events (dispatching events downwards to all child scopes):
-
ngDialog.opened
-
ngDialog.closed
This allows you to register your own listeners, example:
$rootScope.$on('ngDialog.opened', function (e, $dialog) {
console.log('ngDialog opened: ' + $dialog.attr('id'));
});
Currently ngDialog contains two default themes that show how easily you can create your own. Check example
folder for demonstration purposes.
Have a nice experience and use ngDialog in your project? Let us know! We appreciate any kind of feedback ;)
MIT Licensed
Copyright (c) 2013, Likeastore.com [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.