fix(collapse): refactor with animation to improve performance (#3401)

fix #3279
This commit is contained in:
rex 2020-07-17 11:47:21 +08:00 committed by GitHub
parent 5ae50e8720
commit b953273f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 49 additions and 48 deletions

View File

@ -28,10 +28,6 @@
&__wrapper {
overflow: hidden;
&--transition {
transition: height 300ms ease-in-out;
}
}
&__content {

View File

@ -1,14 +1,12 @@
import { VantComponent } from '../common/component';
const nextTick = () => new Promise((resolve) => setTimeout(resolve, 20));
VantComponent({
classes: ['title-class', 'content-class'],
relation: {
name: 'collapse',
type: 'ancestor',
current: 'collapse-item',
current: 'collapse-item'
},
props: {
@ -21,32 +19,29 @@ VantComponent({
clickable: Boolean,
border: {
type: Boolean,
value: true,
value: true
},
isLink: {
type: Boolean,
value: true,
},
value: true
}
},
data: {
contentHeight: 0,
expanded: false,
transition: false,
expanded: false
},
created() {
this.animate = wx.createAnimation({
duration: 0,
timingFunction: 'ease-in-out'
});
},
mounted() {
this.updateExpanded()
.then(nextTick)
.then(() => {
const data: Record<string, boolean | string> = { transition: true };
this.updateExpanded();
if (this.data.expanded) {
data.contentHeight = 'auto';
}
this.setData(data);
});
this.inited = true;
},
methods: {
@ -66,33 +61,51 @@ VantComponent({
? value === currentName
: (value || []).some((name: string | number) => name === currentName);
const stack = [];
if (expanded !== this.data.expanded) {
stack.push(this.updateStyle(expanded));
this.updateStyle(expanded);
}
stack.push(this.set({ index, expanded }));
return Promise.all(stack);
this.setData({ index, expanded });
},
updateStyle(expanded: boolean) {
return this.getRect('.van-collapse-item__content')
const { inited } = this;
this.getRect('.van-collapse-item__content')
.then(
(rect: WechatMiniprogram.BoundingClientRectCallbackResult) =>
rect.height
)
.then((height: number) => {
const { animate } = this;
if (expanded) {
return this.set({
contentHeight: height ? `${height}px` : 'auto',
animate
.height(height)
.top(1)
.step({
duration: inited ? 300 : 1
})
.height('auto')
.step();
this.setData({
animate: this.animate.export()
});
return;
}
return this.set({ contentHeight: `${height}px` })
.then(nextTick)
.then(() => this.set({ contentHeight: 0 }));
animate
.height(height)
.top(0)
.step({ duration: 1 })
.height(0)
.step({
duration: 300
});
this.setData({
animate: this.animate.export()
});
});
},
@ -106,14 +119,6 @@ VantComponent({
const currentName = name == null ? index : name;
this.parent.switch(currentName, !expanded);
},
onTransitionEnd() {
if (this.data.expanded) {
this.setData({
contentHeight: 'auto',
});
}
},
},
}
}
});

View File

@ -31,9 +31,9 @@
/>
</van-cell>
<view
class="{{ utils.bem('collapse-item__wrapper', { transition }) }}"
style="height: {{ contentHeight }};"
bind:transitionend="onTransitionEnd"
class="{{ utils.bem('collapse-item__wrapper') }}"
style="height: 0;"
animation="{{ animate }}"
>
<view
class="van-collapse-item__content content-class"