feat(PullRefresh): add change event (#10702)

This commit is contained in:
neverland 2022-06-11 15:45:00 +08:00 committed by GitHub
parent 525653b68d
commit 4dab4e20c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 25 additions and 7 deletions

View File

@ -55,7 +55,7 @@ export default defineComponent({
props: pullRefreshProps, props: pullRefreshProps,
emits: ['refresh', 'update:modelValue'], emits: ['change', 'refresh', 'update:modelValue'],
setup(props, { emit, slots }) { setup(props, { emit, slots }) {
let reachTop: boolean; let reachTop: boolean;
@ -111,6 +111,11 @@ export default defineComponent({
} else { } else {
state.status = 'loosing'; state.status = 'loosing';
} }
emit('change', {
status: state.status,
distance,
});
}; };
const getStatusText = () => { const getStatusText = () => {

View File

@ -127,8 +127,9 @@ Use slots to custom tips.
### Events ### Events
| Event | Description | Parameters | | Event | Description | Parameters |
| ------- | ----------------------------- | ---------- | | --- | --- | --- |
| refresh | Emitted after pulling refresh | - | | refresh | Emitted after pulling refresh | - |
| change `v3.5.1` | Emitted when draging or status changed | _{ status: string, distance: number }_ |
### Slots ### Slots

View File

@ -130,8 +130,9 @@ export default {
### Events ### Events
| 事件名 | 说明 | 回调参数 | | 事件名 | 说明 | 回调参数 |
| ------- | -------------- | -------- | | --- | --- | --- |
| refresh | 下拉刷新时触发 | - | | refresh | 下拉刷新时触发 | - |
| change `v3.5.1` | 拖动时或状态改变时触发 | _{ status: string, distance: number }_ |
### Slots ### Slots

View File

@ -164,3 +164,14 @@ test('should allow to custom pull distance', async () => {
await later(); await later();
expect(wrapper.html()).toMatchSnapshot(); expect(wrapper.html()).toMatchSnapshot();
}); });
test('should emit change event when status changed', async () => {
const wrapper = mount(PullRefresh);
const track = wrapper.find('.van-pull-refresh__track');
trigger(track, 'touchstart', 0, 0);
trigger(track, 'touchmove', 0, 20);
await later();
expect(wrapper.emitted('change')).toEqual([
[{ distance: 20, status: 'pulling' }],
]);
});