mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(PullRefresh): add change event (#10702)
This commit is contained in:
parent
525653b68d
commit
4dab4e20c2
@ -55,7 +55,7 @@ export default defineComponent({
|
||||
|
||||
props: pullRefreshProps,
|
||||
|
||||
emits: ['refresh', 'update:modelValue'],
|
||||
emits: ['change', 'refresh', 'update:modelValue'],
|
||||
|
||||
setup(props, { emit, slots }) {
|
||||
let reachTop: boolean;
|
||||
@ -111,6 +111,11 @@ export default defineComponent({
|
||||
} else {
|
||||
state.status = 'loosing';
|
||||
}
|
||||
|
||||
emit('change', {
|
||||
status: state.status,
|
||||
distance,
|
||||
});
|
||||
};
|
||||
|
||||
const getStatusText = () => {
|
||||
|
@ -127,8 +127,9 @@ Use slots to custom tips.
|
||||
### Events
|
||||
|
||||
| Event | Description | Parameters |
|
||||
| ------- | ----------------------------- | ---------- |
|
||||
| --- | --- | --- |
|
||||
| refresh | Emitted after pulling refresh | - |
|
||||
| change `v3.5.1` | Emitted when draging or status changed | _{ status: string, distance: number }_ |
|
||||
|
||||
### Slots
|
||||
|
||||
|
@ -130,8 +130,9 @@ export default {
|
||||
### Events
|
||||
|
||||
| 事件名 | 说明 | 回调参数 |
|
||||
| ------- | -------------- | -------- |
|
||||
| --- | --- | --- |
|
||||
| refresh | 下拉刷新时触发 | - |
|
||||
| change `v3.5.1` | 拖动时或状态改变时触发 | _{ status: string, distance: number }_ |
|
||||
|
||||
### Slots
|
||||
|
||||
|
@ -164,3 +164,14 @@ test('should allow to custom pull distance', async () => {
|
||||
await later();
|
||||
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' }],
|
||||
]);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user