mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
Merge branch '2.x' of https://github.com/youzan/vant into 2.x
This commit is contained in:
commit
b54d9c7598
@ -9,6 +9,7 @@ export default createComponent({
|
||||
data() {
|
||||
return {
|
||||
offset: 0,
|
||||
inited: false,
|
||||
mounted: false,
|
||||
};
|
||||
},
|
||||
@ -34,9 +35,9 @@ export default createComponent({
|
||||
},
|
||||
|
||||
shouldRender() {
|
||||
const { index, parent, mounted } = this;
|
||||
const { index, inited, parent, mounted } = this;
|
||||
|
||||
if (!parent.lazyRender) {
|
||||
if (!parent.lazyRender || inited) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -47,10 +48,16 @@ export default createComponent({
|
||||
|
||||
const active = parent.activeIndicator;
|
||||
const maxActive = parent.count - 1;
|
||||
const prevActive = active === 0 ? maxActive : active - 1;
|
||||
const nextActive = active === maxActive ? 0 : active + 1;
|
||||
const prevActive = active === 0 && parent.loop ? maxActive : active - 1;
|
||||
const nextActive = active === maxActive && parent.loop ? 0 : active + 1;
|
||||
const shouldRender =
|
||||
index === active || index === prevActive || index === nextActive;
|
||||
|
||||
return index === active || index === prevActive || index === nextActive;
|
||||
if (shouldRender) {
|
||||
this.inited = true;
|
||||
}
|
||||
|
||||
return shouldRender;
|
||||
},
|
||||
},
|
||||
|
||||
|
@ -163,6 +163,7 @@ test('lazy-render prop', async () => {
|
||||
<van-swipe-item><span>2</span></van-swipe-item>
|
||||
<van-swipe-item><span>3</span></van-swipe-item>
|
||||
<van-swipe-item><span>4</span></van-swipe-item>
|
||||
<van-swipe-item><span>5</span></van-swipe-item>
|
||||
</van-swipe>
|
||||
`,
|
||||
data() {
|
||||
@ -175,26 +176,52 @@ test('lazy-render prop', async () => {
|
||||
await later();
|
||||
const items = wrapper.findAll('.van-swipe-item');
|
||||
|
||||
expect(items.at(0).contains('span')).toBeTruthy();
|
||||
expect(items.at(1).contains('span')).toBeTruthy();
|
||||
expect(items.at(2).contains('span')).toBeFalsy();
|
||||
expect(items.at(3).contains('span')).toBeTruthy();
|
||||
const expectRender = (results) => {
|
||||
results.forEach((result, index) => {
|
||||
expect(items.at(index).contains('span')).toEqual(result);
|
||||
});
|
||||
};
|
||||
|
||||
expectRender([true, true, false, false, true]);
|
||||
|
||||
wrapper.setData({ active: 1 });
|
||||
expect(items.at(0).contains('span')).toBeTruthy();
|
||||
expect(items.at(1).contains('span')).toBeTruthy();
|
||||
expect(items.at(2).contains('span')).toBeTruthy();
|
||||
expect(items.at(3).contains('span')).toBeFalsy();
|
||||
expectRender([true, true, true, false, true]);
|
||||
|
||||
wrapper.setData({ active: 2 });
|
||||
expect(items.at(0).contains('span')).toBeFalsy();
|
||||
expect(items.at(1).contains('span')).toBeTruthy();
|
||||
expect(items.at(2).contains('span')).toBeTruthy();
|
||||
expect(items.at(3).contains('span')).toBeTruthy();
|
||||
|
||||
wrapper.setData({ active: 3 });
|
||||
expect(items.at(0).contains('span')).toBeTruthy();
|
||||
expect(items.at(1).contains('span')).toBeFalsy();
|
||||
expect(items.at(2).contains('span')).toBeTruthy();
|
||||
expect(items.at(3).contains('span')).toBeTruthy();
|
||||
expectRender([true, true, true, true, true]);
|
||||
});
|
||||
|
||||
test('lazy-render prop when loop is false', async () => {
|
||||
const wrapper = mount({
|
||||
template: `
|
||||
<van-swipe :initial-swipe="active" :loop="false" lazy-render>
|
||||
<van-swipe-item><span>1</span></van-swipe-item>
|
||||
<van-swipe-item><span>2</span></van-swipe-item>
|
||||
<van-swipe-item><span>3</span></van-swipe-item>
|
||||
<van-swipe-item><span>4</span></van-swipe-item>
|
||||
</van-swipe>
|
||||
`,
|
||||
data() {
|
||||
return {
|
||||
active: 0,
|
||||
};
|
||||
},
|
||||
});
|
||||
|
||||
await later();
|
||||
const items = wrapper.findAll('.van-swipe-item');
|
||||
|
||||
const expectRender = (results) => {
|
||||
results.forEach((result, index) => {
|
||||
expect(items.at(index).contains('span')).toEqual(result);
|
||||
});
|
||||
};
|
||||
|
||||
expectRender([true, true, false, false]);
|
||||
|
||||
wrapper.setData({ active: 1 });
|
||||
expectRender([true, true, true, false]);
|
||||
|
||||
wrapper.setData({ active: 2 });
|
||||
expectRender([true, true, true, true]);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user