mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(List): should emit load event when parent tab is activated (#9022)
This commit is contained in:
parent
0e05d8c908
commit
d74a3c0b29
@ -139,6 +139,14 @@ export default defineComponent({
|
||||
check
|
||||
);
|
||||
|
||||
if (tabStatus) {
|
||||
watch(tabStatus, (tabActive) => {
|
||||
if (tabActive) {
|
||||
check();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
onUpdated(() => {
|
||||
loading.value = props.loading!;
|
||||
});
|
||||
|
@ -158,3 +158,38 @@ test('should not emit load event when inside an inactive tab', async () => {
|
||||
expect(onLoad1).toHaveBeenCalledTimes(1);
|
||||
expect(onLoad2).toHaveBeenCalledTimes(0);
|
||||
});
|
||||
|
||||
// https://github.com/youzan/vant/issues/9017
|
||||
test('should emit load event when parent tab is activated', async () => {
|
||||
const onLoad1 = jest.fn();
|
||||
const onLoad2 = jest.fn();
|
||||
|
||||
const wrapper = mount({
|
||||
data() {
|
||||
return {
|
||||
active: 0,
|
||||
};
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<Tabs active={this.active} swipeable>
|
||||
<Tab>
|
||||
<List onLoad={onLoad1} />
|
||||
</Tab>
|
||||
<Tab>
|
||||
<List onLoad={onLoad2} />
|
||||
</Tab>
|
||||
</Tabs>
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
await later();
|
||||
expect(onLoad1).toHaveBeenCalledTimes(1);
|
||||
expect(onLoad2).toHaveBeenCalledTimes(0);
|
||||
|
||||
await wrapper.setData({ active: 1 });
|
||||
await later();
|
||||
expect(onLoad1).toHaveBeenCalledTimes(1);
|
||||
expect(onLoad2).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user