123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479 |
- /* global angular */
- (function (window, document) {
- 'use strict';
- /*
- * AngularJS Toaster
- * Version: 0.4.18
- *
- * Copyright 2013-2015 Jiri Kavulak.
- * All Rights Reserved.
- * Use, reproduction, distribution, and modification of this code is subject to the terms and
- * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
- *
- * Author: Jiri Kavulak
- * Related to project of John Papa, Hans Fjällemark and Nguyễn Thiện Hùng (thienhung1989)
- */
- angular.module('toaster', []).constant(
- 'toasterConfig', {
- 'limit': 0, // limits max number of toasts
- 'tap-to-dismiss': true,
- /* Options:
- - Boolean false/true
- 'close-button': true
- - object if not a boolean that allows you to
- override showing the close button for each
- icon-class value
- 'close-button': { 'toast-error': true, 'toast-info': false }
- */
- 'close-button': false,
- 'close-html': '<button class="toast-close-button" type="button">×</button>',
- 'newest-on-top': true,
- //'fade-in': 1000, // done in css
- //'on-fade-in': undefined, // not implemented
- //'fade-out': 1000, // done in css
- //'on-fade-out': undefined, // not implemented
- //'extended-time-out': 1000, // not implemented
- 'time-out': 5000, // Set timeOut and extendedTimeout to 0 to make it sticky
- 'icon-classes': {
- error: 'toast-error',
- info: 'toast-info',
- wait: 'toast-wait',
- success: 'toast-success',
- warning: 'toast-warning'
- },
- 'body-output-type': '', // Options: '', 'trustedHtml', 'template', 'templateWithData', 'directive'
- 'body-template': 'toasterBodyTmpl.html',
- 'icon-class': 'toast-info',
- 'position-class': 'toast-top-right', // Options (see CSS):
- // 'toast-top-full-width', 'toast-bottom-full-width', 'toast-center',
- // 'toast-top-left', 'toast-top-center', 'toast-top-right',
- // 'toast-bottom-left', 'toast-bottom-center', 'toast-bottom-right',
- 'title-class': 'toast-title',
- 'message-class': 'toast-message',
- 'prevent-duplicates': false,
- 'mouseover-timer-stop': true // stop timeout on mouseover and restart timer on mouseout
- }
- ).service(
- 'toaster', [
- '$rootScope', 'toasterConfig', function ($rootScope, toasterConfig) {
- this.pop = function (type, title, body, timeout, bodyOutputType, clickHandler, toasterId, showCloseButton, toastId, onHideCallback) {
- if (angular.isObject(type)) {
- var params = type; // Enable named parameters as pop argument
- this.toast = {
- type: params.type,
- title: params.title,
- body: params.body,
- timeout: params.timeout,
- bodyOutputType: params.bodyOutputType,
- clickHandler: params.clickHandler,
- showCloseButton: params.showCloseButton,
- closeHtml: params.closeHtml,
- uid: params.toastId,
- onHideCallback: params.onHideCallback,
- directiveData: params.directiveData
- };
- toastId = params.toastId;
- toasterId = params.toasterId;
- } else {
- this.toast = {
- type: type,
- title: title,
- body: body,
- timeout: timeout,
- bodyOutputType: bodyOutputType,
- clickHandler: clickHandler,
- showCloseButton: showCloseButton,
- uid: toastId,
- onHideCallback: onHideCallback
- };
- }
- $rootScope.$emit('toaster-newToast', toasterId, toastId);
- };
- this.clear = function (toasterId, toastId) {
- $rootScope.$emit('toaster-clearToasts', toasterId, toastId);
- };
- // Create one method per icon class, to allow to call toaster.info() and similar
- for (var type in toasterConfig['icon-classes']) {
- this[type] = createTypeMethod(type);
- }
- function createTypeMethod(toasterType) {
- return function (title, body, timeout, bodyOutputType, clickHandler, toasterId, showCloseButton, toastId, onHideCallback) {
- if (angular.isString(title)) {
- this.pop(
- toasterType,
- title,
- body,
- timeout,
- bodyOutputType,
- clickHandler,
- toasterId,
- showCloseButton,
- toastId,
- onHideCallback);
- } else { // 'title' is actually an object with options
- this.pop(angular.extend(title, { type: toasterType }));
- }
- };
- }
- }]
- ).factory(
- 'toasterEventRegistry', [
- '$rootScope', function ($rootScope) {
- var deregisterNewToast = null, deregisterClearToasts = null, newToastEventSubscribers = [], clearToastsEventSubscribers = [], toasterFactory;
- toasterFactory = {
- setup: function () {
- if (!deregisterNewToast) {
- deregisterNewToast = $rootScope.$on(
- 'toaster-newToast', function (event, toasterId, toastId) {
- for (var i = 0, len = newToastEventSubscribers.length; i < len; i++) {
- newToastEventSubscribers[i](event, toasterId, toastId);
- }
- });
- }
- if (!deregisterClearToasts) {
- deregisterClearToasts = $rootScope.$on(
- 'toaster-clearToasts', function (event, toasterId, toastId) {
- for (var i = 0, len = clearToastsEventSubscribers.length; i < len; i++) {
- clearToastsEventSubscribers[i](event, toasterId, toastId);
- }
- });
- }
- },
- subscribeToNewToastEvent: function (onNewToast) {
- newToastEventSubscribers.push(onNewToast);
- },
- subscribeToClearToastsEvent: function (onClearToasts) {
- clearToastsEventSubscribers.push(onClearToasts);
- },
- unsubscribeToNewToastEvent: function (onNewToast) {
- var index = newToastEventSubscribers.indexOf(onNewToast);
- if (index >= 0) {
- newToastEventSubscribers.splice(index, 1);
- }
- if (newToastEventSubscribers.length === 0) {
- deregisterNewToast();
- deregisterNewToast = null;
- }
- },
- unsubscribeToClearToastsEvent: function (onClearToasts) {
- var index = clearToastsEventSubscribers.indexOf(onClearToasts);
- if (index >= 0) {
- clearToastsEventSubscribers.splice(index, 1);
- }
- if (clearToastsEventSubscribers.length === 0) {
- deregisterClearToasts();
- deregisterClearToasts = null;
- }
- }
- };
- return {
- setup: toasterFactory.setup,
- subscribeToNewToastEvent: toasterFactory.subscribeToNewToastEvent,
- subscribeToClearToastsEvent: toasterFactory.subscribeToClearToastsEvent,
- unsubscribeToNewToastEvent: toasterFactory.unsubscribeToNewToastEvent,
- unsubscribeToClearToastsEvent: toasterFactory.unsubscribeToClearToastsEvent
- };
- }]
- )
- .directive('directiveTemplate', ['$compile', '$injector', function($compile, $injector) {
- return {
- restrict: 'A',
- scope: {
- directiveName: '@directiveName',
- directiveData: '@directiveData'
- },
- replace: true,
- link: function (scope, elm, attrs) {
- scope.$watch('directiveName', function (directiveName) {
- if (angular.isUndefined(directiveName) || directiveName.length <= 0)
- throw new Error('A valid directive name must be provided via the toast body argument when using bodyOutputType: directive');
-
- var directiveExists = $injector.has(attrs.$normalize(directiveName) + 'Directive');
-
- if (!directiveExists)
- throw new Error(directiveName + ' could not be found.');
-
- if (scope.directiveData)
- scope.directiveData = angular.fromJson(scope.directiveData);
-
- var template = $compile('<div ' + directiveName + '></div>')(scope);
- elm.append(template);
- });
- }
- }
- }])
- .directive(
- 'toasterContainer', [
- '$parse', '$rootScope', '$interval', '$sce', 'toasterConfig', 'toaster', 'toasterEventRegistry',
- function ($parse, $rootScope, $interval, $sce, toasterConfig, toaster, toasterEventRegistry) {
- return {
- replace: true,
- restrict: 'EA',
- scope: true, // creates an internal scope for this directive (one per directive instance)
- link: function (scope, elm, attrs) {
- var id = 0, mergedConfig;
- // Merges configuration set in directive with default one
- mergedConfig = angular.extend({}, toasterConfig, scope.$eval(attrs.toasterOptions));
- scope.config = {
- toasterId: mergedConfig['toaster-id'],
- position: mergedConfig['position-class'],
- title: mergedConfig['title-class'],
- message: mergedConfig['message-class'],
- tap: mergedConfig['tap-to-dismiss'],
- closeButton: mergedConfig['close-button'],
- closeHtml: mergedConfig['close-html'],
- animation: mergedConfig['animation-class'],
- mouseoverTimer: mergedConfig['mouseover-timer-stop']
- };
- scope.$on(
- "$destroy", function () {
- toasterEventRegistry.unsubscribeToNewToastEvent(scope._onNewToast);
- toasterEventRegistry.unsubscribeToClearToastsEvent(scope._onClearToasts);
- }
- );
- function setTimeout(toast, time) {
- toast.timeoutPromise = $interval(
- function () {
- scope.removeToast(toast.id);
- }, time, 1
- );
- }
- scope.configureTimer = function (toast) {
- var timeout = angular.isNumber(toast.timeout) ? toast.timeout : mergedConfig['time-out'];
- if (typeof timeout === "object") timeout = timeout[toast.type];
- if (timeout > 0) {
- setTimeout(toast, timeout);
- }
- };
- function addToast(toast, toastId) {
- toast.type = mergedConfig['icon-classes'][toast.type];
- if (!toast.type) {
- toast.type = mergedConfig['icon-class'];
- }
- if (mergedConfig['prevent-duplicates'] === true) {
- // Prevent adding duplicate toasts if it's set
- if (isUndefinedOrNull(toastId)) {
- if (scope.toasters.length > 0 && scope.toasters[scope.toasters.length - 1].body === toast.body) {
- return;
- }
- } else {
- var i, len;
- for (i = 0, len = scope.toasters.length; i < len; i++) {
- if (scope.toasters[i].uid === toastId) {
- removeToast(i);
- // update loop
- i--;
- len = scope.toasters.length;
- }
- }
- }
- }
- toast.id = ++id;
- // Sure uid defined
- if (!isUndefinedOrNull(toastId)) {
- toast.uid = toastId;
- }
- // set the showCloseButton property on the toast so that
- // each template can bind directly to the property to show/hide
- // the close button
- var closeButton = mergedConfig['close-button'];
- // if toast.showCloseButton is a boolean value,
- // it was specifically overriden in the pop arguments
- if (typeof toast.showCloseButton === "boolean") {
- } else if (typeof closeButton === "boolean") {
- toast.showCloseButton = closeButton;
- } else if (typeof closeButton === "object") {
- var closeButtonForType = closeButton[toast.type];
- if (typeof closeButtonForType !== "undefined" && closeButtonForType !== null) {
- toast.showCloseButton = closeButtonForType;
- }
- } else {
- // if an option was not set, default to false.
- toast.showCloseButton = false;
- }
-
- if (toast.showCloseButton) {
- toast.closeHtml = $sce.trustAsHtml(toast.closeHtml || scope.config.closeHtml);
- }
-
- // Set the toast.bodyOutputType to the default if it isn't set
- toast.bodyOutputType = toast.bodyOutputType || mergedConfig['body-output-type'];
- switch (toast.bodyOutputType) {
- case 'trustedHtml':
- toast.html = $sce.trustAsHtml(toast.body);
- break;
- case 'template':
- toast.bodyTemplate = toast.body || mergedConfig['body-template'];
- break;
- case 'templateWithData':
- var fcGet = $parse(toast.body || mergedConfig['body-template']);
- var templateWithData = fcGet(scope);
- toast.bodyTemplate = templateWithData.template;
- toast.data = templateWithData.data;
- break;
- case 'directive':
- toast.html = toast.body;
- break;
- }
- scope.configureTimer(toast);
-
- if (mergedConfig['newest-on-top'] === true) {
- scope.toasters.unshift(toast);
- if (mergedConfig['limit'] > 0 && scope.toasters.length > mergedConfig['limit']) {
- scope.toasters.pop();
- }
- } else {
- scope.toasters.push(toast);
- if (mergedConfig['limit'] > 0 && scope.toasters.length > mergedConfig['limit']) {
- scope.toasters.shift();
- }
- }
- }
- scope.removeToast = function (id) {
- var i, len;
- for (i = 0, len = scope.toasters.length; i < len; i++) {
- if (scope.toasters[i].id === id) {
- removeToast(i);
- break;
- }
- }
- };
- function removeToast(toastIndex) {
- var toast = scope.toasters[toastIndex];
- if (toast) {
- if (toast.timeoutPromise) {
- $interval.cancel(toast.timeoutPromise);
- }
- scope.toasters.splice(toastIndex, 1);
- if (angular.isFunction(toast.onHideCallback)) {
- toast.onHideCallback();
- }
- }
- }
- function removeAllToasts(toastId) {
- for (var i = scope.toasters.length - 1; i >= 0; i--) {
- if (isUndefinedOrNull(toastId)) {
- removeToast(i);
- } else {
- if (scope.toasters[i].uid == toastId) {
- removeToast(i);
- }
- }
- }
- }
- scope.toasters = [];
- function isUndefinedOrNull(val) {
- return angular.isUndefined(val) || val === null;
- }
- scope._onNewToast = function (event, toasterId, toastId) {
- // Compatibility: if toaster has no toasterId defined, and if call to display
- // hasn't either, then the request is for us
- if ((isUndefinedOrNull(scope.config.toasterId) && isUndefinedOrNull(toasterId)) || (!isUndefinedOrNull(scope.config.toasterId) && !isUndefinedOrNull(toasterId) && scope.config.toasterId == toasterId)) {
- addToast(toaster.toast, toastId);
- }
- };
- scope._onClearToasts = function (event, toasterId, toastId) {
- // Compatibility: if toaster has no toasterId defined, and if call to display
- // hasn't either, then the request is for us
- if (toasterId == '*' || (isUndefinedOrNull(scope.config.toasterId) && isUndefinedOrNull(toasterId)) || (!isUndefinedOrNull(scope.config.toasterId) && !isUndefinedOrNull(toasterId) && scope.config.toasterId == toasterId)) {
- removeAllToasts(toastId);
- }
- };
- toasterEventRegistry.setup();
- toasterEventRegistry.subscribeToNewToastEvent(scope._onNewToast);
- toasterEventRegistry.subscribeToClearToastsEvent(scope._onClearToasts);
- },
- controller: [
- '$scope', '$element', '$attrs', function ($scope, $element, $attrs) {
- // Called on mouseover
- $scope.stopTimer = function (toast) {
- if ($scope.config.mouseoverTimer === true) {
- if (toast.timeoutPromise) {
- $interval.cancel(toast.timeoutPromise);
- toast.timeoutPromise = null;
- }
- }
- };
- // Called on mouseout
- $scope.restartTimer = function (toast) {
- if ($scope.config.mouseoverTimer === true) {
- if (!toast.timeoutPromise) {
- $scope.configureTimer(toast);
- }
- } else if (toast.timeoutPromise === null) {
- $scope.removeToast(toast.id);
- }
- };
- $scope.click = function (toast, isCloseButton) {
- if ($scope.config.tap === true || (toast.showCloseButton === true && isCloseButton === true)) {
- var removeToast = true;
- if (toast.clickHandler) {
- if (angular.isFunction(toast.clickHandler)) {
- removeToast = toast.clickHandler(toast, isCloseButton);
- } else if (angular.isFunction($scope.$parent.$eval(toast.clickHandler))) {
- removeToast = $scope.$parent.$eval(toast.clickHandler)(toast, isCloseButton);
- } else {
- console.log("TOAST-NOTE: Your click handler is not inside a parent scope of toaster-container.");
- }
- }
- if (removeToast) {
- $scope.removeToast(toast.id);
- }
- }
- };
- }],
- template:
- '<div id="toast-container" ng-class="[config.position, config.animation]">' +
- '<div ng-repeat="toaster in toasters" class="toast" ng-class="toaster.type" ng-click="click(toaster)" ng-mouseover="stopTimer(toaster)" ng-mouseout="restartTimer(toaster)">' +
- '<div ng-if="toaster.showCloseButton" ng-click="click(toaster, true)" ng-bind-html="toaster.closeHtml"></div>' +
- '<div ng-class="config.title">{{toaster.title}}</div>' +
- '<div ng-class="config.message" ng-switch on="toaster.bodyOutputType">' +
- '<div ng-switch-when="trustedHtml" ng-bind-html="toaster.html"></div>' +
- '<div ng-switch-when="template"><div ng-include="toaster.bodyTemplate"></div></div>' +
- '<div ng-switch-when="templateWithData"><div ng-include="toaster.bodyTemplate"></div></div>' +
- '<div ng-switch-when="directive"><div directive-template directive-name="{{toaster.html}}" directive-data="{{toaster.directiveData}}"></div></div>' +
- '<div ng-switch-default >{{toaster.body}}</div>' +
- '</div>' +
- '</div>' +
- '</div>'
- };
- }]
- );
- })(window, document);
|