mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-03 07:01:38 +00:00
38 lines
1016 B
TypeScript
38 lines
1016 B
TypeScript
import {
|
|
animate,
|
|
state,
|
|
style,
|
|
transition,
|
|
trigger,
|
|
} from '@angular/animations';
|
|
import {
|
|
FuseAnimationCurves,
|
|
FuseAnimationDurations,
|
|
} from '@fuse/animations/defaults';
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Expand / collapse
|
|
// -----------------------------------------------------------------------------------------------------
|
|
const expandCollapse = trigger('expandCollapse', [
|
|
state(
|
|
'void, collapsed',
|
|
style({
|
|
height: '0',
|
|
})
|
|
),
|
|
|
|
state('*, expanded', style('*')),
|
|
|
|
// Prevent the transition if the state is false
|
|
transition('void <=> false, collapsed <=> false, expanded <=> false', []),
|
|
|
|
// Transition
|
|
transition('void <=> *, collapsed <=> expanded', animate('{{timings}}'), {
|
|
params: {
|
|
timings: `${FuseAnimationDurations.entering} ${FuseAnimationCurves.deceleration}`,
|
|
},
|
|
}),
|
|
]);
|
|
|
|
export { expandCollapse };
|