UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

943 lines (931 loc) 85.5 kB
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/cdk/bidi'), require('@angular/cdk/overlay'), require('@angular/cdk/portal'), require('@angular/core'), require('ng-zorro-antd/core/config'), require('ng-zorro-antd/core/logger'), require('ng-zorro-antd/core/util'), require('rxjs'), require('rxjs/operators'), require('@angular/cdk/a11y'), require('@angular/common'), require('@angular/platform-browser/animations'), require('ng-zorro-antd/i18n'), require('@angular/animations'), require('@angular/cdk/keycodes'), require('ng-zorro-antd/button'), require('ng-zorro-antd/core/no-animation'), require('ng-zorro-antd/core/outlet'), require('ng-zorro-antd/icon'), require('ng-zorro-antd/pipes')) : typeof define === 'function' && define.amd ? define('ng-zorro-antd/modal', ['exports', '@angular/cdk/bidi', '@angular/cdk/overlay', '@angular/cdk/portal', '@angular/core', 'ng-zorro-antd/core/config', 'ng-zorro-antd/core/logger', 'ng-zorro-antd/core/util', 'rxjs', 'rxjs/operators', '@angular/cdk/a11y', '@angular/common', '@angular/platform-browser/animations', 'ng-zorro-antd/i18n', '@angular/animations', '@angular/cdk/keycodes', 'ng-zorro-antd/button', 'ng-zorro-antd/core/no-animation', 'ng-zorro-antd/core/outlet', 'ng-zorro-antd/icon', 'ng-zorro-antd/pipes'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global['ng-zorro-antd'] = global['ng-zorro-antd'] || {}, global['ng-zorro-antd'].modal = {}), global.ng.cdk.bidi, global.ng.cdk.overlay, global.ng.cdk.portal, global.ng.core, global['ng-zorro-antd'].core.config, global['ng-zorro-antd'].core.logger, global['ng-zorro-antd'].core.util, global.rxjs, global.rxjs.operators, global.ng.cdk.a11y, global.ng.common, global.ng.platformBrowser.animations, global['ng-zorro-antd'].i18n, global.ng.animations, global.ng.cdk.keycodes, global['ng-zorro-antd'].button, global['ng-zorro-antd'].core['no-animation'], global['ng-zorro-antd'].core.outlet, global['ng-zorro-antd'].icon, global['ng-zorro-antd'].pipes)); }(this, (function (exports, bidi, overlay, portal, core, config, logger, util, rxjs, operators, a11y, common, animations$1, i18n, animations, keycodes, button, noAnimation, outlet, icon, pipes) { 'use strict'; /** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ var noopFun = function () { return void 0; }; var ɵ0 = noopFun; var ModalOptions = /** @class */ (function () { function ModalOptions() { this.nzCentered = false; this.nzClosable = true; this.nzOkLoading = false; this.nzOkDisabled = false; this.nzCancelDisabled = false; this.nzCancelLoading = false; this.nzNoAnimation = false; this.nzAutofocus = 'auto'; this.nzKeyboard = true; this.nzZIndex = 1000; this.nzWidth = 520; this.nzCloseIcon = 'close'; this.nzOkType = 'primary'; this.nzOkDanger = false; this.nzModalType = 'default'; this.nzOnCancel = noopFun; this.nzOnOk = noopFun; // Confirm this.nzIconType = 'question-circle'; } return ModalOptions; }()); /** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ var ZOOM_CLASS_NAME_MAP = { enter: 'zoom-enter', enterActive: 'zoom-enter-active', leave: 'zoom-leave', leaveActive: 'zoom-leave-active' }; var FADE_CLASS_NAME_MAP = { enter: 'fade-enter', enterActive: 'fade-enter-active', leave: 'fade-leave', leaveActive: 'fade-leave-active' }; var MODAL_MASK_CLASS_NAME = 'ant-modal-mask'; var NZ_CONFIG_MODULE_NAME = 'modal'; /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ /* global Reflect, Promise */ var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; function __extends(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); } var __assign = function () { __assign = Object.assign || function __assign(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; function __rest(s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; } function __decorate(decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; } function __param(paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); }; } function __metadata(metadataKey, metadataValue) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); } function __awaiter(thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); } function __generator(thisArg, body) { var _ = { label: 0, sent: function () { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g; function verb(n) { return function (v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (_) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } } var __createBinding = Object.create ? (function (o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } }); }) : (function (o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; }); function __exportStar(m, o) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); } function __values(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; if (m) return m.call(o); if (o && typeof o.length === "number") return { next: function () { if (o && i >= o.length) o = void 0; return { value: o && o[i++], done: !o }; } }; throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); } function __read(o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; if (!m) return o; var i = m.call(o), r, ar = [], e; try { while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); } catch (error) { e = { error: error }; } finally { try { if (r && !r.done && (m = i["return"])) m.call(i); } finally { if (e) throw e.error; } } return ar; } /** @deprecated */ function __spread() { for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i])); return ar; } /** @deprecated */ function __spreadArrays() { for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; for (var r = Array(s), k = 0, i = 0; i < il; i++) for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) r[k] = a[j]; return r; } function __spreadArray(to, from) { for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) to[j] = from[i]; return to; } function __await(v) { return this instanceof __await ? (this.v = v, this) : new __await(v); } function __asyncGenerator(thisArg, _arguments, generator) { if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); var g = generator.apply(thisArg, _arguments || []), i, q = []; return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } function fulfill(value) { resume("next", value); } function reject(value) { resume("throw", value); } function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } } function __asyncDelegator(o) { var i, p; return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } } function __asyncValues(o) { if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); var m = o[Symbol.asyncIterator], i; return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); } } function __makeTemplateObject(cooked, raw) { if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } return cooked; } ; var __setModuleDefault = Object.create ? (function (o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function (o, v) { o["default"] = v; }; function __importStar(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; } function __importDefault(mod) { return (mod && mod.__esModule) ? mod : { default: mod }; } function __classPrivateFieldGet(receiver, privateMap) { if (!privateMap.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return privateMap.get(receiver); } function __classPrivateFieldSet(receiver, privateMap, value) { if (!privateMap.has(receiver)) { throw new TypeError("attempted to set private field on non-instance"); } privateMap.set(receiver, value); return value; } /** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ var nzModalAnimations = { modalContainer: animations.trigger('modalContainer', [ animations.state('void, exit', animations.style({})), animations.state('enter', animations.style({})), animations.transition('* => enter', animations.animate('.24s', animations.style({}))), animations.transition('* => void, * => exit', animations.animate('.2s', animations.style({}))) ]) }; /** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ function applyConfigDefaults(config, defaultOptions) { return Object.assign(Object.assign({}, defaultOptions), config); } function getValueWithConfig(userValue, configValue, defaultValue) { return typeof userValue === 'undefined' ? (typeof configValue === 'undefined' ? defaultValue : configValue) : userValue; } /** * Assign the params into the content component instance. * @deprecated Should use dependency injection to get the params for user * @breaking-change 12.0.0 */ function setContentInstanceParams(instance, params) { Object.assign(instance, params); } function getConfigFromComponent(component) { var nzCentered = component.nzCentered, nzMask = component.nzMask, nzMaskClosable = component.nzMaskClosable, nzClosable = component.nzClosable, nzOkLoading = component.nzOkLoading, nzOkDisabled = component.nzOkDisabled, nzCancelDisabled = component.nzCancelDisabled, nzCancelLoading = component.nzCancelLoading, nzKeyboard = component.nzKeyboard, nzNoAnimation = component.nzNoAnimation, nzContent = component.nzContent, nzComponentParams = component.nzComponentParams, nzFooter = component.nzFooter, nzZIndex = component.nzZIndex, nzWidth = component.nzWidth, nzWrapClassName = component.nzWrapClassName, nzClassName = component.nzClassName, nzStyle = component.nzStyle, nzTitle = component.nzTitle, nzCloseIcon = component.nzCloseIcon, nzMaskStyle = component.nzMaskStyle, nzBodyStyle = component.nzBodyStyle, nzOkText = component.nzOkText, nzCancelText = component.nzCancelText, nzOkType = component.nzOkType, nzOkDanger = component.nzOkDanger, nzIconType = component.nzIconType, nzModalType = component.nzModalType, nzOnOk = component.nzOnOk, nzOnCancel = component.nzOnCancel, nzAfterOpen = component.nzAfterOpen, nzAfterClose = component.nzAfterClose, nzCloseOnNavigation = component.nzCloseOnNavigation, nzAutofocus = component.nzAutofocus; return { nzCentered: nzCentered, nzMask: nzMask, nzMaskClosable: nzMaskClosable, nzClosable: nzClosable, nzOkLoading: nzOkLoading, nzOkDisabled: nzOkDisabled, nzCancelDisabled: nzCancelDisabled, nzCancelLoading: nzCancelLoading, nzKeyboard: nzKeyboard, nzNoAnimation: nzNoAnimation, nzContent: nzContent, nzComponentParams: nzComponentParams, nzFooter: nzFooter, nzZIndex: nzZIndex, nzWidth: nzWidth, nzWrapClassName: nzWrapClassName, nzClassName: nzClassName, nzStyle: nzStyle, nzTitle: nzTitle, nzCloseIcon: nzCloseIcon, nzMaskStyle: nzMaskStyle, nzBodyStyle: nzBodyStyle, nzOkText: nzOkText, nzCancelText: nzCancelText, nzOkType: nzOkType, nzOkDanger: nzOkDanger, nzIconType: nzIconType, nzModalType: nzModalType, nzOnOk: nzOnOk, nzOnCancel: nzOnCancel, nzAfterOpen: nzAfterOpen, nzAfterClose: nzAfterClose, nzCloseOnNavigation: nzCloseOnNavigation, nzAutofocus: nzAutofocus }; } function throwNzModalContentAlreadyAttachedError() { throw Error('Attempting to attach modal content after content is already attached'); } var BaseModalContainerComponent = /** @class */ (function (_super) { __extends(BaseModalContainerComponent, _super); function BaseModalContainerComponent(elementRef, focusTrapFactory, cdr, render, overlayRef, nzConfigService, config, document, animationType) { var _this = _super.call(this) || this; _this.elementRef = elementRef; _this.focusTrapFactory = focusTrapFactory; _this.cdr = cdr; _this.render = render; _this.overlayRef = overlayRef; _this.nzConfigService = nzConfigService; _this.config = config; _this.animationType = animationType; _this.animationStateChanged = new core.EventEmitter(); _this.containerClick = new core.EventEmitter(); _this.cancelTriggered = new core.EventEmitter(); _this.okTriggered = new core.EventEmitter(); _this.state = 'enter'; _this.isStringContent = false; _this.dir = 'ltr'; _this.elementFocusedBeforeModalWasOpened = null; _this.mouseDown = false; _this.oldMaskStyle = null; _this.destroy$ = new rxjs.Subject(); _this.document = document; _this.dir = overlayRef.getDirection(); _this.isStringContent = typeof config.nzContent === 'string'; _this.nzConfigService .getConfigChangeEventForComponent(NZ_CONFIG_MODULE_NAME) .pipe(operators.takeUntil(_this.destroy$)) .subscribe(function () { _this.updateMaskClassname(); }); return _this; } Object.defineProperty(BaseModalContainerComponent.prototype, "showMask", { get: function () { var defaultConfig = this.nzConfigService.getConfigForComponent(NZ_CONFIG_MODULE_NAME) || {}; return !!getValueWithConfig(this.config.nzMask, defaultConfig.nzMask, true); }, enumerable: false, configurable: true }); Object.defineProperty(BaseModalContainerComponent.prototype, "maskClosable", { get: function () { var defaultConfig = this.nzConfigService.getConfigForComponent(NZ_CONFIG_MODULE_NAME) || {}; return !!getValueWithConfig(this.config.nzMaskClosable, defaultConfig.nzMaskClosable, true); }, enumerable: false, configurable: true }); BaseModalContainerComponent.prototype.onContainerClick = function (e) { if (e.target === e.currentTarget && !this.mouseDown && this.showMask && this.maskClosable) { this.containerClick.emit(); } }; BaseModalContainerComponent.prototype.onMousedown = function () { this.mouseDown = true; }; BaseModalContainerComponent.prototype.onMouseup = function () { var _this = this; if (this.mouseDown) { setTimeout(function () { _this.mouseDown = false; }); } }; BaseModalContainerComponent.prototype.onCloseClick = function () { this.cancelTriggered.emit(); }; BaseModalContainerComponent.prototype.onOkClick = function () { this.okTriggered.emit(); }; BaseModalContainerComponent.prototype.attachComponentPortal = function (portal) { if (this.portalOutlet.hasAttached()) { throwNzModalContentAlreadyAttachedError(); } this.savePreviouslyFocusedElement(); this.setZIndexForBackdrop(); return this.portalOutlet.attachComponentPortal(portal); }; BaseModalContainerComponent.prototype.attachTemplatePortal = function (portal) { if (this.portalOutlet.hasAttached()) { throwNzModalContentAlreadyAttachedError(); } this.savePreviouslyFocusedElement(); this.setZIndexForBackdrop(); return this.portalOutlet.attachTemplatePortal(portal); }; BaseModalContainerComponent.prototype.attachStringContent = function () { this.savePreviouslyFocusedElement(); this.setZIndexForBackdrop(); }; BaseModalContainerComponent.prototype.getNativeElement = function () { return this.elementRef.nativeElement; }; BaseModalContainerComponent.prototype.animationDisabled = function () { return this.config.nzNoAnimation || this.animationType === 'NoopAnimations'; }; BaseModalContainerComponent.prototype.setModalTransformOrigin = function () { var modalElement = this.modalElementRef.nativeElement; if (this.elementFocusedBeforeModalWasOpened) { var previouslyDOMRect = this.elementFocusedBeforeModalWasOpened.getBoundingClientRect(); var lastPosition = util.getElementOffset(this.elementFocusedBeforeModalWasOpened); var x = lastPosition.left + previouslyDOMRect.width / 2; var y = lastPosition.top + previouslyDOMRect.height / 2; var transformOrigin = x - modalElement.offsetLeft + "px " + (y - modalElement.offsetTop) + "px 0px"; this.render.setStyle(modalElement, 'transform-origin', transformOrigin); } }; BaseModalContainerComponent.prototype.savePreviouslyFocusedElement = function () { var _this = this; if (!this.focusTrap) { this.focusTrap = this.focusTrapFactory.create(this.elementRef.nativeElement); } if (this.document) { this.elementFocusedBeforeModalWasOpened = this.document.activeElement; if (this.elementRef.nativeElement.focus) { Promise.resolve().then(function () { return _this.elementRef.nativeElement.focus(); }); } } }; BaseModalContainerComponent.prototype.trapFocus = function () { var element = this.elementRef.nativeElement; if (this.config.nzAutofocus) { this.focusTrap.focusInitialElementWhenReady().then(); } else { var activeElement = this.document.activeElement; if (activeElement !== element && !element.contains(activeElement)) { element.focus(); } } }; BaseModalContainerComponent.prototype.restoreFocus = function () { var toFocus = this.elementFocusedBeforeModalWasOpened; // We need the extra check, because IE can set the `activeElement` to null in some cases. if (toFocus && typeof toFocus.focus === 'function') { var activeElement = this.document.activeElement; var element = this.elementRef.nativeElement; if (!activeElement || activeElement === this.document.body || activeElement === element || element.contains(activeElement)) { toFocus.focus(); } } if (this.focusTrap) { this.focusTrap.destroy(); } }; BaseModalContainerComponent.prototype.setEnterAnimationClass = function () { if (this.animationDisabled()) { return; } // Make sure to set the `TransformOrigin` style before set the modelElement's class names this.setModalTransformOrigin(); var modalElement = this.modalElementRef.nativeElement; var backdropElement = this.overlayRef.backdropElement; modalElement.classList.add(ZOOM_CLASS_NAME_MAP.enter); modalElement.classList.add(ZOOM_CLASS_NAME_MAP.enterActive); if (backdropElement) { backdropElement.classList.add(FADE_CLASS_NAME_MAP.enter); backdropElement.classList.add(FADE_CLASS_NAME_MAP.enterActive); } }; BaseModalContainerComponent.prototype.setExitAnimationClass = function () { var modalElement = this.modalElementRef.nativeElement; modalElement.classList.add(ZOOM_CLASS_NAME_MAP.leave); modalElement.classList.add(ZOOM_CLASS_NAME_MAP.leaveActive); this.setMaskExitAnimationClass(); }; BaseModalContainerComponent.prototype.setMaskExitAnimationClass = function (force) { if (force === void 0) { force = false; } var backdropElement = this.overlayRef.backdropElement; if (backdropElement) { if (this.animationDisabled() || force) { // https://github.com/angular/components/issues/18645 backdropElement.classList.remove(MODAL_MASK_CLASS_NAME); return; } backdropElement.classList.add(FADE_CLASS_NAME_MAP.leave); backdropElement.classList.add(FADE_CLASS_NAME_MAP.leaveActive); } }; BaseModalContainerComponent.prototype.cleanAnimationClass = function () { if (this.animationDisabled()) { return; } var backdropElement = this.overlayRef.backdropElement; var modalElement = this.modalElementRef.nativeElement; if (backdropElement) { backdropElement.classList.remove(FADE_CLASS_NAME_MAP.enter); backdropElement.classList.remove(FADE_CLASS_NAME_MAP.enterActive); } modalElement.classList.remove(ZOOM_CLASS_NAME_MAP.enter); modalElement.classList.remove(ZOOM_CLASS_NAME_MAP.enterActive); modalElement.classList.remove(ZOOM_CLASS_NAME_MAP.leave); modalElement.classList.remove(ZOOM_CLASS_NAME_MAP.leaveActive); }; BaseModalContainerComponent.prototype.setZIndexForBackdrop = function () { var backdropElement = this.overlayRef.backdropElement; if (backdropElement) { if (util.isNotNil(this.config.nzZIndex)) { this.render.setStyle(backdropElement, 'z-index', this.config.nzZIndex); } } }; BaseModalContainerComponent.prototype.bindBackdropStyle = function () { var _this = this; var backdropElement = this.overlayRef.backdropElement; if (backdropElement) { if (this.oldMaskStyle) { var styles = this.oldMaskStyle; Object.keys(styles).forEach(function (key) { _this.render.removeStyle(backdropElement, key); }); this.oldMaskStyle = null; } this.setZIndexForBackdrop(); if (typeof this.config.nzMaskStyle === 'object' && Object.keys(this.config.nzMaskStyle).length) { var styles_1 = Object.assign({}, this.config.nzMaskStyle); Object.keys(styles_1).forEach(function (key) { _this.render.setStyle(backdropElement, key, styles_1[key]); }); this.oldMaskStyle = styles_1; } } }; BaseModalContainerComponent.prototype.updateMaskClassname = function () { var backdropElement = this.overlayRef.backdropElement; if (backdropElement) { if (this.showMask) { backdropElement.classList.add(MODAL_MASK_CLASS_NAME); } else { backdropElement.classList.remove(MODAL_MASK_CLASS_NAME); } } }; BaseModalContainerComponent.prototype.onAnimationDone = function (event) { if (event.toState === 'enter') { this.trapFocus(); } else if (event.toState === 'exit') { this.restoreFocus(); } this.cleanAnimationClass(); this.animationStateChanged.emit(event); }; BaseModalContainerComponent.prototype.onAnimationStart = function (event) { if (event.toState === 'enter') { this.setEnterAnimationClass(); this.bindBackdropStyle(); } else if (event.toState === 'exit') { this.setExitAnimationClass(); } this.animationStateChanged.emit(event); }; BaseModalContainerComponent.prototype.startExitAnimation = function () { this.state = 'exit'; this.cdr.markForCheck(); }; BaseModalContainerComponent.prototype.ngOnDestroy = function () { this.setMaskExitAnimationClass(true); this.destroy$.next(); this.destroy$.complete(); }; return BaseModalContainerComponent; }(portal.BasePortalOutlet)); BaseModalContainerComponent.decorators = [ { type: core.Directive } ]; BaseModalContainerComponent.ctorParameters = function () { return [ { type: core.ElementRef }, { type: a11y.FocusTrapFactory }, { type: core.ChangeDetectorRef }, { type: core.Renderer2 }, { type: overlay.OverlayRef }, { type: config.NzConfigService }, { type: ModalOptions }, { type: undefined }, { type: String } ]; }; var NzModalConfirmContainerComponent = /** @class */ (function (_super) { __extends(NzModalConfirmContainerComponent, _super); function NzModalConfirmContainerComponent(i18n, elementRef, focusTrapFactory, cdr, render, overlayRef, nzConfigService, config, document, animationType) { var _this = _super.call(this, elementRef, focusTrapFactory, cdr, render, overlayRef, nzConfigService, config, document, animationType) || this; _this.i18n = i18n; _this.config = config; _this.cancelTriggered = new core.EventEmitter(); _this.okTriggered = new core.EventEmitter(); _this.i18n.localeChange.pipe(operators.takeUntil(_this.destroy$)).subscribe(function () { _this.locale = _this.i18n.getLocaleData('Modal'); }); return _this; } NzModalConfirmContainerComponent.prototype.onCancel = function () { this.cancelTriggered.emit(); }; NzModalConfirmContainerComponent.prototype.onOk = function () { this.okTriggered.emit(); }; return NzModalConfirmContainerComponent; }(BaseModalContainerComponent)); NzModalConfirmContainerComponent.decorators = [ { type: core.Component, args: [{ selector: 'nz-modal-confirm-container', exportAs: 'nzModalConfirmContainer', template: "\n <div\n #modalElement\n role=\"document\"\n class=\"ant-modal\"\n (mousedown)=\"onMousedown()\"\n [ngClass]=\"config.nzClassName!\"\n [ngStyle]=\"config.nzStyle!\"\n [style.width]=\"config?.nzWidth! | nzToCssUnit\"\n >\n <div class=\"ant-modal-content\">\n <button *ngIf=\"config.nzClosable\" nz-modal-close (click)=\"onCloseClick()\"></button>\n <div class=\"ant-modal-body\" [ngStyle]=\"config.nzBodyStyle!\">\n <div class=\"ant-modal-confirm-body-wrapper\">\n <div class=\"ant-modal-confirm-body\">\n <i nz-icon [nzType]=\"config.nzIconType!\"></i>\n <span class=\"ant-modal-confirm-title\">\n <ng-container *nzStringTemplateOutlet=\"config.nzTitle\">\n <span [innerHTML]=\"config.nzTitle\"></span>\n </ng-container>\n </span>\n <div class=\"ant-modal-confirm-content\">\n <ng-template cdkPortalOutlet></ng-template>\n <div *ngIf=\"isStringContent\" [innerHTML]=\"config.nzContent\"></div>\n </div>\n </div>\n <div class=\"ant-modal-confirm-btns\">\n <button\n *ngIf=\"config.nzCancelText !== null\"\n [attr.cdkFocusInitial]=\"config.nzAutofocus === 'cancel' || null\"\n nz-button\n (click)=\"onCancel()\"\n [nzLoading]=\"!!config.nzCancelLoading\"\n [disabled]=\"config.nzCancelDisabled\"\n >\n {{ config.nzCancelText || locale.cancelText }}\n </button>\n <button\n *ngIf=\"config.nzOkText !== null\"\n [attr.cdkFocusInitial]=\"config.nzAutofocus === 'ok' || null\"\n nz-button\n [nzType]=\"config.nzOkType!\"\n (click)=\"onOk()\"\n [nzLoading]=\"!!config.nzOkLoading\"\n [disabled]=\"config.nzOkDisabled\"\n [nzDanger]=\"config.nzOkDanger\"\n >\n {{ config.nzOkText || locale.okText }}\n </button>\n </div>\n </div>\n </div>\n </div>\n </div>\n ", animations: [nzModalAnimations.modalContainer], // Using OnPush for modal caused footer can not to detect changes. we can fix it when 8.x. changeDetection: core.ChangeDetectionStrategy.Default, host: { tabindex: '-1', role: 'dialog', '[class]': 'config.nzWrapClassName ? "ant-modal-wrap " + config.nzWrapClassName : "ant-modal-wrap"', '[class.ant-modal-wrap-rtl]': "dir === 'rtl'", '[class.ant-modal-centered]': 'config.nzCentered', '[style.zIndex]': 'config.nzZIndex', '[@.disabled]': 'config.nzNoAnimation', '[@modalContainer]': 'state', '(@modalContainer.start)': 'onAnimationStart($event)', '(@modalContainer.done)': 'onAnimationDone($event)', '(click)': 'onContainerClick($event)', '(mouseup)': 'onMouseup()' } },] } ]; NzModalConfirmContainerComponent.ctorParameters = function () { return [ { type: i18n.NzI18nService }, { type: core.ElementRef }, { type: a11y.FocusTrapFactory }, { type: core.ChangeDetectorRef }, { type: core.Renderer2 }, { type: overlay.OverlayRef }, { type: config.NzConfigService }, { type: ModalOptions }, { type: undefined, decorators: [{ type: core.Optional }, { type: core.Inject, args: [common.DOCUMENT,] }] }, { type: String, decorators: [{ type: core.Optional }, { type: core.Inject, args: [animations$1.ANIMATION_MODULE_TYPE,] }] } ]; }; NzModalConfirmContainerComponent.propDecorators = { portalOutlet: [{ type: core.ViewChild, args: [portal.CdkPortalOutlet, { static: true },] }], modalElementRef: [{ type: core.ViewChild, args: ['modalElement', { static: true },] }], cancelTriggered: [{ type: core.Output }], okTriggered: [{ type: core.Output }] }; var NzModalContainerComponent = /** @class */ (function (_super) { __extends(NzModalContainerComponent, _super); function NzModalContainerComponent(elementRef, focusTrapFactory, cdr, render, overlayRef, nzConfigService, config, document, animationType) { var _this = _super.call(this, elementRef, focusTrapFactory, cdr, render, overlayRef, nzConfigService, config, document, animationType) || this; _this.config = config; return _this; } return NzModalContainerComponent; }(BaseModalContainerComponent)); NzModalContainerComponent.decorators = [ { type: core.Component, args: [{ selector: 'nz-modal-container', exportAs: 'nzModalContainer', template: "\n <div\n #modalElement\n role=\"document\"\n class=\"ant-modal\"\n (mousedown)=\"onMousedown()\"\n [ngClass]=\"config.nzClassName!\"\n [ngStyle]=\"config.nzStyle!\"\n [style.width]=\"config?.nzWidth! | nzToCssUnit\"\n >\n <div class=\"ant-modal-content\">\n <button *ngIf=\"config.nzClosable\" nz-modal-close (click)=\"onCloseClick()\"></button>\n <div *ngIf=\"config.nzTitle\" nz-modal-title></div>\n <div class=\"ant-modal-body\" [ngStyle]=\"config.nzBodyStyle!\">\n <ng-template cdkPortalOutlet></ng-template>\n <div *ngIf=\"isStringContent\" [innerHTML]=\"config.nzContent\"></div>\n </div>\n <div\n *ngIf=\"config.nzFooter !== null\"\n nz-modal-footer\n [modalRef]=\"modalRef\"\n (cancelTriggered)=\"onCloseClick()\"\n (okTriggered)=\"onOkClick()\"\n ></div>\n </div>\n </div>\n ", animations: [nzModalAnimations.modalContainer], // Using OnPush for modal caused footer can not to detect changes. we can fix it when 8.x. changeDetection: core.ChangeDetectionStrategy.Default, host: { tabindex: '-1', role: 'dialog', '[class]': 'config.nzWrapClassName ? "ant-modal-wrap " + config.nzWrapClassName : "ant-modal-wrap"', '[class.ant-modal-wrap-rtl]': "dir === 'rtl'", '[class.ant-modal-centered]': 'config.nzCentered', '[style.zIndex]': 'config.nzZIndex', '[@.disabled]': 'config.nzNoAnimation', '[@modalContainer]': 'state', '(@modalContainer.start)': 'onAnimationStart($event)', '(@modalContainer.done)': 'onAnimationDone($event)', '(click)': 'onContainerClick($event)', '(mouseup)': 'onMouseup()' } },] } ]; NzModalContainerComponent.ctorParameters = function () { return [ { type: core.ElementRef }, { type: a11y.FocusTrapFactory }, { type: core.ChangeDetectorRef }, { type: core.Renderer2 }, { type: overlay.OverlayRef }, { type: config.NzConfigService }, { type: ModalOptions }, { type: undefined, decorators: [{ type: core.Optional }, { type: core.Inject, args: [common.DOCUMENT,] }] }, { type: String, decorators: [{ type: core.Optional }, { type: core.Inject, args: [animations$1.ANIMATION_MODULE_TYPE,] }] } ]; }; NzModalContainerComponent.propDecorators = { portalOutlet: [{ type: core.ViewChild, args: [portal.CdkPortalOutlet, { static: true },] }], modalElementRef: [{ type: core.ViewChild, args: ['modalElement', { static: true },] }] }; var NzModalRef = /** @class */ (function () { function NzModalRef(overlayRef, config, containerInstance) { var _this = this; this.overlayRef = overlayRef; this.config = config; this.containerInstance = containerInstance; this.componentInstance = null; this.state = 0 /* OPEN */; this.afterClose = new rxjs.Subject(); this.afterOpen = new rxjs.Subject(); containerInstance.animationStateChanged .pipe(operators.filter(function (event) { return event.phaseName === 'done' && event.toState === 'enter'; }), operators.take(1)) .subscribe(function () { _this.afterOpen.next(); _this.afterOpen.complete(); if (config.nzAfterOpen instanceof core.EventEmitter) { config.nzAfterOpen.emit(); } }); containerInstance.animationStateChanged .pipe(operators.filter(function (event) { return event.phaseName === 'done' && event.toState === 'exit'; }), operators.take(1)) .subscribe(function () { clearTimeout(_this.closeTimeout); _this._finishDialogClose(); }); containerInstance.containerClick.pipe(operators.take(1)).subscribe(function () { var cancelable = !_this.config.nzCancelLoading && !_this.config.nzOkLoading; if (cancelable) { _this.trigger("cancel" /* CANCEL */); } }); overlayRef .keydownEvents() .pipe(operators.filter(function (event) { return (_this.config.nzKeyboard && !_this.config.nzCancelLoading && !_this.config.nzOkLoading && event.keyCode === keycodes.ESCAPE && !keycodes.hasModifierKey(event)); })) .subscribe(function (event) { event.preventDefault(); _this.trigger("cancel" /* CANCEL */); }); containerInstance.cancelTriggered.subscribe(function () { return _this.trigger("cancel" /* CANCEL */); }); containerInstance.okTriggered.subscribe(function () { return _this.trigger("ok" /* OK */); }); overlayRef.detachments().subscribe(function () { _this.afterClose.next(_this.result); _this.afterClose.complete(); if (config.nzAfterClose instanceof core.EventEmitter) { config.nzAfterClose.emit(_this.result); } _this.componentInstance = null; _this.overlayRef.dispose(); }); } NzModalRef.prototype.getContentComponent = function () { return this.componentInstance; }; NzModalRef.prototype.getElement = function () { return this.containerInstance.getNativeElement(); }; NzModalRef.prototype.destroy = function (result) { this.close(result); }; NzModalRef.prototype.triggerOk = function () { return this.trigger("ok" /* OK */); }; NzModalRef.prototype.triggerCancel = function () { return this.trigger("cancel" /* CANCEL */); }; NzModalRef.prototype.close = function (result) { var _this = this; this.result = result; this.containerInstance.animationStateChanged .pipe(operators.filter(function (event) { return event.phaseName === 'start'; }), operators.take(1)) .subscribe(function (event) { _this.overlayRef.detachBackdrop(); _this.closeTimeout = setTimeout(function () { _this._finishDialogClose(); }, event.totalTime + 100); }); this.containerInstance.startExitAnimation(); this.state = 1 /* CLOSING */; }; NzModalRef.prototype.updateConfig = function (config) { Object.assign(this.config, config); this.containerInstance.bindBackdropStyle(); this.containerInstance.cdr.markForCheck(); }; NzModalRef.prototype.getState = function () { return this.state; }; NzModalRef.prototype.getConfig = function () { return this.config; }; NzModalRef.prototype.getBackdropElement = function () { return this.overlayRef.backdropElement; }; NzModalRef.prototype.trigger = function (action) { return __awaiter(this, void 0, void 0, function () { var trigger, loadingKey, loading, result, doClose; return __generator(this, function (_a) { switch (_a.label) { case 0: trigger = { ok: this.config.nzOnOk, cancel: this.config.nzOnCancel }[action]; loadingKey = { ok: 'nzOkLoading', cancel: 'nzCancelLoading' }[action]; loading = this.config[loadingKey];