| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545 |
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- import { animate, state, style, transition, trigger } from '@angular/animations';
- import { __assign, __extends } from 'tslib';
- import { Component, ElementRef, EventEmitter, Inject, Optional, ChangeDetectorRef, ViewChild, ViewEncapsulation, ChangeDetectionStrategy, Injectable, InjectionToken, Injector, SkipSelf, TemplateRef, Directive, Input, NgModule } from '@angular/core';
- import { DOCUMENT, Location, CommonModule } from '@angular/common';
- import { BasePortalOutlet, CdkPortalOutlet, ComponentPortal, PortalInjector, TemplatePortal, PortalModule } from '@angular/cdk/portal';
- import { FocusTrapFactory } from '@angular/cdk/a11y';
- import { ESCAPE, hasModifierKey } from '@angular/cdk/keycodes';
- import { Subject, defer, of } from 'rxjs';
- import { filter, take, startWith } from 'rxjs/operators';
- import { Directionality } from '@angular/cdk/bidi';
- import { Overlay, OverlayConfig, OverlayContainer, OverlayModule } from '@angular/cdk/overlay';
- import { MatCommonModule } from '@angular/material/core';
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Configuration for opening a modal dialog with the MatDialog service.
- * @template D
- */
- var /**
- * Configuration for opening a modal dialog with the MatDialog service.
- * @template D
- */
- MatDialogConfig = /** @class */ (function () {
- function MatDialogConfig() {
- /**
- * The ARIA role of the dialog element.
- */
- this.role = 'dialog';
- /**
- * Custom class for the overlay pane.
- */
- this.panelClass = '';
- /**
- * Whether the dialog has a backdrop.
- */
- this.hasBackdrop = true;
- /**
- * Custom class for the backdrop,
- */
- this.backdropClass = '';
- /**
- * Whether the user can use escape or clicking on the backdrop to close the modal.
- */
- this.disableClose = false;
- /**
- * Width of the dialog.
- */
- this.width = '';
- /**
- * Height of the dialog.
- */
- this.height = '';
- /**
- * Max-width of the dialog. If a number is provided, pixel units are assumed. Defaults to 80vw
- */
- this.maxWidth = '80vw';
- /**
- * Data being injected into the child component.
- */
- this.data = null;
- /**
- * ID of the element that describes the dialog.
- */
- this.ariaDescribedBy = null;
- /**
- * ID of the element that labels the dialog.
- */
- this.ariaLabelledBy = null;
- /**
- * Aria label to assign to the dialog element
- */
- this.ariaLabel = null;
- /**
- * Whether the dialog should focus the first focusable element on open.
- */
- this.autoFocus = true;
- /**
- * Whether the dialog should restore focus to the
- * previously-focused element, after it's closed.
- */
- this.restoreFocus = true;
- /**
- * Whether the dialog should close when the user goes backwards/forwards in history.
- * Note that this usually doesn't include clicking on links (unless the user is using
- * the `HashLocationStrategy`).
- */
- this.closeOnNavigation = true;
- // TODO(jelbourn): add configuration for lifecycle hooks, ARIA labelling.
- }
- return MatDialogConfig;
- }());
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /** @type {?} */
- var animationBody = [
- // Note: The `enter` animation transitions to `transform: none`, because for some reason
- // specifying the transform explicitly, causes IE both to blur the dialog content and
- // decimate the animation performance. Leaving it as `none` solves both issues.
- state('void, exit', style({ opacity: 0, transform: 'scale(0.7)' })),
- state('enter', style({ transform: 'none' })),
- transition('* => enter', animate('150ms cubic-bezier(0, 0, 0.2, 1)', style({ transform: 'none', opacity: 1 }))),
- transition('* => void, * => exit', animate('75ms cubic-bezier(0.4, 0.0, 0.2, 1)', style({ opacity: 0 }))),
- ];
- /**
- * Animations used by MatDialog.
- * \@docs-private
- * @type {?}
- */
- var matDialogAnimations = {
- /**
- * Animation that is applied on the dialog container by defalt.
- */
- dialogContainer: trigger('dialogContainer', animationBody),
- /**
- * @deprecated \@breaking-change 8.0.0 Use `matDialogAnimations.dialogContainer` instead.
- */
- slideDialog: trigger('slideDialog', animationBody)
- };
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Throws an exception for the case when a ComponentPortal is
- * attached to a DomPortalOutlet without an origin.
- * \@docs-private
- * @return {?}
- */
- function throwMatDialogContentAlreadyAttachedError() {
- throw Error('Attempting to attach dialog content after content is already attached');
- }
- /**
- * Internal component that wraps user-provided dialog content.
- * Animation is based on https://material.io/guidelines/motion/choreography.html.
- * \@docs-private
- */
- var MatDialogContainer = /** @class */ (function (_super) {
- __extends(MatDialogContainer, _super);
- function MatDialogContainer(_elementRef, _focusTrapFactory, _changeDetectorRef, _document, _config) {
- var _this = _super.call(this) || this;
- _this._elementRef = _elementRef;
- _this._focusTrapFactory = _focusTrapFactory;
- _this._changeDetectorRef = _changeDetectorRef;
- _this._document = _document;
- _this._config = _config;
- /**
- * Element that was focused before the dialog was opened. Save this to restore upon close.
- */
- _this._elementFocusedBeforeDialogWasOpened = null;
- /**
- * State of the dialog animation.
- */
- _this._state = 'enter';
- /**
- * Emits when an animation state changes.
- */
- _this._animationStateChanged = new EventEmitter();
- _this._ariaLabelledBy = _config.ariaLabelledBy || null;
- return _this;
- }
- /**
- * Attach a ComponentPortal as content to this dialog container.
- * @param portal Portal to be attached as the dialog content.
- */
- /**
- * Attach a ComponentPortal as content to this dialog container.
- * @template T
- * @param {?} portal Portal to be attached as the dialog content.
- * @return {?}
- */
- MatDialogContainer.prototype.attachComponentPortal = /**
- * Attach a ComponentPortal as content to this dialog container.
- * @template T
- * @param {?} portal Portal to be attached as the dialog content.
- * @return {?}
- */
- function (portal) {
- if (this._portalOutlet.hasAttached()) {
- throwMatDialogContentAlreadyAttachedError();
- }
- this._savePreviouslyFocusedElement();
- return this._portalOutlet.attachComponentPortal(portal);
- };
- /**
- * Attach a TemplatePortal as content to this dialog container.
- * @param portal Portal to be attached as the dialog content.
- */
- /**
- * Attach a TemplatePortal as content to this dialog container.
- * @template C
- * @param {?} portal Portal to be attached as the dialog content.
- * @return {?}
- */
- MatDialogContainer.prototype.attachTemplatePortal = /**
- * Attach a TemplatePortal as content to this dialog container.
- * @template C
- * @param {?} portal Portal to be attached as the dialog content.
- * @return {?}
- */
- function (portal) {
- if (this._portalOutlet.hasAttached()) {
- throwMatDialogContentAlreadyAttachedError();
- }
- this._savePreviouslyFocusedElement();
- return this._portalOutlet.attachTemplatePortal(portal);
- };
- /** Moves the focus inside the focus trap. */
- /**
- * Moves the focus inside the focus trap.
- * @private
- * @return {?}
- */
- MatDialogContainer.prototype._trapFocus = /**
- * Moves the focus inside the focus trap.
- * @private
- * @return {?}
- */
- function () {
- /** @type {?} */
- var element = this._elementRef.nativeElement;
- if (!this._focusTrap) {
- this._focusTrap = this._focusTrapFactory.create(element);
- }
- // If we were to attempt to focus immediately, then the content of the dialog would not yet be
- // ready in instances where change detection has to run first. To deal with this, we simply
- // wait for the microtask queue to be empty.
- if (this._config.autoFocus) {
- this._focusTrap.focusInitialElementWhenReady();
- }
- else {
- /** @type {?} */
- var activeElement = this._document.activeElement;
- // Otherwise ensure that focus is on the dialog container. It's possible that a different
- // component tried to move focus while the open animation was running. See:
- // https://github.com/angular/components/issues/16215. Note that we only want to do this
- // if the focus isn't inside the dialog already, because it's possible that the consumer
- // turned off `autoFocus` in order to move focus themselves.
- if (activeElement !== element && !element.contains(activeElement)) {
- element.focus();
- }
- }
- };
- /** Restores focus to the element that was focused before the dialog opened. */
- /**
- * Restores focus to the element that was focused before the dialog opened.
- * @private
- * @return {?}
- */
- MatDialogContainer.prototype._restoreFocus = /**
- * Restores focus to the element that was focused before the dialog opened.
- * @private
- * @return {?}
- */
- function () {
- /** @type {?} */
- var toFocus = this._elementFocusedBeforeDialogWasOpened;
- // We need the extra check, because IE can set the `activeElement` to null in some cases.
- if (this._config.restoreFocus && toFocus && typeof toFocus.focus === 'function') {
- toFocus.focus();
- }
- if (this._focusTrap) {
- this._focusTrap.destroy();
- }
- };
- /** Saves a reference to the element that was focused before the dialog was opened. */
- /**
- * Saves a reference to the element that was focused before the dialog was opened.
- * @private
- * @return {?}
- */
- MatDialogContainer.prototype._savePreviouslyFocusedElement = /**
- * Saves a reference to the element that was focused before the dialog was opened.
- * @private
- * @return {?}
- */
- function () {
- var _this = this;
- if (this._document) {
- this._elementFocusedBeforeDialogWasOpened = (/** @type {?} */ (this._document.activeElement));
- // Note that there is no focus method when rendering on the server.
- if (this._elementRef.nativeElement.focus) {
- // Move focus onto the dialog immediately in order to prevent the user from accidentally
- // opening multiple dialogs at the same time. Needs to be async, because the element
- // may not be focusable immediately.
- Promise.resolve().then((/**
- * @return {?}
- */
- function () { return _this._elementRef.nativeElement.focus(); }));
- }
- }
- };
- /** Callback, invoked whenever an animation on the host completes. */
- /**
- * Callback, invoked whenever an animation on the host completes.
- * @param {?} event
- * @return {?}
- */
- MatDialogContainer.prototype._onAnimationDone = /**
- * Callback, invoked whenever an animation on the host completes.
- * @param {?} event
- * @return {?}
- */
- function (event) {
- if (event.toState === 'enter') {
- this._trapFocus();
- }
- else if (event.toState === 'exit') {
- this._restoreFocus();
- }
- this._animationStateChanged.emit(event);
- };
- /** Callback, invoked when an animation on the host starts. */
- /**
- * Callback, invoked when an animation on the host starts.
- * @param {?} event
- * @return {?}
- */
- MatDialogContainer.prototype._onAnimationStart = /**
- * Callback, invoked when an animation on the host starts.
- * @param {?} event
- * @return {?}
- */
- function (event) {
- this._animationStateChanged.emit(event);
- };
- /** Starts the dialog exit animation. */
- /**
- * Starts the dialog exit animation.
- * @return {?}
- */
- MatDialogContainer.prototype._startExitAnimation = /**
- * Starts the dialog exit animation.
- * @return {?}
- */
- function () {
- this._state = 'exit';
- // Mark the container for check so it can react if the
- // view container is using OnPush change detection.
- this._changeDetectorRef.markForCheck();
- };
- MatDialogContainer.decorators = [
- { type: Component, args: [{selector: 'mat-dialog-container',
- template: "<ng-template cdkPortalOutlet></ng-template>",
- styles: [".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}@media (-ms-high-contrast:active){.mat-dialog-container{outline:solid 1px}}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base{margin-left:0;margin-right:8px}"],
- encapsulation: ViewEncapsulation.None,
- // Using OnPush for dialogs caused some G3 sync issues. Disabled until we can track them down.
- // tslint:disable-next-line:validate-decorators
- changeDetection: ChangeDetectionStrategy.Default,
- animations: [matDialogAnimations.dialogContainer],
- host: {
- 'class': 'mat-dialog-container',
- 'tabindex': '-1',
- 'aria-modal': 'true',
- '[attr.id]': '_id',
- '[attr.role]': '_config.role',
- '[attr.aria-labelledby]': '_config.ariaLabel ? null : _ariaLabelledBy',
- '[attr.aria-label]': '_config.ariaLabel',
- '[attr.aria-describedby]': '_config.ariaDescribedBy || null',
- '[@dialogContainer]': '_state',
- '(@dialogContainer.start)': '_onAnimationStart($event)',
- '(@dialogContainer.done)': '_onAnimationDone($event)',
- },
- },] },
- ];
- /** @nocollapse */
- MatDialogContainer.ctorParameters = function () { return [
- { type: ElementRef },
- { type: FocusTrapFactory },
- { type: ChangeDetectorRef },
- { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [DOCUMENT,] }] },
- { type: MatDialogConfig }
- ]; };
- MatDialogContainer.propDecorators = {
- _portalOutlet: [{ type: ViewChild, args: [CdkPortalOutlet, { static: true },] }]
- };
- return MatDialogContainer;
- }(BasePortalOutlet));
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- // TODO(jelbourn): resizing
- // Counter for unique dialog ids.
- /** @type {?} */
- var uniqueId = 0;
- /**
- * Reference to a dialog opened via the MatDialog service.
- * @template T, R
- */
- var /**
- * Reference to a dialog opened via the MatDialog service.
- * @template T, R
- */
- MatDialogRef = /** @class */ (function () {
- function MatDialogRef(_overlayRef, _containerInstance,
- // @breaking-change 8.0.0 `_location` parameter to be removed.
- _location, id) {
- var _this = this;
- if (id === void 0) { id = "mat-dialog-" + uniqueId++; }
- this._overlayRef = _overlayRef;
- this._containerInstance = _containerInstance;
- this.id = id;
- /**
- * Whether the user is allowed to close the dialog.
- */
- this.disableClose = this._containerInstance._config.disableClose;
- /**
- * Subject for notifying the user that the dialog has finished opening.
- */
- this._afterOpened = new Subject();
- /**
- * Subject for notifying the user that the dialog has finished closing.
- */
- this._afterClosed = new Subject();
- /**
- * Subject for notifying the user that the dialog has started closing.
- */
- this._beforeClosed = new Subject();
- // Pass the id along to the container.
- _containerInstance._id = id;
- // Emit when opening animation completes
- _containerInstance._animationStateChanged.pipe(filter((/**
- * @param {?} event
- * @return {?}
- */
- function (event) { return event.phaseName === 'done' && event.toState === 'enter'; })), take(1))
- .subscribe((/**
- * @return {?}
- */
- function () {
- _this._afterOpened.next();
- _this._afterOpened.complete();
- }));
- // Dispose overlay when closing animation is complete
- _containerInstance._animationStateChanged.pipe(filter((/**
- * @param {?} event
- * @return {?}
- */
- function (event) { return event.phaseName === 'done' && event.toState === 'exit'; })), take(1)).subscribe((/**
- * @return {?}
- */
- function () {
- clearTimeout(_this._closeFallbackTimeout);
- _this._overlayRef.dispose();
- }));
- _overlayRef.detachments().subscribe((/**
- * @return {?}
- */
- function () {
- _this._beforeClosed.next(_this._result);
- _this._beforeClosed.complete();
- _this._afterClosed.next(_this._result);
- _this._afterClosed.complete();
- _this.componentInstance = (/** @type {?} */ (null));
- _this._overlayRef.dispose();
- }));
- _overlayRef.keydownEvents()
- .pipe(filter((/**
- * @param {?} event
- * @return {?}
- */
- function (event) {
- return event.keyCode === ESCAPE && !_this.disableClose && !hasModifierKey(event);
- })))
- .subscribe((/**
- * @param {?} event
- * @return {?}
- */
- function (event) {
- event.preventDefault();
- _this.close();
- }));
- }
- /**
- * Close the dialog.
- * @param dialogResult Optional result to return to the dialog opener.
- */
- /**
- * Close the dialog.
- * @param {?=} dialogResult Optional result to return to the dialog opener.
- * @return {?}
- */
- MatDialogRef.prototype.close = /**
- * Close the dialog.
- * @param {?=} dialogResult Optional result to return to the dialog opener.
- * @return {?}
- */
- function (dialogResult) {
- var _this = this;
- this._result = dialogResult;
- // Transition the backdrop in parallel to the dialog.
- this._containerInstance._animationStateChanged.pipe(filter((/**
- * @param {?} event
- * @return {?}
- */
- function (event) { return event.phaseName === 'start'; })), take(1))
- .subscribe((/**
- * @param {?} event
- * @return {?}
- */
- function (event) {
- _this._beforeClosed.next(dialogResult);
- _this._beforeClosed.complete();
- _this._overlayRef.detachBackdrop();
- // The logic that disposes of the overlay depends on the exit animation completing, however
- // it isn't guaranteed if the parent view is destroyed while it's running. Add a fallback
- // timeout which will clean everything up if the animation hasn't fired within the specified
- // amount of time plus 100ms. We don't need to run this outside the NgZone, because for the
- // vast majority of cases the timeout will have been cleared before it has the chance to fire.
- _this._closeFallbackTimeout = setTimeout((/**
- * @return {?}
- */
- function () {
- _this._overlayRef.dispose();
- }), event.totalTime + 100);
- }));
- this._containerInstance._startExitAnimation();
- };
- /**
- * Gets an observable that is notified when the dialog is finished opening.
- */
- /**
- * Gets an observable that is notified when the dialog is finished opening.
- * @return {?}
- */
- MatDialogRef.prototype.afterOpened = /**
- * Gets an observable that is notified when the dialog is finished opening.
- * @return {?}
- */
- function () {
- return this._afterOpened.asObservable();
- };
- /**
- * Gets an observable that is notified when the dialog is finished closing.
- */
- /**
- * Gets an observable that is notified when the dialog is finished closing.
- * @return {?}
- */
- MatDialogRef.prototype.afterClosed = /**
- * Gets an observable that is notified when the dialog is finished closing.
- * @return {?}
- */
- function () {
- return this._afterClosed.asObservable();
- };
- /**
- * Gets an observable that is notified when the dialog has started closing.
- */
- /**
- * Gets an observable that is notified when the dialog has started closing.
- * @return {?}
- */
- MatDialogRef.prototype.beforeClosed = /**
- * Gets an observable that is notified when the dialog has started closing.
- * @return {?}
- */
- function () {
- return this._beforeClosed.asObservable();
- };
- /**
- * Gets an observable that emits when the overlay's backdrop has been clicked.
- */
- /**
- * Gets an observable that emits when the overlay's backdrop has been clicked.
- * @return {?}
- */
- MatDialogRef.prototype.backdropClick = /**
- * Gets an observable that emits when the overlay's backdrop has been clicked.
- * @return {?}
- */
- function () {
- return this._overlayRef.backdropClick();
- };
- /**
- * Gets an observable that emits when keydown events are targeted on the overlay.
- */
- /**
- * Gets an observable that emits when keydown events are targeted on the overlay.
- * @return {?}
- */
- MatDialogRef.prototype.keydownEvents = /**
- * Gets an observable that emits when keydown events are targeted on the overlay.
- * @return {?}
- */
- function () {
- return this._overlayRef.keydownEvents();
- };
- /**
- * Updates the dialog's position.
- * @param position New dialog position.
- */
- /**
- * Updates the dialog's position.
- * @template THIS
- * @this {THIS}
- * @param {?=} position New dialog position.
- * @return {THIS}
- */
- MatDialogRef.prototype.updatePosition = /**
- * Updates the dialog's position.
- * @template THIS
- * @this {THIS}
- * @param {?=} position New dialog position.
- * @return {THIS}
- */
- function (position) {
- /** @type {?} */
- var strategy = (/** @type {?} */ (this))._getPositionStrategy();
- if (position && (position.left || position.right)) {
- position.left ? strategy.left(position.left) : strategy.right(position.right);
- }
- else {
- strategy.centerHorizontally();
- }
- if (position && (position.top || position.bottom)) {
- position.top ? strategy.top(position.top) : strategy.bottom(position.bottom);
- }
- else {
- strategy.centerVertically();
- }
- (/** @type {?} */ (this))._overlayRef.updatePosition();
- return (/** @type {?} */ (this));
- };
- /**
- * Updates the dialog's width and height.
- * @param width New width of the dialog.
- * @param height New height of the dialog.
- */
- /**
- * Updates the dialog's width and height.
- * @template THIS
- * @this {THIS}
- * @param {?=} width New width of the dialog.
- * @param {?=} height New height of the dialog.
- * @return {THIS}
- */
- MatDialogRef.prototype.updateSize = /**
- * Updates the dialog's width and height.
- * @template THIS
- * @this {THIS}
- * @param {?=} width New width of the dialog.
- * @param {?=} height New height of the dialog.
- * @return {THIS}
- */
- function (width, height) {
- if (width === void 0) { width = ''; }
- if (height === void 0) { height = ''; }
- (/** @type {?} */ (this))._getPositionStrategy().width(width).height(height);
- (/** @type {?} */ (this))._overlayRef.updatePosition();
- return (/** @type {?} */ (this));
- };
- /** Add a CSS class or an array of classes to the overlay pane. */
- /**
- * Add a CSS class or an array of classes to the overlay pane.
- * @template THIS
- * @this {THIS}
- * @param {?} classes
- * @return {THIS}
- */
- MatDialogRef.prototype.addPanelClass = /**
- * Add a CSS class or an array of classes to the overlay pane.
- * @template THIS
- * @this {THIS}
- * @param {?} classes
- * @return {THIS}
- */
- function (classes) {
- (/** @type {?} */ (this))._overlayRef.addPanelClass(classes);
- return (/** @type {?} */ (this));
- };
- /** Remove a CSS class or an array of classes from the overlay pane. */
- /**
- * Remove a CSS class or an array of classes from the overlay pane.
- * @template THIS
- * @this {THIS}
- * @param {?} classes
- * @return {THIS}
- */
- MatDialogRef.prototype.removePanelClass = /**
- * Remove a CSS class or an array of classes from the overlay pane.
- * @template THIS
- * @this {THIS}
- * @param {?} classes
- * @return {THIS}
- */
- function (classes) {
- (/** @type {?} */ (this))._overlayRef.removePanelClass(classes);
- return (/** @type {?} */ (this));
- };
- /**
- * Gets an observable that is notified when the dialog is finished opening.
- * @deprecated Use `afterOpened` instead.
- * @breaking-change 8.0.0
- */
- /**
- * Gets an observable that is notified when the dialog is finished opening.
- * @deprecated Use `afterOpened` instead.
- * \@breaking-change 8.0.0
- * @return {?}
- */
- MatDialogRef.prototype.afterOpen = /**
- * Gets an observable that is notified when the dialog is finished opening.
- * @deprecated Use `afterOpened` instead.
- * \@breaking-change 8.0.0
- * @return {?}
- */
- function () {
- return this.afterOpened();
- };
- /**
- * Gets an observable that is notified when the dialog has started closing.
- * @deprecated Use `beforeClosed` instead.
- * @breaking-change 8.0.0
- */
- /**
- * Gets an observable that is notified when the dialog has started closing.
- * @deprecated Use `beforeClosed` instead.
- * \@breaking-change 8.0.0
- * @return {?}
- */
- MatDialogRef.prototype.beforeClose = /**
- * Gets an observable that is notified when the dialog has started closing.
- * @deprecated Use `beforeClosed` instead.
- * \@breaking-change 8.0.0
- * @return {?}
- */
- function () {
- return this.beforeClosed();
- };
- /** Fetches the position strategy object from the overlay ref. */
- /**
- * Fetches the position strategy object from the overlay ref.
- * @private
- * @return {?}
- */
- MatDialogRef.prototype._getPositionStrategy = /**
- * Fetches the position strategy object from the overlay ref.
- * @private
- * @return {?}
- */
- function () {
- return (/** @type {?} */ (this._overlayRef.getConfig().positionStrategy));
- };
- return MatDialogRef;
- }());
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Injection token that can be used to access the data that was passed in to a dialog.
- * @type {?}
- */
- var MAT_DIALOG_DATA = new InjectionToken('MatDialogData');
- /**
- * Injection token that can be used to specify default dialog options.
- * @type {?}
- */
- var MAT_DIALOG_DEFAULT_OPTIONS = new InjectionToken('mat-dialog-default-options');
- /**
- * Injection token that determines the scroll handling while the dialog is open.
- * @type {?}
- */
- var MAT_DIALOG_SCROLL_STRATEGY = new InjectionToken('mat-dialog-scroll-strategy');
- /**
- * \@docs-private
- * @param {?} overlay
- * @return {?}
- */
- function MAT_DIALOG_SCROLL_STRATEGY_FACTORY(overlay) {
- return (/**
- * @return {?}
- */
- function () { return overlay.scrollStrategies.block(); });
- }
- /**
- * \@docs-private
- * @param {?} overlay
- * @return {?}
- */
- function MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay) {
- return (/**
- * @return {?}
- */
- function () { return overlay.scrollStrategies.block(); });
- }
- /**
- * \@docs-private
- * @type {?}
- */
- var MAT_DIALOG_SCROLL_STRATEGY_PROVIDER = {
- provide: MAT_DIALOG_SCROLL_STRATEGY,
- deps: [Overlay],
- useFactory: MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY,
- };
- /**
- * Service to open Material Design modal dialogs.
- */
- var MatDialog = /** @class */ (function () {
- function MatDialog(_overlay, _injector, _location, _defaultOptions, scrollStrategy, _parentDialog, _overlayContainer) {
- var _this = this;
- this._overlay = _overlay;
- this._injector = _injector;
- this._location = _location;
- this._defaultOptions = _defaultOptions;
- this._parentDialog = _parentDialog;
- this._overlayContainer = _overlayContainer;
- this._openDialogsAtThisLevel = [];
- this._afterAllClosedAtThisLevel = new Subject();
- this._afterOpenedAtThisLevel = new Subject();
- this._ariaHiddenElements = new Map();
- // TODO (jelbourn): tighten the typing right-hand side of this expression.
- /**
- * Stream that emits when all open dialog have finished closing.
- * Will emit on subscribe if there are no open dialogs to begin with.
- */
- this.afterAllClosed = (/** @type {?} */ (defer((/**
- * @return {?}
- */
- function () { return _this.openDialogs.length ?
- _this._afterAllClosed :
- _this._afterAllClosed.pipe(startWith(undefined)); }))));
- this._scrollStrategy = scrollStrategy;
- }
- Object.defineProperty(MatDialog.prototype, "openDialogs", {
- /** Keeps track of the currently-open dialogs. */
- get: /**
- * Keeps track of the currently-open dialogs.
- * @return {?}
- */
- function () {
- return this._parentDialog ? this._parentDialog.openDialogs : this._openDialogsAtThisLevel;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(MatDialog.prototype, "afterOpened", {
- /** Stream that emits when a dialog has been opened. */
- get: /**
- * Stream that emits when a dialog has been opened.
- * @return {?}
- */
- function () {
- return this._parentDialog ? this._parentDialog.afterOpened : this._afterOpenedAtThisLevel;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(MatDialog.prototype, "afterOpen", {
- /**
- * Stream that emits when a dialog has been opened.
- * @deprecated Use `afterOpened` instead.
- * @breaking-change 8.0.0
- */
- get: /**
- * Stream that emits when a dialog has been opened.
- * @deprecated Use `afterOpened` instead.
- * \@breaking-change 8.0.0
- * @return {?}
- */
- function () {
- return this.afterOpened;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(MatDialog.prototype, "_afterAllClosed", {
- get: /**
- * @return {?}
- */
- function () {
- /** @type {?} */
- var parent = this._parentDialog;
- return parent ? parent._afterAllClosed : this._afterAllClosedAtThisLevel;
- },
- enumerable: true,
- configurable: true
- });
- /**
- * Opens a modal dialog containing the given component.
- * @param componentOrTemplateRef Type of the component to load into the dialog,
- * or a TemplateRef to instantiate as the dialog content.
- * @param config Extra configuration options.
- * @returns Reference to the newly-opened dialog.
- */
- /**
- * Opens a modal dialog containing the given component.
- * @template T, D, R
- * @param {?} componentOrTemplateRef Type of the component to load into the dialog,
- * or a TemplateRef to instantiate as the dialog content.
- * @param {?=} config Extra configuration options.
- * @return {?} Reference to the newly-opened dialog.
- */
- MatDialog.prototype.open = /**
- * Opens a modal dialog containing the given component.
- * @template T, D, R
- * @param {?} componentOrTemplateRef Type of the component to load into the dialog,
- * or a TemplateRef to instantiate as the dialog content.
- * @param {?=} config Extra configuration options.
- * @return {?} Reference to the newly-opened dialog.
- */
- function (componentOrTemplateRef, config) {
- var _this = this;
- config = _applyConfigDefaults(config, this._defaultOptions || new MatDialogConfig());
- if (config.id && this.getDialogById(config.id)) {
- throw Error("Dialog with id \"" + config.id + "\" exists already. The dialog id must be unique.");
- }
- /** @type {?} */
- var overlayRef = this._createOverlay(config);
- /** @type {?} */
- var dialogContainer = this._attachDialogContainer(overlayRef, config);
- /** @type {?} */
- var dialogRef = this._attachDialogContent(componentOrTemplateRef, dialogContainer, overlayRef, config);
- // If this is the first dialog that we're opening, hide all the non-overlay content.
- if (!this.openDialogs.length) {
- this._hideNonDialogContentFromAssistiveTechnology();
- }
- this.openDialogs.push(dialogRef);
- dialogRef.afterClosed().subscribe((/**
- * @return {?}
- */
- function () { return _this._removeOpenDialog(dialogRef); }));
- this.afterOpened.next(dialogRef);
- return dialogRef;
- };
- /**
- * Closes all of the currently-open dialogs.
- */
- /**
- * Closes all of the currently-open dialogs.
- * @return {?}
- */
- MatDialog.prototype.closeAll = /**
- * Closes all of the currently-open dialogs.
- * @return {?}
- */
- function () {
- this._closeDialogs(this.openDialogs);
- };
- /**
- * Finds an open dialog by its id.
- * @param id ID to use when looking up the dialog.
- */
- /**
- * Finds an open dialog by its id.
- * @param {?} id ID to use when looking up the dialog.
- * @return {?}
- */
- MatDialog.prototype.getDialogById = /**
- * Finds an open dialog by its id.
- * @param {?} id ID to use when looking up the dialog.
- * @return {?}
- */
- function (id) {
- return this.openDialogs.find((/**
- * @param {?} dialog
- * @return {?}
- */
- function (dialog) { return dialog.id === id; }));
- };
- /**
- * @return {?}
- */
- MatDialog.prototype.ngOnDestroy = /**
- * @return {?}
- */
- function () {
- // Only close the dialogs at this level on destroy
- // since the parent service may still be active.
- this._closeDialogs(this._openDialogsAtThisLevel);
- this._afterAllClosedAtThisLevel.complete();
- this._afterOpenedAtThisLevel.complete();
- };
- /**
- * Creates the overlay into which the dialog will be loaded.
- * @param config The dialog configuration.
- * @returns A promise resolving to the OverlayRef for the created overlay.
- */
- /**
- * Creates the overlay into which the dialog will be loaded.
- * @private
- * @param {?} config The dialog configuration.
- * @return {?} A promise resolving to the OverlayRef for the created overlay.
- */
- MatDialog.prototype._createOverlay = /**
- * Creates the overlay into which the dialog will be loaded.
- * @private
- * @param {?} config The dialog configuration.
- * @return {?} A promise resolving to the OverlayRef for the created overlay.
- */
- function (config) {
- /** @type {?} */
- var overlayConfig = this._getOverlayConfig(config);
- return this._overlay.create(overlayConfig);
- };
- /**
- * Creates an overlay config from a dialog config.
- * @param dialogConfig The dialog configuration.
- * @returns The overlay configuration.
- */
- /**
- * Creates an overlay config from a dialog config.
- * @private
- * @param {?} dialogConfig The dialog configuration.
- * @return {?} The overlay configuration.
- */
- MatDialog.prototype._getOverlayConfig = /**
- * Creates an overlay config from a dialog config.
- * @private
- * @param {?} dialogConfig The dialog configuration.
- * @return {?} The overlay configuration.
- */
- function (dialogConfig) {
- /** @type {?} */
- var state$$1 = new OverlayConfig({
- positionStrategy: this._overlay.position().global(),
- scrollStrategy: dialogConfig.scrollStrategy || this._scrollStrategy(),
- panelClass: dialogConfig.panelClass,
- hasBackdrop: dialogConfig.hasBackdrop,
- direction: dialogConfig.direction,
- minWidth: dialogConfig.minWidth,
- minHeight: dialogConfig.minHeight,
- maxWidth: dialogConfig.maxWidth,
- maxHeight: dialogConfig.maxHeight,
- disposeOnNavigation: dialogConfig.closeOnNavigation
- });
- if (dialogConfig.backdropClass) {
- state$$1.backdropClass = dialogConfig.backdropClass;
- }
- return state$$1;
- };
- /**
- * Attaches an MatDialogContainer to a dialog's already-created overlay.
- * @param overlay Reference to the dialog's underlying overlay.
- * @param config The dialog configuration.
- * @returns A promise resolving to a ComponentRef for the attached container.
- */
- /**
- * Attaches an MatDialogContainer to a dialog's already-created overlay.
- * @private
- * @param {?} overlay Reference to the dialog's underlying overlay.
- * @param {?} config The dialog configuration.
- * @return {?} A promise resolving to a ComponentRef for the attached container.
- */
- MatDialog.prototype._attachDialogContainer = /**
- * Attaches an MatDialogContainer to a dialog's already-created overlay.
- * @private
- * @param {?} overlay Reference to the dialog's underlying overlay.
- * @param {?} config The dialog configuration.
- * @return {?} A promise resolving to a ComponentRef for the attached container.
- */
- function (overlay, config) {
- /** @type {?} */
- var userInjector = config && config.viewContainerRef && config.viewContainerRef.injector;
- /** @type {?} */
- var injector = new PortalInjector(userInjector || this._injector, new WeakMap([
- [MatDialogConfig, config]
- ]));
- /** @type {?} */
- var containerPortal = new ComponentPortal(MatDialogContainer, config.viewContainerRef, injector);
- /** @type {?} */
- var containerRef = overlay.attach(containerPortal);
- return containerRef.instance;
- };
- /**
- * Attaches the user-provided component to the already-created MatDialogContainer.
- * @param componentOrTemplateRef The type of component being loaded into the dialog,
- * or a TemplateRef to instantiate as the content.
- * @param dialogContainer Reference to the wrapping MatDialogContainer.
- * @param overlayRef Reference to the overlay in which the dialog resides.
- * @param config The dialog configuration.
- * @returns A promise resolving to the MatDialogRef that should be returned to the user.
- */
- /**
- * Attaches the user-provided component to the already-created MatDialogContainer.
- * @private
- * @template T, R
- * @param {?} componentOrTemplateRef The type of component being loaded into the dialog,
- * or a TemplateRef to instantiate as the content.
- * @param {?} dialogContainer Reference to the wrapping MatDialogContainer.
- * @param {?} overlayRef Reference to the overlay in which the dialog resides.
- * @param {?} config The dialog configuration.
- * @return {?} A promise resolving to the MatDialogRef that should be returned to the user.
- */
- MatDialog.prototype._attachDialogContent = /**
- * Attaches the user-provided component to the already-created MatDialogContainer.
- * @private
- * @template T, R
- * @param {?} componentOrTemplateRef The type of component being loaded into the dialog,
- * or a TemplateRef to instantiate as the content.
- * @param {?} dialogContainer Reference to the wrapping MatDialogContainer.
- * @param {?} overlayRef Reference to the overlay in which the dialog resides.
- * @param {?} config The dialog configuration.
- * @return {?} A promise resolving to the MatDialogRef that should be returned to the user.
- */
- function (componentOrTemplateRef, dialogContainer, overlayRef, config) {
- // Create a reference to the dialog we're creating in order to give the user a handle
- // to modify and close it.
- /** @type {?} */
- var dialogRef = new MatDialogRef(overlayRef, dialogContainer, this._location, config.id);
- // When the dialog backdrop is clicked, we want to close it.
- if (config.hasBackdrop) {
- overlayRef.backdropClick().subscribe((/**
- * @return {?}
- */
- function () {
- if (!dialogRef.disableClose) {
- dialogRef.close();
- }
- }));
- }
- if (componentOrTemplateRef instanceof TemplateRef) {
- dialogContainer.attachTemplatePortal(new TemplatePortal(componentOrTemplateRef, (/** @type {?} */ (null)), (/** @type {?} */ ({ $implicit: config.data, dialogRef: dialogRef }))));
- }
- else {
- /** @type {?} */
- var injector = this._createInjector(config, dialogRef, dialogContainer);
- /** @type {?} */
- var contentRef = dialogContainer.attachComponentPortal(new ComponentPortal(componentOrTemplateRef, undefined, injector));
- dialogRef.componentInstance = contentRef.instance;
- }
- dialogRef
- .updateSize(config.width, config.height)
- .updatePosition(config.position);
- return dialogRef;
- };
- /**
- * Creates a custom injector to be used inside the dialog. This allows a component loaded inside
- * of a dialog to close itself and, optionally, to return a value.
- * @param config Config object that is used to construct the dialog.
- * @param dialogRef Reference to the dialog.
- * @param container Dialog container element that wraps all of the contents.
- * @returns The custom injector that can be used inside the dialog.
- */
- /**
- * Creates a custom injector to be used inside the dialog. This allows a component loaded inside
- * of a dialog to close itself and, optionally, to return a value.
- * @private
- * @template T
- * @param {?} config Config object that is used to construct the dialog.
- * @param {?} dialogRef Reference to the dialog.
- * @param {?} dialogContainer
- * @return {?} The custom injector that can be used inside the dialog.
- */
- MatDialog.prototype._createInjector = /**
- * Creates a custom injector to be used inside the dialog. This allows a component loaded inside
- * of a dialog to close itself and, optionally, to return a value.
- * @private
- * @template T
- * @param {?} config Config object that is used to construct the dialog.
- * @param {?} dialogRef Reference to the dialog.
- * @param {?} dialogContainer
- * @return {?} The custom injector that can be used inside the dialog.
- */
- function (config, dialogRef, dialogContainer) {
- /** @type {?} */
- var userInjector = config && config.viewContainerRef && config.viewContainerRef.injector;
- // The MatDialogContainer is injected in the portal as the MatDialogContainer and the dialog's
- // content are created out of the same ViewContainerRef and as such, are siblings for injector
- // purposes. To allow the hierarchy that is expected, the MatDialogContainer is explicitly
- // added to the injection tokens.
- /** @type {?} */
- var injectionTokens = new WeakMap([
- [MatDialogContainer, dialogContainer],
- [MAT_DIALOG_DATA, config.data],
- [MatDialogRef, dialogRef]
- ]);
- if (config.direction &&
- (!userInjector || !userInjector.get(Directionality, null))) {
- injectionTokens.set(Directionality, {
- value: config.direction,
- change: of()
- });
- }
- return new PortalInjector(userInjector || this._injector, injectionTokens);
- };
- /**
- * Removes a dialog from the array of open dialogs.
- * @param dialogRef Dialog to be removed.
- */
- /**
- * Removes a dialog from the array of open dialogs.
- * @private
- * @param {?} dialogRef Dialog to be removed.
- * @return {?}
- */
- MatDialog.prototype._removeOpenDialog = /**
- * Removes a dialog from the array of open dialogs.
- * @private
- * @param {?} dialogRef Dialog to be removed.
- * @return {?}
- */
- function (dialogRef) {
- /** @type {?} */
- var index = this.openDialogs.indexOf(dialogRef);
- if (index > -1) {
- this.openDialogs.splice(index, 1);
- // If all the dialogs were closed, remove/restore the `aria-hidden`
- // to a the siblings and emit to the `afterAllClosed` stream.
- if (!this.openDialogs.length) {
- this._ariaHiddenElements.forEach((/**
- * @param {?} previousValue
- * @param {?} element
- * @return {?}
- */
- function (previousValue, element) {
- if (previousValue) {
- element.setAttribute('aria-hidden', previousValue);
- }
- else {
- element.removeAttribute('aria-hidden');
- }
- }));
- this._ariaHiddenElements.clear();
- this._afterAllClosed.next();
- }
- }
- };
- /**
- * Hides all of the content that isn't an overlay from assistive technology.
- */
- /**
- * Hides all of the content that isn't an overlay from assistive technology.
- * @private
- * @return {?}
- */
- MatDialog.prototype._hideNonDialogContentFromAssistiveTechnology = /**
- * Hides all of the content that isn't an overlay from assistive technology.
- * @private
- * @return {?}
- */
- function () {
- /** @type {?} */
- var overlayContainer = this._overlayContainer.getContainerElement();
- // Ensure that the overlay container is attached to the DOM.
- if (overlayContainer.parentElement) {
- /** @type {?} */
- var siblings = overlayContainer.parentElement.children;
- for (var i = siblings.length - 1; i > -1; i--) {
- /** @type {?} */
- var sibling = siblings[i];
- if (sibling !== overlayContainer &&
- sibling.nodeName !== 'SCRIPT' &&
- sibling.nodeName !== 'STYLE' &&
- !sibling.hasAttribute('aria-live')) {
- this._ariaHiddenElements.set(sibling, sibling.getAttribute('aria-hidden'));
- sibling.setAttribute('aria-hidden', 'true');
- }
- }
- }
- };
- /** Closes all of the dialogs in an array. */
- /**
- * Closes all of the dialogs in an array.
- * @private
- * @param {?} dialogs
- * @return {?}
- */
- MatDialog.prototype._closeDialogs = /**
- * Closes all of the dialogs in an array.
- * @private
- * @param {?} dialogs
- * @return {?}
- */
- function (dialogs) {
- /** @type {?} */
- var i = dialogs.length;
- while (i--) {
- // The `_openDialogs` property isn't updated after close until the rxjs subscription
- // runs on the next microtask, in addition to modifying the array as we're going
- // through it. We loop through all of them and call close without assuming that
- // they'll be removed from the list instantaneously.
- dialogs[i].close();
- }
- };
- MatDialog.decorators = [
- { type: Injectable },
- ];
- /** @nocollapse */
- MatDialog.ctorParameters = function () { return [
- { type: Overlay },
- { type: Injector },
- { type: Location, decorators: [{ type: Optional }] },
- { type: MatDialogConfig, decorators: [{ type: Optional }, { type: Inject, args: [MAT_DIALOG_DEFAULT_OPTIONS,] }] },
- { type: undefined, decorators: [{ type: Inject, args: [MAT_DIALOG_SCROLL_STRATEGY,] }] },
- { type: MatDialog, decorators: [{ type: Optional }, { type: SkipSelf }] },
- { type: OverlayContainer }
- ]; };
- return MatDialog;
- }());
- /**
- * Applies default options to the dialog config.
- * @param {?=} config Config to be modified.
- * @param {?=} defaultOptions Default options provided.
- * @return {?} The new configuration object.
- */
- function _applyConfigDefaults(config, defaultOptions) {
- return __assign({}, defaultOptions, config);
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Counter used to generate unique IDs for dialog elements.
- * @type {?}
- */
- var dialogElementUid = 0;
- /**
- * Button that will close the current dialog.
- */
- var MatDialogClose = /** @class */ (function () {
- function MatDialogClose(dialogRef, _elementRef, _dialog) {
- this.dialogRef = dialogRef;
- this._elementRef = _elementRef;
- this._dialog = _dialog;
- }
- /**
- * @return {?}
- */
- MatDialogClose.prototype.ngOnInit = /**
- * @return {?}
- */
- function () {
- if (!this.dialogRef) {
- // When this directive is included in a dialog via TemplateRef (rather than being
- // in a Component), the DialogRef isn't available via injection because embedded
- // views cannot be given a custom injector. Instead, we look up the DialogRef by
- // ID. This must occur in `onInit`, as the ID binding for the dialog container won't
- // be resolved at constructor time.
- this.dialogRef = (/** @type {?} */ (getClosestDialog(this._elementRef, this._dialog.openDialogs)));
- }
- };
- /**
- * @param {?} changes
- * @return {?}
- */
- MatDialogClose.prototype.ngOnChanges = /**
- * @param {?} changes
- * @return {?}
- */
- function (changes) {
- /** @type {?} */
- var proxiedChange = changes['_matDialogClose'] || changes['_matDialogCloseResult'];
- if (proxiedChange) {
- this.dialogResult = proxiedChange.currentValue;
- }
- };
- MatDialogClose.decorators = [
- { type: Directive, args: [{
- selector: '[mat-dialog-close], [matDialogClose]',
- exportAs: 'matDialogClose',
- host: {
- '(click)': 'dialogRef.close(dialogResult)',
- '[attr.aria-label]': 'ariaLabel || null',
- 'type': 'button',
- }
- },] },
- ];
- /** @nocollapse */
- MatDialogClose.ctorParameters = function () { return [
- { type: MatDialogRef, decorators: [{ type: Optional }] },
- { type: ElementRef },
- { type: MatDialog }
- ]; };
- MatDialogClose.propDecorators = {
- ariaLabel: [{ type: Input, args: ['aria-label',] }],
- dialogResult: [{ type: Input, args: ['mat-dialog-close',] }],
- _matDialogClose: [{ type: Input, args: ['matDialogClose',] }]
- };
- return MatDialogClose;
- }());
- /**
- * Title of a dialog element. Stays fixed to the top of the dialog when scrolling.
- */
- var MatDialogTitle = /** @class */ (function () {
- function MatDialogTitle(_dialogRef, _elementRef, _dialog) {
- this._dialogRef = _dialogRef;
- this._elementRef = _elementRef;
- this._dialog = _dialog;
- this.id = "mat-dialog-title-" + dialogElementUid++;
- }
- /**
- * @return {?}
- */
- MatDialogTitle.prototype.ngOnInit = /**
- * @return {?}
- */
- function () {
- var _this = this;
- if (!this._dialogRef) {
- this._dialogRef = (/** @type {?} */ (getClosestDialog(this._elementRef, this._dialog.openDialogs)));
- }
- if (this._dialogRef) {
- Promise.resolve().then((/**
- * @return {?}
- */
- function () {
- /** @type {?} */
- var container = _this._dialogRef._containerInstance;
- if (container && !container._ariaLabelledBy) {
- container._ariaLabelledBy = _this.id;
- }
- }));
- }
- };
- MatDialogTitle.decorators = [
- { type: Directive, args: [{
- selector: '[mat-dialog-title], [matDialogTitle]',
- exportAs: 'matDialogTitle',
- host: {
- 'class': 'mat-dialog-title',
- '[id]': 'id',
- },
- },] },
- ];
- /** @nocollapse */
- MatDialogTitle.ctorParameters = function () { return [
- { type: MatDialogRef, decorators: [{ type: Optional }] },
- { type: ElementRef },
- { type: MatDialog }
- ]; };
- MatDialogTitle.propDecorators = {
- id: [{ type: Input }]
- };
- return MatDialogTitle;
- }());
- /**
- * Scrollable content container of a dialog.
- */
- var MatDialogContent = /** @class */ (function () {
- function MatDialogContent() {
- }
- MatDialogContent.decorators = [
- { type: Directive, args: [{
- selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]",
- host: { 'class': 'mat-dialog-content' }
- },] },
- ];
- return MatDialogContent;
- }());
- /**
- * Container for the bottom action buttons in a dialog.
- * Stays fixed to the bottom when scrolling.
- */
- var MatDialogActions = /** @class */ (function () {
- function MatDialogActions() {
- }
- MatDialogActions.decorators = [
- { type: Directive, args: [{
- selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]",
- host: { 'class': 'mat-dialog-actions' }
- },] },
- ];
- return MatDialogActions;
- }());
- /**
- * Finds the closest MatDialogRef to an element by looking at the DOM.
- * @param {?} element Element relative to which to look for a dialog.
- * @param {?} openDialogs References to the currently-open dialogs.
- * @return {?}
- */
- function getClosestDialog(element, openDialogs) {
- /** @type {?} */
- var parent = element.nativeElement.parentElement;
- while (parent && !parent.classList.contains('mat-dialog-container')) {
- parent = parent.parentElement;
- }
- return parent ? openDialogs.find((/**
- * @param {?} dialog
- * @return {?}
- */
- function (dialog) { return dialog.id === (/** @type {?} */ (parent)).id; })) : null;
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- var MatDialogModule = /** @class */ (function () {
- function MatDialogModule() {
- }
- MatDialogModule.decorators = [
- { type: NgModule, args: [{
- imports: [
- CommonModule,
- OverlayModule,
- PortalModule,
- MatCommonModule,
- ],
- exports: [
- MatDialogContainer,
- MatDialogClose,
- MatDialogTitle,
- MatDialogContent,
- MatDialogActions,
- MatCommonModule,
- ],
- declarations: [
- MatDialogContainer,
- MatDialogClose,
- MatDialogTitle,
- MatDialogActions,
- MatDialogContent,
- ],
- providers: [
- MatDialog,
- MAT_DIALOG_SCROLL_STRATEGY_PROVIDER,
- ],
- entryComponents: [MatDialogContainer],
- },] },
- ];
- return MatDialogModule;
- }());
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- export { MatDialogModule, MAT_DIALOG_SCROLL_STRATEGY_FACTORY, MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, MAT_DIALOG_DATA, MAT_DIALOG_DEFAULT_OPTIONS, MAT_DIALOG_SCROLL_STRATEGY, MAT_DIALOG_SCROLL_STRATEGY_PROVIDER, MatDialog, throwMatDialogContentAlreadyAttachedError, MatDialogContainer, MatDialogClose, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogConfig, MatDialogRef, matDialogAnimations };
- //# sourceMappingURL=dialog.es5.js.map
|