123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- /*!
- * Angular Material Design
- * https://github.com/angular/material
- * @license MIT
- * v0.11.4
- */
- (function( window, angular, undefined ){
- "use strict";
- /**
- * @ngdoc module
- * @name material.components.toast
- * @description
- * Toast
- */
- angular.module('material.components.toast', [
- 'material.core',
- 'material.components.button'
- ])
- .directive('mdToast', MdToastDirective)
- .provider('$mdToast', MdToastProvider);
- /* ngInject */
- function MdToastDirective($mdToast) {
- return {
- restrict: 'E',
- link: function postLink(scope, element, attr) {
- // When navigation force destroys an interimElement, then
- // listen and $destroy() that interim instance...
- scope.$on('$destroy', function() {
- $mdToast.destroy();
- });
- }
- };
- }
- MdToastDirective.$inject = ["$mdToast"];
- /**
- * @ngdoc service
- * @name $mdToast
- * @module material.components.toast
- *
- * @description
- * `$mdToast` is a service to build a toast notification on any position
- * on the screen with an optional duration, and provides a simple promise API.
- *
- *
- * ## Restrictions on custom toasts
- * - The toast's template must have an outer `<md-toast>` element.
- * - For a toast action, use element with class `md-action`.
- * - Add the class `md-capsule` for curved corners.
- *
- * @usage
- * <hljs lang="html">
- * <div ng-controller="MyController">
- * <md-button ng-click="openToast()">
- * Open a Toast!
- * </md-button>
- * </div>
- * </hljs>
- *
- * <hljs lang="js">
- * var app = angular.module('app', ['ngMaterial']);
- * app.controller('MyController', function($scope, $mdToast) {
- * $scope.openToast = function($event) {
- * $mdToast.show($mdToast.simple().content('Hello!'));
- * // Could also do $mdToast.showSimple('Hello');
- * };
- * });
- * </hljs>
- */
- /**
- * @ngdoc method
- * @name $mdToast#showSimple
- *
- * @description
- * Convenience method which builds and shows a simple toast.
- *
- * @returns {promise} A promise that can be resolved with `$mdToast.hide()` or
- * rejected with `$mdToast.cancel()`.
- *
- */
- /**
- * @ngdoc method
- * @name $mdToast#simple
- *
- * @description
- * Builds a preconfigured toast.
- *
- * @returns {obj} a `$mdToastPreset` with the chainable configuration methods:
- *
- * - $mdToastPreset#content(string) - sets toast content to string
- * - $mdToastPreset#action(string) - adds an action button. If clicked the promise (returned from `show()`) will resolve
- * with value 'ok'; otherwise it promise is resolved with 'true' after a hideDelay timeout.
- * - $mdToastPreset#highlightAction(boolean) - sets action button to be highlighted
- * - $mdToastPreset#capsule(boolean) - adds 'md-capsule' class to the toast (curved corners)
- * - $mdToastPreset#theme(string) - sets the theme on the toast to theme (default is `$mdThemingProvider`'s default theme)
- */
- /**
- * @ngdoc method
- * @name $mdToast#updateContent
- *
- * @description
- * Updates the content of an existing toast. Useful for updating things like counts, etc.
- *
- */
- /**
- * @ngdoc method
- * @name $mdToast#build
- *
- * @description
- * Creates a custom `$mdToastPreset` that you can configure.
- *
- * @returns {obj} a `$mdToastPreset` with the chainable configuration methods for shows' options (see below).
- */
- /**
- * @ngdoc method
- * @name $mdToast#show
- *
- * @description Shows the toast.
- *
- * @param {object} optionsOrPreset Either provide an `$mdToastPreset` returned from `simple()`
- * and `build()`, or an options object with the following properties:
- *
- * - `templateUrl` - `{string=}`: The url of an html template file that will
- * be used as the content of the toast. Restrictions: the template must
- * have an outer `md-toast` element.
- * - `template` - `{string=}`: Same as templateUrl, except this is an actual
- * template string.
- * - `scope` - `{object=}`: the scope to link the template / controller to. If none is specified, it will create a new child scope.
- * This scope will be destroyed when the toast is removed unless `preserveScope` is set to true.
- * - `preserveScope` - `{boolean=}`: whether to preserve the scope when the element is removed. Default is false
- * - `hideDelay` - `{number=}`: How many milliseconds the toast should stay
- * active before automatically closing. Set to 0 or false to have the toast stay open until
- * closed manually. Default: 3000.
- * - `position` - `{string=}`: Where to place the toast. Available: any combination
- * of 'bottom', 'left', 'top', 'right', 'fit'. Default: 'bottom left'.
- * - `controller` - `{string=}`: The controller to associate with this toast.
- * The controller will be injected the local `$mdToast.hide( )`, which is a function
- * used to hide the toast.
- * - `locals` - `{string=}`: An object containing key/value pairs. The keys will
- * be used as names of values to inject into the controller. For example,
- * `locals: {three: 3}` would inject `three` into the controller with the value
- * of 3.
- * - `bindToController` - `bool`: bind the locals to the controller, instead of passing them in. These values will not be available until after initialization.
- * - `resolve` - `{object=}`: Similar to locals, except it takes promises as values
- * and the toast will not open until the promises resolve.
- * - `controllerAs` - `{string=}`: An alias to assign the controller to on the scope.
- * - `parent` - `{element=}`: The element to append the toast to. Defaults to appending
- * to the root element of the application.
- *
- * @returns {promise} A promise that can be resolved with `$mdToast.hide()` or
- * rejected with `$mdToast.cancel()`. `$mdToast.hide()` will resolve either with a Boolean
- * value == 'true' or the value passed as an argument to `$mdToast.hide()`.
- * And `$mdToast.cancel()` will resolve the promise with a Boolean value == 'false'
- */
- /**
- * @ngdoc method
- * @name $mdToast#hide
- *
- * @description
- * Hide an existing toast and resolve the promise returned from `$mdToast.show()`.
- *
- * @param {*=} response An argument for the resolved promise.
- *
- * @returns {promise} a promise that is called when the existing element is removed from the DOM.
- * The promise is resolved with either a Boolean value == 'true' or the value passed as the
- * argument to `.hide()`.
- *
- */
- /**
- * @ngdoc method
- * @name $mdToast#cancel
- *
- * @description
- * Hide the existing toast and reject the promise returned from
- * `$mdToast.show()`.
- *
- * @param {*=} response An argument for the rejected promise.
- *
- * @returns {promise} a promise that is called when the existing element is removed from the DOM
- * The promise is resolved with a Boolean value == 'false'.
- *
- */
- function MdToastProvider($$interimElementProvider) {
- // Differentiate promise resolves: hide timeout (value == true) and hide action clicks (value == ok).
- var ACTION_RESOLVE = 'ok';
- var activeToastContent;
- var $mdToast = $$interimElementProvider('$mdToast')
- .setDefaults({
- methods: ['position', 'hideDelay', 'capsule', 'parent' ],
- options: toastDefaultOptions
- })
- .addPreset('simple', {
- argOption: 'content',
- methods: ['content', 'action', 'highlightAction', 'theme', 'parent'],
- options: /* ngInject */ ["$mdToast", "$mdTheming", function($mdToast, $mdTheming) {
- var opts = {
- template: [
- '<md-toast md-theme="{{ toast.theme }}" ng-class="{\'md-capsule\': toast.capsule}">',
- '<span flex>{{ toast.content }}</span>',
- '<md-button class="md-action" ng-if="toast.action" ng-click="toast.resolve()" ng-class="{\'md-highlight\': toast.highlightAction}">',
- '{{ toast.action }}',
- '</md-button>',
- '</md-toast>'
- ].join(''),
- controller: /* ngInject */ ["$scope", function mdToastCtrl($scope) {
- var self = this;
- $scope.$watch(function() { return activeToastContent; }, function() {
- self.content = activeToastContent;
- });
- this.resolve = function() {
- $mdToast.hide( ACTION_RESOLVE );
- };
- }],
- theme: $mdTheming.defaultTheme(),
- controllerAs: 'toast',
- bindToController: true
- };
- return opts;
- }]
- })
- .addMethod('updateContent', function(newContent) {
- activeToastContent = newContent;
- });
- toastDefaultOptions.$inject = ["$animate", "$mdToast", "$mdUtil"];
- return $mdToast;
- /* ngInject */
- function toastDefaultOptions($animate, $mdToast, $mdUtil) {
- var SWIPE_EVENTS = '$md.swipeleft $md.swiperight';
- return {
- onShow: onShow,
- onRemove: onRemove,
- position: 'bottom left',
- themable: true,
- hideDelay: 3000
- };
- function onShow(scope, element, options) {
- activeToastContent = options.content;
- element = $mdUtil.extractElementByName(element, 'md-toast', true);
- options.onSwipe = function(ev, gesture) {
- //Add swipeleft/swiperight class to element so it can animate correctly
- element.addClass('md-' + ev.type.replace('$md.',''));
- $mdUtil.nextTick($mdToast.cancel);
- };
- options.openClass = toastOpenClass(options.position);
- // 'top left' -> 'md-top md-left'
- options.parent.addClass(options.openClass);
- element.on(SWIPE_EVENTS, options.onSwipe);
- element.addClass(options.position.split(' ').map(function(pos) {
- return 'md-' + pos;
- }).join(' '));
- return $animate.enter(element, options.parent);
- }
- function onRemove(scope, element, options) {
- element.off(SWIPE_EVENTS, options.onSwipe);
- options.parent.removeClass(options.openClass);
- return (options.$destroy == true) ? element.remove() : $animate.leave(element);
- }
- function toastOpenClass(position) {
- return 'md-toast-open-' +
- (position.indexOf('top') > -1 ? 'top' : 'bottom');
- }
- }
- }
- MdToastProvider.$inject = ["$$interimElementProvider"];
- })(window, window.angular);
|