6
6
* found in the LICENSE file at https://angular.dev/license
7
7
*/
8
8
9
+ import { _IdGenerator , AriaLivePoliteness } from '@angular/cdk/a11y' ;
10
+ import { Platform } from '@angular/cdk/platform' ;
11
+ import {
12
+ BasePortalOutlet ,
13
+ CdkPortalOutlet ,
14
+ ComponentPortal ,
15
+ DomPortal ,
16
+ TemplatePortal ,
17
+ } from '@angular/cdk/portal' ;
18
+ import { DOCUMENT } from '@angular/common' ;
9
19
import {
10
- afterRender ,
11
- AfterRenderRef ,
20
+ afterNextRender ,
12
21
ChangeDetectionStrategy ,
13
22
ChangeDetectorRef ,
14
23
Component ,
15
24
ComponentRef ,
16
25
ElementRef ,
17
26
EmbeddedViewRef ,
18
27
inject ,
28
+ Injector ,
19
29
NgZone ,
20
30
OnDestroy ,
21
31
ViewChild ,
22
32
ViewEncapsulation ,
23
33
} from '@angular/core' ;
24
- import { DOCUMENT } from '@angular/common' ;
25
- import {
26
- BasePortalOutlet ,
27
- CdkPortalOutlet ,
28
- ComponentPortal ,
29
- DomPortal ,
30
- TemplatePortal ,
31
- } from '@angular/cdk/portal' ;
32
- import { Observable , Subject , of } from 'rxjs' ;
33
- import { _IdGenerator , AriaLivePoliteness } from '@angular/cdk/a11y' ;
34
- import { Platform } from '@angular/cdk/platform' ;
35
- import { MatSnackBarConfig } from './snack-bar-config' ;
36
- import { take } from 'rxjs/operators' ;
34
+ import { Observable , of , Subject } from 'rxjs' ;
37
35
import { _animationsDisabled } from '../core' ;
36
+ import { MatSnackBarConfig } from './snack-bar-config' ;
38
37
39
38
const ENTER_ANIMATION = '_mat-snack-bar-enter' ;
40
39
const EXIT_ANIMATION = '_mat-snack-bar-exit' ;
@@ -68,15 +67,14 @@ export class MatSnackBarContainer extends BasePortalOutlet implements OnDestroy
68
67
private _elementRef = inject < ElementRef < HTMLElement > > ( ElementRef ) ;
69
68
private _changeDetectorRef = inject ( ChangeDetectorRef ) ;
70
69
private _platform = inject ( Platform ) ;
71
- private _rendersRef : AfterRenderRef ;
72
70
protected _animationsDisabled = _animationsDisabled ( ) ;
73
71
snackBarConfig = inject ( MatSnackBarConfig ) ;
74
72
75
73
private _document = inject ( DOCUMENT ) ;
76
74
private _trackedModals = new Set < Element > ( ) ;
77
75
private _enterFallback : ReturnType < typeof setTimeout > | undefined ;
78
76
private _exitFallback : ReturnType < typeof setTimeout > | undefined ;
79
- private _renders = new Subject < void > ( ) ;
77
+ private _injector = inject ( Injector ) ;
80
78
81
79
/** The number of milliseconds to wait before announcing the snack bar's content. */
82
80
private readonly _announceDelay : number = 150 ;
@@ -147,11 +145,6 @@ export class MatSnackBarContainer extends BasePortalOutlet implements OnDestroy
147
145
this . _role = 'alert' ;
148
146
}
149
147
}
150
-
151
- // Note: ideally we'd just do an `afterNextRender` in the places where we need to delay
152
- // something, however in some cases (TestBed teardown) the injector can be destroyed at an
153
- // unexpected time, causing the `afterRender` to fail.
154
- this . _rendersRef = afterRender ( ( ) => this . _renders . next ( ) , { manualCleanup : true } ) ;
155
148
}
156
149
157
150
/** Attach a component portal as content to this snack bar container. */
@@ -206,9 +199,12 @@ export class MatSnackBarContainer extends BasePortalOutlet implements OnDestroy
206
199
this . _screenReaderAnnounce ( ) ;
207
200
208
201
if ( this . _animationsDisabled ) {
209
- this . _renders . pipe ( take ( 1 ) ) . subscribe ( ( ) => {
210
- this . _ngZone . run ( ( ) => queueMicrotask ( ( ) => this . onAnimationEnd ( ENTER_ANIMATION ) ) ) ;
211
- } ) ;
202
+ afterNextRender (
203
+ ( ) => {
204
+ this . _ngZone . run ( ( ) => queueMicrotask ( ( ) => this . onAnimationEnd ( ENTER_ANIMATION ) ) ) ;
205
+ } ,
206
+ { injector : this . _injector } ,
207
+ ) ;
212
208
} else {
213
209
clearTimeout ( this . _enterFallback ) ;
214
210
this . _enterFallback = setTimeout ( ( ) => {
@@ -246,9 +242,12 @@ export class MatSnackBarContainer extends BasePortalOutlet implements OnDestroy
246
242
clearTimeout ( this . _announceTimeoutId ) ;
247
243
248
244
if ( this . _animationsDisabled ) {
249
- this . _renders . pipe ( take ( 1 ) ) . subscribe ( ( ) => {
250
- this . _ngZone . run ( ( ) => queueMicrotask ( ( ) => this . onAnimationEnd ( EXIT_ANIMATION ) ) ) ;
251
- } ) ;
245
+ afterNextRender (
246
+ ( ) => {
247
+ this . _ngZone . run ( ( ) => queueMicrotask ( ( ) => this . onAnimationEnd ( EXIT_ANIMATION ) ) ) ;
248
+ } ,
249
+ { injector : this . _injector } ,
250
+ ) ;
252
251
} else {
253
252
clearTimeout ( this . _exitFallback ) ;
254
253
this . _exitFallback = setTimeout ( ( ) => this . onAnimationEnd ( EXIT_ANIMATION ) , 200 ) ;
@@ -263,8 +262,6 @@ export class MatSnackBarContainer extends BasePortalOutlet implements OnDestroy
263
262
this . _destroyed = true ;
264
263
this . _clearFromModals ( ) ;
265
264
this . _completeExit ( ) ;
266
- this . _renders . complete ( ) ;
267
- this . _rendersRef . destroy ( ) ;
268
265
}
269
266
270
267
private _completeExit ( ) {
0 commit comments