Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

animation leave not work #52

Open
SimonAdamPottier opened this issue Jan 24, 2022 · 1 comment
Open

animation leave not work #52

SimonAdamPottier opened this issue Jan 24, 2022 · 1 comment

Comments

@SimonAdamPottier
Copy link

Environment

  • NativeScript-Angular: 12.2.0
  • Angular: 12.2.0

Describe the bug
:leave or * => void not working

To Reproduce
`import {animate, style, transition, trigger} from '@angular/animations';

export const fadeInOutAnimation = trigger('fadeInOut', [
// OK
transition(':enter', [
style({opacity: 0}),
animate('3s linear', style({opacity: 1}))
]),
// KO
transition(':leave', [
style({opacity: 1}),
animate('3s linear', style({opacity: 0}))
])
]);`

Expected behavior

Await before removing element from DOM

@SimonAdamPottier SimonAdamPottier changed the title animation leave not working animation leave not work Jan 24, 2022
@SimonAdamPottier
Copy link
Author

Here is a temporary trick:

Don't use ngIf. repalce it by hidden and a variable triggered by animation start and done

<GridLayout [@fadeinout]="openCloseBooleanVar" (@fadeinout.start)="isVisibleBooleanVar= true" (@fadeInOut.done)="isVisibleBooleanVar = openCloseBooleanVar" [hidden]="!isVisibleBooleanVar">

then replace :enter and :leave by * => true and * => false

Really ugly solution but it works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant