9
9
import {
10
10
afterNextRender ,
11
11
AfterRenderRef ,
12
+ ANIMATION_MODULE_TYPE ,
12
13
booleanAttribute ,
13
14
ChangeDetectionStrategy ,
14
15
Component ,
@@ -32,7 +33,6 @@ import {
32
33
ViewContainerRef ,
33
34
ViewEncapsulation ,
34
35
} from '@angular/core' ;
35
- import { animate , group , state , style , transition , trigger } from '@angular/animations' ;
36
36
import {
37
37
DateAdapter ,
38
38
MAT_DATE_FORMATS ,
@@ -80,18 +80,6 @@ export interface MatTimepickerSelected<D> {
80
80
useExisting : MatTimepicker ,
81
81
} ,
82
82
] ,
83
- animations : [
84
- trigger ( 'panel' , [
85
- state ( 'void' , style ( { opacity : 0 , transform : 'scaleY(0.8)' } ) ) ,
86
- transition ( ':enter' , [
87
- group ( [
88
- animate ( '0.03s linear' , style ( { opacity : 1 } ) ) ,
89
- animate ( '0.12s cubic-bezier(0, 0, 0.2, 1)' , style ( { transform : 'scaleY(1)' } ) ) ,
90
- ] ) ,
91
- ] ) ,
92
- transition ( ':leave' , [ animate ( '0.075s linear' , style ( { opacity : 0 } ) ) ] ) ,
93
- ] ) ,
94
- ] ,
95
83
} )
96
84
export class MatTimepicker < D > implements OnDestroy , MatOptionParentComponent {
97
85
private _overlay = inject ( Overlay ) ;
@@ -101,6 +89,8 @@ export class MatTimepicker<D> implements OnDestroy, MatOptionParentComponent {
101
89
private _defaultConfig = inject ( MAT_TIMEPICKER_CONFIG , { optional : true } ) ;
102
90
private _dateAdapter = inject < DateAdapter < D > > ( DateAdapter , { optional : true } ) ! ;
103
91
private _dateFormats = inject ( MAT_DATE_FORMATS , { optional : true } ) ! ;
92
+ protected _animationsDisabled =
93
+ inject ( ANIMATION_MODULE_TYPE , { optional : true } ) === 'NoopAnimations' ;
104
94
105
95
private _isOpen = signal ( false ) ;
106
96
private _activeDescendant = signal < string | null > ( null ) ;
@@ -246,8 +236,11 @@ export class MatTimepicker<D> implements OnDestroy, MatOptionParentComponent {
246
236
close ( ) : void {
247
237
if ( this . _isOpen ( ) ) {
248
238
this . _isOpen . set ( false ) ;
249
- this . _overlayRef ?. detach ( ) ;
250
239
this . closed . emit ( ) ;
240
+
241
+ if ( this . _animationsDisabled ) {
242
+ this . _overlayRef ?. detach ( ) ;
243
+ }
251
244
}
252
245
}
253
246
@@ -270,9 +263,16 @@ export class MatTimepicker<D> implements OnDestroy, MatOptionParentComponent {
270
263
}
271
264
272
265
/** Selects a specific time value. */
273
- protected _selectValue ( value : D ) {
266
+ protected _selectValue ( option : MatOption < D > ) {
274
267
this . close ( ) ;
275
- this . selected . emit ( { value, source : this } ) ;
268
+ this . _keyManager . setActiveItem ( option ) ;
269
+ this . _options ( ) . forEach ( current => {
270
+ // This is primarily here so we don't show two selected options while animating away.
271
+ if ( current !== option ) {
272
+ current . deselect ( false ) ;
273
+ }
274
+ } ) ;
275
+ this . selected . emit ( { value : option . value , source : this } ) ;
276
276
this . _input ( ) ?. focus ( ) ;
277
277
}
278
278
@@ -284,6 +284,13 @@ export class MatTimepicker<D> implements OnDestroy, MatOptionParentComponent {
284
284
return this . ariaLabelledby ( ) || this . _input ( ) ?. _getLabelId ( ) || null ;
285
285
}
286
286
287
+ /** Handles animation events coming from the panel. */
288
+ protected _handleAnimationEnd ( event : AnimationEvent ) {
289
+ if ( event . animationName === '_mat-timepicker-exit' ) {
290
+ this . _overlayRef ?. detach ( ) ;
291
+ }
292
+ }
293
+
287
294
/** Creates an overlay reference for the timepicker panel. */
288
295
private _getOverlayRef ( ) : OverlayRef {
289
296
if ( this . _overlayRef ) {
@@ -409,7 +416,7 @@ export class MatTimepicker<D> implements OnDestroy, MatOptionParentComponent {
409
416
event . preventDefault ( ) ;
410
417
411
418
if ( this . _keyManager . activeItem ) {
412
- this . _selectValue ( this . _keyManager . activeItem . value ) ;
419
+ this . _selectValue ( this . _keyManager . activeItem ) ;
413
420
} else {
414
421
this . close ( ) ;
415
422
}
0 commit comments