fix(List): should emit load event when parent tab is activated (#9022)

This commit is contained in:
neverland 2021-07-13 16:03:00 +08:00 committed by GitHub
parent 0e05d8c908
commit d74a3c0b29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 0 deletions

View File

@ -139,6 +139,14 @@ export default defineComponent({
check
);
if (tabStatus) {
watch(tabStatus, (tabActive) => {
if (tabActive) {
check();
}
});
}
onUpdated(() => {
loading.value = props.loading!;
});

View File

@ -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);
});