mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(collapse): refactor with animation to improve performance (#3401)
fix #3279
This commit is contained in:
parent
5ae50e8720
commit
b953273f38
@ -28,10 +28,6 @@
|
||||
|
||||
&__wrapper {
|
||||
overflow: hidden;
|
||||
|
||||
&--transition {
|
||||
transition: height 300ms ease-in-out;
|
||||
}
|
||||
}
|
||||
|
||||
&__content {
|
||||
|
@ -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',
|
||||
});
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user