| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- import { isPresent } from '../../util/util';
- import { PORTAL_TOAST } from '../app/app-constants';
- import { ToastCmp } from './toast-component';
- import { ToastMdSlideIn, ToastMdSlideOut, ToastSlideIn, ToastSlideOut, ToastWpPopIn, ToastWpPopOut } from './toast-transitions';
- import { ViewController } from '../../navigation/view-controller';
- /**
- * @hidden
- */
- var Toast = (function (_super) {
- __extends(Toast, _super);
- function Toast(app, opts, config) {
- if (opts === void 0) { opts = {}; }
- var _this = this;
- opts.dismissOnPageChange = isPresent(opts.dismissOnPageChange) ? !!opts.dismissOnPageChange : false;
- _this = _super.call(this, ToastCmp, opts, null) || this;
- _this._app = app;
- // set the position to the bottom if not provided
- if (!opts.position || !_this.isValidPosition(opts.position)) {
- opts.position = TOAST_POSITION_BOTTOM;
- }
- _this.isOverlay = true;
- config.setTransition('toast-slide-in', ToastSlideIn);
- config.setTransition('toast-slide-out', ToastSlideOut);
- config.setTransition('toast-md-slide-in', ToastMdSlideIn);
- config.setTransition('toast-md-slide-out', ToastMdSlideOut);
- config.setTransition('toast-wp-slide-out', ToastWpPopOut);
- config.setTransition('toast-wp-slide-in', ToastWpPopIn);
- return _this;
- }
- /**
- * @hidden
- */
- Toast.prototype.getTransitionName = function (direction) {
- var key = 'toast' + (direction === 'back' ? 'Leave' : 'Enter');
- return this._nav && this._nav.config.get(key);
- };
- /**
- * @hidden
- */
- Toast.prototype.isValidPosition = function (position) {
- return position === TOAST_POSITION_TOP || position === TOAST_POSITION_MIDDLE || position === TOAST_POSITION_BOTTOM;
- };
- /**
- * @param {string} message Toast message content
- */
- Toast.prototype.setMessage = function (message) {
- this.data.message = message;
- return this;
- };
- /**
- * @param {number} dur Toast message duration
- */
- Toast.prototype.setDuration = function (dur) {
- this.data.duration = dur;
- return this;
- };
- /**
- * @param {'top'|'middle'|'bottom'} pos Toast message position
- */
- Toast.prototype.setPosition = function (pos) {
- this.data.position = pos;
- return this;
- };
- /**
- * @param {string} cssClass Toast message CSS class
- */
- Toast.prototype.setCssClass = function (cssClass) {
- this.data.cssClass = cssClass;
- return this;
- };
- /**
- * @param {boolean} closeButton Toast message close button
- */
- Toast.prototype.setShowCloseButton = function (closeButton) {
- this.data.showCloseButton = closeButton;
- return this;
- };
- /**
- * Present the toast instance.
- *
- * @param {NavOptions} [navOptions={}] Nav options to go with this transition.
- * @returns {Promise} Returns a promise which is resolved when the transition has completed.
- */
- Toast.prototype.present = function (navOptions) {
- if (navOptions === void 0) { navOptions = {}; }
- navOptions.disableApp = false;
- navOptions.keyboardClose = false;
- return this._app.present(this, navOptions, PORTAL_TOAST);
- };
- /**
- * Dismiss all toast components which have been presented.
- */
- Toast.prototype.dismissAll = function () {
- this._nav && this._nav.popAll();
- };
- return Toast;
- }(ViewController));
- export { Toast };
- var TOAST_POSITION_TOP = 'top';
- var TOAST_POSITION_MIDDLE = 'middle';
- var TOAST_POSITION_BOTTOM = 'bottom';
- //# sourceMappingURL=toast.js.map
|