0.0.0 • Published 8 years ago

ng-dialogs v0.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

ng-dialogs

:exclamation: note: not ready for production usage

Just another angular dialog component...

Demo

Clone project and run:

$ gulp serve

Angular Components

ngDialogsCoreService

This service takes care of the plumbing and provides the infrastructure to create all sorts of dialogs.

ngDialogsCoreService.createDialog(options)

After creation; the dialog instance is returned and remains closed by default.

  • id: {String} Unique dialog identifier. Default: undefined
  • cssClass: {String} Adds css class to dialog container. Default: undefined
  • template: {String} Dialog HTML. Default: ''
  • templateUrl: {String} path to dialog HTML snippet. Default: undefined
  • templateBefore: {String} HTML dialog wrapper. Default: '<div ng-show="$dialog.visible">'
  • templateAfter: {String} HTML dialog wrapper. Default: '</div>'
  • controller: {Function/String} Dialog controller. Default: angular.noop
  • controllerAs
  • plugins: {Array} Add behavior to dialog with plugins. Default: []
ngDialogsCoreService dialog instance
  • .show() show dialog
  • .hide() hide dialog
  • .destroy() destroy dialog
ngDialogsCoreService plugins

Add behavior to dialogs with plugins.

During a dialog's life-cycle, the following events are broadcasted. Plugins can utilize these or broadcast additional events.

  • 'dialog:init'
  • 'dialog:show'
  • 'dialog:hide'
  • 'dialog:destroy'
// dialog plugin
function(scope, element, dialog, options) {
    // subscribe to broadcasted event
    scope.$on('dialog:init', function() {
        console.log('dialog:init');
    });

    // reference to dialog's root element
    element.addClass('foobar');

    // dialog api [.show(), .hide(), .destroy()]
    dialog.show();

    // access ngDialogsCoreService.createDialog options
    if (options.escapeClose) {
        // implementation
    }
}

Example: escapeClose plugin. Dismisses dialog by calling .destroy().

// dialog plugin
function escapeClosePlugin(scope, element, dialog, options) {
    // introduce new option `escapeClose`
    if (options.escapeClose === true) {
        scope.$on('dialog:init', dialogInit);
        function dialogInit () {
            element[0].addEventListener('keydown', function(event) {
                if (event.keyCode === 27) {
                    dialog.destroy();
                }
            }, true);
        }
    }
}

Feedback

Your feedback is welcome.

Just file one feedback at: https://github.com/afklm/ng-dialogs/issues

TODO

  • modal dialog
  • messagebox
  • dropover
  • tooltip