refactor(transition): refactor requestAnimationFrame with selectorQuery to improve performance (#3498)

fix #3133, fix #3120, fix #2636, fix #3441, fix #3434, fix #3455
This commit is contained in:
rex 2020-08-08 23:20:20 +08:00 committed by GitHub
parent f2bf0073df
commit 84b70f50fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 39 deletions

View File

@ -38,3 +38,19 @@ export function addUnit(value?: string | number): string | undefined {
value = String(value);
return isNumber(value) ? `${value}px` : value;
}
export function requestAnimationFrame(cb: Function) {
const systemInfo = getSystemInfoSync();
if (systemInfo.platform === 'devtools') {
return nextTick(cb);
}
return wx
.createSelectorQuery()
.selectViewport()
.boundingClientRect()
.exec(() => {
cb();
});
}

View File

@ -1,4 +1,4 @@
import { isObj } from '../common/utils';
import { isObj, requestAnimationFrame } from '../common/utils';
const getClassNames = (name: string) => ({
enter: `van-${name}-enter van-${name}-enter-active enter-class enter-active-class`,
@ -7,8 +7,6 @@ const getClassNames = (name: string) => ({
'leave-to': `van-${name}-leave-to van-${name}-leave-active leave-to-class leave-active-class`,
});
const nextTick = () => new Promise((resolve) => setTimeout(resolve, 1000 / 30));
export const transition = function (showDefaultValue: boolean) {
return Behavior({
properties: {
@ -53,29 +51,24 @@ export const transition = function (showDefaultValue: boolean) {
this.status = 'enter';
this.$emit('before-enter');
Promise.resolve()
.then(nextTick)
.then(() => {
this.checkStatus('enter');
this.$emit('enter');
requestAnimationFrame(() => {
this.checkStatus('enter');
this.$emit('enter');
this.setData({
inited: true,
display: true,
classes: classNames.enter,
currentDuration,
});
})
.then(nextTick)
.then(() => {
this.setData({
inited: true,
display: true,
classes: classNames.enter,
currentDuration,
});
requestAnimationFrame(() => {
this.checkStatus('enter');
this.transitionEnded = false;
this.setData({
classes: classNames['enter-to'],
});
})
.catch(() => {});
this.setData({ classes: classNames['enter-to'] });
});
});
},
leave() {
@ -90,28 +83,23 @@ export const transition = function (showDefaultValue: boolean) {
this.status = 'leave';
this.$emit('before-leave');
Promise.resolve()
.then(nextTick)
.then(() => {
this.checkStatus('leave');
this.$emit('leave');
requestAnimationFrame(() => {
this.checkStatus('leave');
this.$emit('leave');
this.setData({
classes: classNames.leave,
currentDuration,
});
})
.then(nextTick)
.then(() => {
this.setData({
classes: classNames.leave,
currentDuration,
});
requestAnimationFrame(() => {
this.checkStatus('leave');
this.transitionEnded = false;
setTimeout(() => this.onTransitionEnd(), currentDuration);
this.setData({
classes: classNames['leave-to'],
});
})
.catch(() => {});
this.setData({ classes: classNames['leave-to'] });
});
});
},
checkStatus(status: 'enter' | 'leave') {