mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
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:
parent
f2bf0073df
commit
84b70f50fc
@ -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();
|
||||
});
|
||||
}
|
||||
|
@ -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') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user