import * as i1 from '@angular/cdk/overlay'; import { OverlayModule, OverlayConfig, Overlay } from '@angular/cdk/overlay'; import { BasePortalOutlet, CdkPortalOutlet, PortalModule, ComponentPortal, TemplatePortal } from '@angular/cdk/portal'; import { CommonModule } from '@angular/common'; import * as i0 from '@angular/core'; import { InjectionToken, Component, ViewEncapsulation, ChangeDetectionStrategy, Inject, NgZone, ElementRef, ChangeDetectorRef, ViewChild, NgModule, Injector, TemplateRef, Injectable, Optional, SkipSelf } from '@angular/core'; import { MatCommonModule } from '@angular/material/core'; import { MatButtonModule } from '@angular/material/button'; import { Subject } from 'rxjs'; import { Platform } from '@angular/cdk/platform'; import { take, takeUntil } from 'rxjs/operators'; import { trigger, state, style, transition, animate } from '@angular/animations'; import * as i2 from '@angular/cdk/a11y'; import { LiveAnnouncer } from '@angular/cdk/a11y'; import * as i3 from '@angular/cdk/layout'; import { Breakpoints, BreakpointObserver } from '@angular/cdk/layout'; /** * @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 */ /** Injection token that can be used to access the data that was passed in to a snack bar. */ const MAT_SNACK_BAR_DATA = new InjectionToken('MatSnackBarData'); /** * Configuration used when opening a snack-bar. */ 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'; } } /** * @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 */ /** Maximum amount of milliseconds that can be passed into setTimeout. */ const MAX_TIMEOUT = Math.pow(2, 31) - 1; /** * Reference to a snack bar dispatched from the snack bar service. */ class MatSnackBarRef { 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(() => this.dismiss()); containerInstance._onExit.subscribe(() => this._finishDismiss()); } /** Dismisses the snack bar. */ dismiss() { if (!this._afterDismissed.closed) { this.containerInstance.exit(); } clearTimeout(this._durationTimeoutId); } /** Marks the snackbar action clicked. */ dismissWithAction() { if (!this._onAction.closed) { this._dismissedByAction = true; this._onAction.next(); this._onAction.complete(); } clearTimeout(this._durationTimeoutId); } /** * Marks the snackbar action clicked. * @deprecated Use `dismissWithAction` instead. * @breaking-change 8.0.0 */ closeWithAction() { this.dismissWithAction(); } /** Dismisses the snack bar after some duration */ _dismissAfter(duration) { // Note that we need to cap the duration to the maximum value for setTimeout, because // it'll revert to 1 if somebody passes in something greater (e.g. `Infinity`). See #17234. this._durationTimeoutId = setTimeout(() => this.dismiss(), Math.min(duration, MAX_TIMEOUT)); } /** Marks the snackbar as opened */ _open() { if (!this._afterOpened.closed) { this._afterOpened.next(); this._afterOpened.complete(); } } /** Cleans up the DOM after closing. */ _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. */ afterDismissed() { return this._afterDismissed; } /** Gets an observable that is notified when the snack bar has opened and appeared. */ afterOpened() { return this.containerInstance._onEnter; } /** Gets an observable that is notified when the snack bar action is called. */ onAction() { return this._onAction; } } /** * @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 */ /** * 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 { constructor(snackBarRef, data) { this.snackBarRef = snackBarRef; this.data = data; } /** Performs the action on the snack bar. */ action() { this.snackBarRef.dismissWithAction(); } /** If the action button should be shown. */ get hasAction() { return !!this.data.action; } } SimpleSnackBar.decorators = [ { type: Component, args: [{ selector: 'simple-snack-bar', template: "{{data.message}}\n
\n", encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: { 'class': 'mat-simple-snackbar', }, styles: [".mat-simple-snackbar{display:flex;justify-content:space-between;align-items:center;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}\n"] },] } ]; SimpleSnackBar.ctorParameters = () => [ { type: MatSnackBarRef }, { type: undefined, decorators: [{ type: Inject, args: [MAT_SNACK_BAR_DATA,] }] } ]; /** * @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 */ /** * Animations used by the Material snack bar. * @docs-private */ 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 }))), ]) }; /** * @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 */ /** * Internal component that wraps user-provided snack bar content. * @docs-private */ class MatSnackBarContainer extends BasePortalOutlet { constructor(_ngZone, _elementRef, _changeDetectorRef, _platform, /** The snack bar configuration. */ snackBarConfig) { super(); this._ngZone = _ngZone; this._elementRef = _elementRef; this._changeDetectorRef = _changeDetectorRef; this._platform = _platform; this.snackBarConfig = snackBarConfig; /** The number of milliseconds to wait before announcing the snack bar's content. */ this._announceDelay = 150; /** Whether the component has been destroyed. */ this._destroyed = false; /** Subject for notifying that the snack bar has announced to screen readers. */ this._onAnnounce = new Subject(); /** 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'; /** * Attaches a DOM portal to the snack bar container. * @deprecated To be turned into a method. * @breaking-change 10.0.0 */ this.attachDomPortal = (portal) => { this._assertNotAttached(); this._applySnackBarClasses(); return this._portalOutlet.attachDomPortal(portal); }; // Use aria-live rather than a live role like 'alert' or 'status' // because NVDA and JAWS have show inconsistent behavior with live roles. if (snackBarConfig.politeness === 'assertive' && !snackBarConfig.announcementMessage) { this._live = 'assertive'; } else if (snackBarConfig.politeness === 'off') { this._live = 'off'; } else { this._live = 'polite'; } // Only set role for Firefox. Set role based on aria-live because setting role="alert" implies // aria-live="assertive" which may cause issues if aria-live is set to "polite" above. if (this._platform.FIREFOX) { if (this._live === 'polite') { this._role = 'status'; } if (this._live === 'assertive') { this._role = 'alert'; } } } /** Attach a component portal as content to this snack bar container. */ attachComponentPortal(portal) { this._assertNotAttached(); this._applySnackBarClasses(); return this._portalOutlet.attachComponentPortal(portal); } /** Attach a template portal as content to this snack bar container. */ attachTemplatePortal(portal) { this._assertNotAttached(); this._applySnackBarClasses(); return this._portalOutlet.attachTemplatePortal(portal); } /** Handle end of animations, updating the state of the snackbar. */ 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. const onEnter = this._onEnter; this._ngZone.run(() => { onEnter.next(); onEnter.complete(); }); } } /** Begin animation of snack bar entrance into view. */ enter() { if (!this._destroyed) { this._animationState = 'visible'; this._changeDetectorRef.detectChanges(); this._screenReaderAnnounce(); } } /** Begin animation of the snack bar exiting from view. */ 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'; // Mark this element with an 'exit' attribute to indicate that the snackbar has // been dismissed and will soon be removed from the DOM. This is used by the snackbar // test harness. this._elementRef.nativeElement.setAttribute('mat-exit', ''); // If the snack bar hasn't been announced by the time it exits it wouldn't have been open // long enough to visually read it either, so clear the timeout for announcing. clearTimeout(this._announceTimeoutId); return this._onExit; } /** Makes sure the exit callbacks have been invoked when the element is destroyed. */ 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. */ _completeExit() { this._ngZone.onMicrotaskEmpty.pipe(take(1)).subscribe(() => { this._onExit.next(); this._onExit.complete(); }); } /** Applies the various positioning and user-configured CSS classes to the snack bar. */ _applySnackBarClasses() { const element = this._elementRef.nativeElement; 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(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. */ _assertNotAttached() { if (this._portalOutlet.hasAttached() && (typeof ngDevMode === 'undefined' || ngDevMode)) { throw Error('Attempting to attach snack bar content after content is already attached'); } } /** * Starts a timeout to move the snack bar content to the live region so screen readers will * announce it. */ _screenReaderAnnounce() { if (!this._announceTimeoutId) { this._ngZone.runOutsideAngular(() => { this._announceTimeoutId = setTimeout(() => { const inertElement = this._elementRef.nativeElement.querySelector('[aria-hidden]'); const liveElement = this._elementRef.nativeElement.querySelector('[aria-live]'); if (inertElement && liveElement) { // If an element in the snack bar content is focused before being moved // track it and restore focus after moving to the live region. let focusedElement = null; if (this._platform.isBrowser && document.activeElement instanceof HTMLElement && inertElement.contains(document.activeElement)) { focusedElement = document.activeElement; } inertElement.removeAttribute('aria-hidden'); liveElement.appendChild(inertElement); focusedElement === null || focusedElement === void 0 ? void 0 : focusedElement.focus(); this._onAnnounce.next(); this._onAnnounce.complete(); } }, this._announceDelay); }); } } } MatSnackBarContainer.decorators = [ { type: Component, args: [{ selector: 'snack-bar-container', template: "\n