| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831 |
- /**
- * @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 { Subject } from 'rxjs';
- import { InjectionToken, Component, ViewEncapsulation, Inject, ChangeDetectionStrategy, ChangeDetectorRef, ElementRef, NgZone, ViewChild, NgModule, Injectable, Injector, Optional, SkipSelf, TemplateRef, ɵɵdefineInjectable, ɵɵinject, INJECTOR } from '@angular/core';
- import { animate, state, style, transition, trigger } from '@angular/animations';
- import { BasePortalOutlet, CdkPortalOutlet, PortalModule, ComponentPortal, PortalInjector, TemplatePortal } from '@angular/cdk/portal';
- import { take, takeUntil } from 'rxjs/operators';
- import { OverlayModule, Overlay, OverlayConfig } from '@angular/cdk/overlay';
- import { CommonModule } from '@angular/common';
- import { MatCommonModule } from '@angular/material/core';
- import { MatButtonModule } from '@angular/material/button';
- import { LiveAnnouncer } from '@angular/cdk/a11y';
- import { BreakpointObserver, Breakpoints } from '@angular/cdk/layout';
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Reference to a snack bar dispatched from the snack bar service.
- * @template T
- */
- class MatSnackBarRef {
- /**
- * @param {?} containerInstance
- * @param {?} _overlayRef
- */
- constructor(containerInstance, _overlayRef) {
- this._overlayRef = _overlayRef;
- /**
- * Subject for notifying the user that the snack bar has been dismissed.
- */
- this._afterDismissed = new Subject();
- /**
- * Subject for notifying the user that the snack bar has opened and appeared.
- */
- this._afterOpened = new Subject();
- /**
- * Subject for notifying the user that the snack bar action was called.
- */
- this._onAction = new Subject();
- /**
- * Whether the snack bar was dismissed using the action button.
- */
- this._dismissedByAction = false;
- this.containerInstance = containerInstance;
- // Dismiss snackbar on action.
- this.onAction().subscribe((/**
- * @return {?}
- */
- () => this.dismiss()));
- containerInstance._onExit.subscribe((/**
- * @return {?}
- */
- () => this._finishDismiss()));
- }
- /**
- * Dismisses the snack bar.
- * @return {?}
- */
- dismiss() {
- if (!this._afterDismissed.closed) {
- this.containerInstance.exit();
- }
- clearTimeout(this._durationTimeoutId);
- }
- /**
- * Marks the snackbar action clicked.
- * @return {?}
- */
- dismissWithAction() {
- if (!this._onAction.closed) {
- this._dismissedByAction = true;
- this._onAction.next();
- this._onAction.complete();
- }
- }
- /**
- * Marks the snackbar action clicked.
- * @deprecated Use `dismissWithAction` instead.
- * \@breaking-change 8.0.0
- * @return {?}
- */
- closeWithAction() {
- this.dismissWithAction();
- }
- /**
- * Dismisses the snack bar after some duration
- * @param {?} duration
- * @return {?}
- */
- _dismissAfter(duration) {
- this._durationTimeoutId = setTimeout((/**
- * @return {?}
- */
- () => this.dismiss()), duration);
- }
- /**
- * Marks the snackbar as opened
- * @return {?}
- */
- _open() {
- if (!this._afterOpened.closed) {
- this._afterOpened.next();
- this._afterOpened.complete();
- }
- }
- /**
- * Cleans up the DOM after closing.
- * @private
- * @return {?}
- */
- _finishDismiss() {
- this._overlayRef.dispose();
- if (!this._onAction.closed) {
- this._onAction.complete();
- }
- this._afterDismissed.next({ dismissedByAction: this._dismissedByAction });
- this._afterDismissed.complete();
- this._dismissedByAction = false;
- }
- /**
- * Gets an observable that is notified when the snack bar is finished closing.
- * @return {?}
- */
- afterDismissed() {
- return this._afterDismissed.asObservable();
- }
- /**
- * Gets an observable that is notified when the snack bar has opened and appeared.
- * @return {?}
- */
- afterOpened() {
- return this.containerInstance._onEnter;
- }
- /**
- * Gets an observable that is notified when the snack bar action is called.
- * @return {?}
- */
- onAction() {
- return this._onAction.asObservable();
- }
- }
- /**
- * @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 snack bar.
- * @type {?}
- */
- const MAT_SNACK_BAR_DATA = new InjectionToken('MatSnackBarData');
- /**
- * Configuration used when opening a snack-bar.
- * @template D
- */
- class MatSnackBarConfig {
- constructor() {
- /**
- * The politeness level for the MatAriaLiveAnnouncer announcement.
- */
- this.politeness = 'assertive';
- /**
- * Message to be announced by the LiveAnnouncer. When opening a snackbar without a custom
- * component or template, the announcement message will default to the specified message.
- */
- this.announcementMessage = '';
- /**
- * The length of time in milliseconds to wait before automatically dismissing the snack bar.
- */
- this.duration = 0;
- /**
- * Data being injected into the child component.
- */
- this.data = null;
- /**
- * The horizontal position to place the snack bar.
- */
- this.horizontalPosition = 'center';
- /**
- * The vertical position to place the snack bar.
- */
- this.verticalPosition = 'bottom';
- }
- }
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * A component used to open as the default snack bar, matching material spec.
- * This should only be used internally by the snack bar service.
- */
- class SimpleSnackBar {
- /**
- * @param {?} snackBarRef
- * @param {?} data
- */
- constructor(snackBarRef, data) {
- this.snackBarRef = snackBarRef;
- this.data = data;
- }
- /**
- * Performs the action on the snack bar.
- * @return {?}
- */
- action() {
- this.snackBarRef.dismissWithAction();
- }
- /**
- * If the action button should be shown.
- * @return {?}
- */
- get hasAction() {
- return !!this.data.action;
- }
- }
- SimpleSnackBar.decorators = [
- { type: Component, args: [{selector: 'simple-snack-bar',
- template: "<span>{{data.message}}</span><div class=\"mat-simple-snackbar-action\" *ngIf=\"hasAction\"><button mat-button (click)=\"action()\">{{data.action}}</button></div>",
- styles: [".mat-simple-snackbar{display:flex;justify-content:space-between;align-items:center;height:100%;line-height:20px;opacity:1}.mat-simple-snackbar-action{flex-shrink:0;margin:-8px -8px -8px 8px}.mat-simple-snackbar-action button{max-height:36px;min-width:0}[dir=rtl] .mat-simple-snackbar-action{margin-left:-8px;margin-right:8px}"],
- encapsulation: ViewEncapsulation.None,
- changeDetection: ChangeDetectionStrategy.OnPush,
- host: {
- 'class': 'mat-simple-snackbar',
- }
- },] },
- ];
- /** @nocollapse */
- SimpleSnackBar.ctorParameters = () => [
- { type: MatSnackBarRef },
- { type: undefined, decorators: [{ type: Inject, args: [MAT_SNACK_BAR_DATA,] }] }
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Animations used by the Material snack bar.
- * \@docs-private
- * @type {?}
- */
- const matSnackBarAnimations = {
- /**
- * Animation that shows and hides a snack bar.
- */
- snackBarState: trigger('state', [
- state('void, hidden', style({
- transform: 'scale(0.8)',
- opacity: 0,
- })),
- state('visible', style({
- transform: 'scale(1)',
- opacity: 1,
- })),
- transition('* => visible', animate('150ms cubic-bezier(0, 0, 0.2, 1)')),
- transition('* => void, * => hidden', animate('75ms cubic-bezier(0.4, 0.0, 1, 1)', style({
- opacity: 0
- }))),
- ])
- };
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Internal component that wraps user-provided snack bar content.
- * \@docs-private
- */
- class MatSnackBarContainer extends BasePortalOutlet {
- /**
- * @param {?} _ngZone
- * @param {?} _elementRef
- * @param {?} _changeDetectorRef
- * @param {?} snackBarConfig
- */
- constructor(_ngZone, _elementRef, _changeDetectorRef, snackBarConfig) {
- super();
- this._ngZone = _ngZone;
- this._elementRef = _elementRef;
- this._changeDetectorRef = _changeDetectorRef;
- this.snackBarConfig = snackBarConfig;
- /**
- * Whether the component has been destroyed.
- */
- this._destroyed = false;
- /**
- * Subject for notifying that the snack bar has exited from view.
- */
- this._onExit = new Subject();
- /**
- * Subject for notifying that the snack bar has finished entering the view.
- */
- this._onEnter = new Subject();
- /**
- * The state of the snack bar animations.
- */
- this._animationState = 'void';
- // Based on the ARIA spec, `alert` and `status` roles have an
- // implicit `assertive` and `polite` politeness respectively.
- if (snackBarConfig.politeness === 'assertive' && !snackBarConfig.announcementMessage) {
- this._role = 'alert';
- }
- else if (snackBarConfig.politeness === 'off') {
- this._role = null;
- }
- else {
- this._role = 'status';
- }
- }
- /**
- * Attach a component portal as content to this snack bar container.
- * @template T
- * @param {?} portal
- * @return {?}
- */
- attachComponentPortal(portal) {
- this._assertNotAttached();
- this._applySnackBarClasses();
- return this._portalOutlet.attachComponentPortal(portal);
- }
- /**
- * Attach a template portal as content to this snack bar container.
- * @template C
- * @param {?} portal
- * @return {?}
- */
- attachTemplatePortal(portal) {
- this._assertNotAttached();
- this._applySnackBarClasses();
- return this._portalOutlet.attachTemplatePortal(portal);
- }
- /**
- * Handle end of animations, updating the state of the snackbar.
- * @param {?} event
- * @return {?}
- */
- onAnimationEnd(event) {
- const { fromState, toState } = event;
- if ((toState === 'void' && fromState !== 'void') || toState === 'hidden') {
- this._completeExit();
- }
- if (toState === 'visible') {
- // Note: we shouldn't use `this` inside the zone callback,
- // because it can cause a memory leak.
- /** @type {?} */
- const onEnter = this._onEnter;
- this._ngZone.run((/**
- * @return {?}
- */
- () => {
- onEnter.next();
- onEnter.complete();
- }));
- }
- }
- /**
- * Begin animation of snack bar entrance into view.
- * @return {?}
- */
- enter() {
- if (!this._destroyed) {
- this._animationState = 'visible';
- this._changeDetectorRef.detectChanges();
- }
- }
- /**
- * Begin animation of the snack bar exiting from view.
- * @return {?}
- */
- exit() {
- // Note: this one transitions to `hidden`, rather than `void`, in order to handle the case
- // where multiple snack bars are opened in quick succession (e.g. two consecutive calls to
- // `MatSnackBar.open`).
- this._animationState = 'hidden';
- return this._onExit;
- }
- /**
- * Makes sure the exit callbacks have been invoked when the element is destroyed.
- * @return {?}
- */
- ngOnDestroy() {
- this._destroyed = true;
- this._completeExit();
- }
- /**
- * Waits for the zone to settle before removing the element. Helps prevent
- * errors where we end up removing an element which is in the middle of an animation.
- * @private
- * @return {?}
- */
- _completeExit() {
- this._ngZone.onMicrotaskEmpty.asObservable().pipe(take(1)).subscribe((/**
- * @return {?}
- */
- () => {
- this._onExit.next();
- this._onExit.complete();
- }));
- }
- /**
- * Applies the various positioning and user-configured CSS classes to the snack bar.
- * @private
- * @return {?}
- */
- _applySnackBarClasses() {
- /** @type {?} */
- const element = this._elementRef.nativeElement;
- /** @type {?} */
- const panelClasses = this.snackBarConfig.panelClass;
- if (panelClasses) {
- if (Array.isArray(panelClasses)) {
- // Note that we can't use a spread here, because IE doesn't support multiple arguments.
- panelClasses.forEach((/**
- * @param {?} cssClass
- * @return {?}
- */
- cssClass => element.classList.add(cssClass)));
- }
- else {
- element.classList.add(panelClasses);
- }
- }
- if (this.snackBarConfig.horizontalPosition === 'center') {
- element.classList.add('mat-snack-bar-center');
- }
- if (this.snackBarConfig.verticalPosition === 'top') {
- element.classList.add('mat-snack-bar-top');
- }
- }
- /**
- * Asserts that no content is already attached to the container.
- * @private
- * @return {?}
- */
- _assertNotAttached() {
- if (this._portalOutlet.hasAttached()) {
- throw Error('Attempting to attach snack bar content after content is already attached');
- }
- }
- }
- MatSnackBarContainer.decorators = [
- { type: Component, args: [{selector: 'snack-bar-container',
- template: "<ng-template cdkPortalOutlet></ng-template>",
- styles: [".mat-snack-bar-container{border-radius:4px;box-sizing:border-box;display:block;margin:24px;max-width:33vw;min-width:344px;padding:14px 16px;min-height:48px;transform-origin:center}@media (-ms-high-contrast:active){.mat-snack-bar-container{border:solid 1px}}.mat-snack-bar-handset{width:100%}.mat-snack-bar-handset .mat-snack-bar-container{margin:8px;max-width:100%;min-width:0;width:100%}"],
- // In Ivy embedded views will be change detected from their declaration place, rather than
- // where they were stamped out. This means that we can't have the snack bar container be OnPush,
- // because it might cause snack bars that were opened from a template not to be out of date.
- // tslint:disable-next-line:validate-decorators
- changeDetection: ChangeDetectionStrategy.Default,
- encapsulation: ViewEncapsulation.None,
- animations: [matSnackBarAnimations.snackBarState],
- host: {
- '[attr.role]': '_role',
- 'class': 'mat-snack-bar-container',
- '[@state]': '_animationState',
- '(@state.done)': 'onAnimationEnd($event)'
- },
- },] },
- ];
- /** @nocollapse */
- MatSnackBarContainer.ctorParameters = () => [
- { type: NgZone },
- { type: ElementRef },
- { type: ChangeDetectorRef },
- { type: MatSnackBarConfig }
- ];
- MatSnackBarContainer.propDecorators = {
- _portalOutlet: [{ type: ViewChild, args: [CdkPortalOutlet, { static: true },] }]
- };
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- class MatSnackBarModule {
- }
- MatSnackBarModule.decorators = [
- { type: NgModule, args: [{
- imports: [
- OverlayModule,
- PortalModule,
- CommonModule,
- MatButtonModule,
- MatCommonModule,
- ],
- exports: [MatSnackBarContainer, MatCommonModule],
- declarations: [MatSnackBarContainer, SimpleSnackBar],
- entryComponents: [MatSnackBarContainer, SimpleSnackBar],
- },] },
- ];
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * Injection token that can be used to specify default snack bar.
- * @type {?}
- */
- const MAT_SNACK_BAR_DEFAULT_OPTIONS = new InjectionToken('mat-snack-bar-default-options', {
- providedIn: 'root',
- factory: MAT_SNACK_BAR_DEFAULT_OPTIONS_FACTORY,
- });
- /**
- * \@docs-private
- * @return {?}
- */
- function MAT_SNACK_BAR_DEFAULT_OPTIONS_FACTORY() {
- return new MatSnackBarConfig();
- }
- /**
- * Service to dispatch Material Design snack bar messages.
- */
- class MatSnackBar {
- /**
- * @param {?} _overlay
- * @param {?} _live
- * @param {?} _injector
- * @param {?} _breakpointObserver
- * @param {?} _parentSnackBar
- * @param {?} _defaultConfig
- */
- constructor(_overlay, _live, _injector, _breakpointObserver, _parentSnackBar, _defaultConfig) {
- this._overlay = _overlay;
- this._live = _live;
- this._injector = _injector;
- this._breakpointObserver = _breakpointObserver;
- this._parentSnackBar = _parentSnackBar;
- this._defaultConfig = _defaultConfig;
- /**
- * Reference to the current snack bar in the view *at this level* (in the Angular injector tree).
- * If there is a parent snack-bar service, all operations should delegate to that parent
- * via `_openedSnackBarRef`.
- */
- this._snackBarRefAtThisLevel = null;
- }
- /**
- * Reference to the currently opened snackbar at *any* level.
- * @return {?}
- */
- get _openedSnackBarRef() {
- /** @type {?} */
- const parent = this._parentSnackBar;
- return parent ? parent._openedSnackBarRef : this._snackBarRefAtThisLevel;
- }
- /**
- * @param {?} value
- * @return {?}
- */
- set _openedSnackBarRef(value) {
- if (this._parentSnackBar) {
- this._parentSnackBar._openedSnackBarRef = value;
- }
- else {
- this._snackBarRefAtThisLevel = value;
- }
- }
- /**
- * Creates and dispatches a snack bar with a custom component for the content, removing any
- * currently opened snack bars.
- *
- * @template T
- * @param {?} component Component to be instantiated.
- * @param {?=} config Extra configuration for the snack bar.
- * @return {?}
- */
- openFromComponent(component, config) {
- return (/** @type {?} */ (this._attach(component, config)));
- }
- /**
- * Creates and dispatches a snack bar with a custom template for the content, removing any
- * currently opened snack bars.
- *
- * @param {?} template Template to be instantiated.
- * @param {?=} config Extra configuration for the snack bar.
- * @return {?}
- */
- openFromTemplate(template, config) {
- return this._attach(template, config);
- }
- /**
- * Opens a snackbar with a message and an optional action.
- * @param {?} message The message to show in the snackbar.
- * @param {?=} action The label for the snackbar action.
- * @param {?=} config Additional configuration options for the snackbar.
- * @return {?}
- */
- open(message, action = '', config) {
- /** @type {?} */
- const _config = Object.assign({}, this._defaultConfig, config);
- // Since the user doesn't have access to the component, we can
- // override the data to pass in our own message and action.
- _config.data = { message, action };
- if (!_config.announcementMessage) {
- _config.announcementMessage = message;
- }
- return this.openFromComponent(SimpleSnackBar, _config);
- }
- /**
- * Dismisses the currently-visible snack bar.
- * @return {?}
- */
- dismiss() {
- if (this._openedSnackBarRef) {
- this._openedSnackBarRef.dismiss();
- }
- }
- /**
- * @return {?}
- */
- ngOnDestroy() {
- // Only dismiss the snack bar at the current level on destroy.
- if (this._snackBarRefAtThisLevel) {
- this._snackBarRefAtThisLevel.dismiss();
- }
- }
- /**
- * Attaches the snack bar container component to the overlay.
- * @private
- * @param {?} overlayRef
- * @param {?} config
- * @return {?}
- */
- _attachSnackBarContainer(overlayRef, config) {
- /** @type {?} */
- const userInjector = config && config.viewContainerRef && config.viewContainerRef.injector;
- /** @type {?} */
- const injector = new PortalInjector(userInjector || this._injector, new WeakMap([
- [MatSnackBarConfig, config]
- ]));
- /** @type {?} */
- const containerPortal = new ComponentPortal(MatSnackBarContainer, config.viewContainerRef, injector);
- /** @type {?} */
- const containerRef = overlayRef.attach(containerPortal);
- containerRef.instance.snackBarConfig = config;
- return containerRef.instance;
- }
- /**
- * Places a new component or a template as the content of the snack bar container.
- * @private
- * @template T
- * @param {?} content
- * @param {?=} userConfig
- * @return {?}
- */
- _attach(content, userConfig) {
- /** @type {?} */
- const config = Object.assign({}, new MatSnackBarConfig(), this._defaultConfig, userConfig);
- /** @type {?} */
- const overlayRef = this._createOverlay(config);
- /** @type {?} */
- const container = this._attachSnackBarContainer(overlayRef, config);
- /** @type {?} */
- const snackBarRef = new MatSnackBarRef(container, overlayRef);
- if (content instanceof TemplateRef) {
- /** @type {?} */
- const portal = new TemplatePortal(content, (/** @type {?} */ (null)), (/** @type {?} */ ({
- $implicit: config.data,
- snackBarRef
- })));
- snackBarRef.instance = container.attachTemplatePortal(portal);
- }
- else {
- /** @type {?} */
- const injector = this._createInjector(config, snackBarRef);
- /** @type {?} */
- const portal = new ComponentPortal(content, undefined, injector);
- /** @type {?} */
- const contentRef = container.attachComponentPortal(portal);
- // We can't pass this via the injector, because the injector is created earlier.
- snackBarRef.instance = contentRef.instance;
- }
- // Subscribe to the breakpoint observer and attach the mat-snack-bar-handset class as
- // appropriate. This class is applied to the overlay element because the overlay must expand to
- // fill the width of the screen for full width snackbars.
- this._breakpointObserver.observe(Breakpoints.Handset).pipe(takeUntil(overlayRef.detachments().pipe(take(1)))).subscribe((/**
- * @param {?} state
- * @return {?}
- */
- state$$1 => {
- if (state$$1.matches) {
- overlayRef.overlayElement.classList.add('mat-snack-bar-handset');
- }
- else {
- overlayRef.overlayElement.classList.remove('mat-snack-bar-handset');
- }
- }));
- this._animateSnackBar(snackBarRef, config);
- this._openedSnackBarRef = snackBarRef;
- return this._openedSnackBarRef;
- }
- /**
- * Animates the old snack bar out and the new one in.
- * @private
- * @param {?} snackBarRef
- * @param {?} config
- * @return {?}
- */
- _animateSnackBar(snackBarRef, config) {
- // When the snackbar is dismissed, clear the reference to it.
- snackBarRef.afterDismissed().subscribe((/**
- * @return {?}
- */
- () => {
- // Clear the snackbar ref if it hasn't already been replaced by a newer snackbar.
- if (this._openedSnackBarRef == snackBarRef) {
- this._openedSnackBarRef = null;
- }
- if (config.announcementMessage) {
- this._live.clear();
- }
- }));
- if (this._openedSnackBarRef) {
- // If a snack bar is already in view, dismiss it and enter the
- // new snack bar after exit animation is complete.
- this._openedSnackBarRef.afterDismissed().subscribe((/**
- * @return {?}
- */
- () => {
- snackBarRef.containerInstance.enter();
- }));
- this._openedSnackBarRef.dismiss();
- }
- else {
- // If no snack bar is in view, enter the new snack bar.
- snackBarRef.containerInstance.enter();
- }
- // If a dismiss timeout is provided, set up dismiss based on after the snackbar is opened.
- if (config.duration && config.duration > 0) {
- snackBarRef.afterOpened().subscribe((/**
- * @return {?}
- */
- () => snackBarRef._dismissAfter((/** @type {?} */ (config.duration)))));
- }
- if (config.announcementMessage) {
- this._live.announce(config.announcementMessage, config.politeness);
- }
- }
- /**
- * Creates a new overlay and places it in the correct location.
- * @private
- * @param {?} config The user-specified snack bar config.
- * @return {?}
- */
- _createOverlay(config) {
- /** @type {?} */
- const overlayConfig = new OverlayConfig();
- overlayConfig.direction = config.direction;
- /** @type {?} */
- let positionStrategy = this._overlay.position().global();
- // Set horizontal position.
- /** @type {?} */
- const isRtl = config.direction === 'rtl';
- /** @type {?} */
- const isLeft = (config.horizontalPosition === 'left' ||
- (config.horizontalPosition === 'start' && !isRtl) ||
- (config.horizontalPosition === 'end' && isRtl));
- /** @type {?} */
- const isRight = !isLeft && config.horizontalPosition !== 'center';
- if (isLeft) {
- positionStrategy.left('0');
- }
- else if (isRight) {
- positionStrategy.right('0');
- }
- else {
- positionStrategy.centerHorizontally();
- }
- // Set horizontal position.
- if (config.verticalPosition === 'top') {
- positionStrategy.top('0');
- }
- else {
- positionStrategy.bottom('0');
- }
- overlayConfig.positionStrategy = positionStrategy;
- return this._overlay.create(overlayConfig);
- }
- /**
- * Creates an injector to be used inside of a snack bar component.
- * @private
- * @template T
- * @param {?} config Config that was used to create the snack bar.
- * @param {?} snackBarRef Reference to the snack bar.
- * @return {?}
- */
- _createInjector(config, snackBarRef) {
- /** @type {?} */
- const userInjector = config && config.viewContainerRef && config.viewContainerRef.injector;
- return new PortalInjector(userInjector || this._injector, new WeakMap([
- [MatSnackBarRef, snackBarRef],
- [MAT_SNACK_BAR_DATA, config.data]
- ]));
- }
- }
- MatSnackBar.decorators = [
- { type: Injectable, args: [{ providedIn: MatSnackBarModule },] },
- ];
- /** @nocollapse */
- MatSnackBar.ctorParameters = () => [
- { type: Overlay },
- { type: LiveAnnouncer },
- { type: Injector },
- { type: BreakpointObserver },
- { type: MatSnackBar, decorators: [{ type: Optional }, { type: SkipSelf }] },
- { type: MatSnackBarConfig, decorators: [{ type: Inject, args: [MAT_SNACK_BAR_DEFAULT_OPTIONS,] }] }
- ];
- /** @nocollapse */ MatSnackBar.ngInjectableDef = ɵɵdefineInjectable({ factory: function MatSnackBar_Factory() { return new MatSnackBar(ɵɵinject(Overlay), ɵɵinject(LiveAnnouncer), ɵɵinject(INJECTOR), ɵɵinject(BreakpointObserver), ɵɵinject(MatSnackBar, 12), ɵɵinject(MAT_SNACK_BAR_DEFAULT_OPTIONS)); }, token: MatSnackBar, providedIn: MatSnackBarModule });
- /**
- * @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 { MatSnackBarModule, MAT_SNACK_BAR_DEFAULT_OPTIONS_FACTORY, MAT_SNACK_BAR_DEFAULT_OPTIONS, MatSnackBar, MatSnackBarContainer, MAT_SNACK_BAR_DATA, MatSnackBarConfig, MatSnackBarRef, SimpleSnackBar, matSnackBarAnimations };
- //# sourceMappingURL=snack-bar.js.map
|