fix(Transition): fix transition event sequence (#5699)

This commit is contained in:
johnsonwong666 2024-01-15 19:47:25 +08:00 committed by GitHub
parent f2ff0e7b48
commit 19083a327c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,7 @@ export function transition(showDefaultValue: boolean) {
},
enter() {
this.waitEnterEndPromise = new Promise((resolve) => {
const { duration, name } = this.data;
const classNames = getClassNames(name);
const currentDuration = isObj(duration) ? duration.enter : duration;
@ -85,11 +86,15 @@ export function transition(showDefaultValue: boolean) {
this.transitionEnded = false;
this.setData({ classes: classNames['enter-to'] });
resolve();
});
});
});
},
leave() {
if (!this.waitEnterEndPromise) return;
this.waitEnterEndPromise.then(() => {
if (!this.data.display) {
return;
}
@ -124,6 +129,7 @@ export function transition(showDefaultValue: boolean) {
this.setData({ classes: classNames['leave-to'] });
});
});
});
},
onTransitionEnd() {