mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(Picker): add clickOption event (#10865)
* feat(Picker): add clickOption event * chore: update
This commit is contained in:
parent
83a4e286bd
commit
2f6ef7aed8
@ -75,6 +75,10 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
<i class="van-badge__wrapper van-icon van-icon-chat-o">
|
||||
</i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="van-row">
|
||||
<div class="van-col van-col--6">
|
||||
<i class="van-badge__wrapper van-icon">
|
||||
<img class="van-icon__image"
|
||||
|
@ -77,7 +77,7 @@ export default defineComponent({
|
||||
|
||||
props: pickerProps,
|
||||
|
||||
emits: ['confirm', 'cancel', 'change', 'update:modelValue'],
|
||||
emits: ['confirm', 'cancel', 'change', 'clickOption', 'update:modelValue'],
|
||||
|
||||
setup(props, { emit, slots }) {
|
||||
const selectedValues = ref(props.modelValue);
|
||||
@ -144,6 +144,14 @@ export default defineComponent({
|
||||
});
|
||||
};
|
||||
|
||||
const onClickOption = (currentOption: PickerOption, columnIndex: number) =>
|
||||
emit('clickOption', {
|
||||
columnIndex,
|
||||
currentOption,
|
||||
selectedValues: selectedValues.value,
|
||||
selectedOptions: selectedOptions.value,
|
||||
});
|
||||
|
||||
const confirm = () => {
|
||||
children.forEach((child) => child.stopMomentum());
|
||||
emit('confirm', {
|
||||
@ -218,6 +226,9 @@ export default defineComponent({
|
||||
swipeDuration={props.swipeDuration}
|
||||
visibleOptionNum={props.visibleOptionNum}
|
||||
onChange={(value: Numeric) => onChange(value, columnIndex)}
|
||||
onClickOption={(option: PickerOption) =>
|
||||
onClickOption(option, columnIndex)
|
||||
}
|
||||
/>
|
||||
));
|
||||
|
||||
|
@ -56,7 +56,7 @@ export default defineComponent({
|
||||
visibleOptionNum: makeRequiredProp(numericProp),
|
||||
},
|
||||
|
||||
emits: ['change'],
|
||||
emits: ['change', 'clickOption'],
|
||||
|
||||
setup(props, { emit, slots }) {
|
||||
let moving: boolean;
|
||||
@ -96,7 +96,7 @@ export default defineComponent({
|
||||
currentOffset.value = offset;
|
||||
};
|
||||
|
||||
const onClickItem = (index: number) => {
|
||||
const onClickOption = (index: number) => {
|
||||
if (moving || props.readonly) {
|
||||
return;
|
||||
}
|
||||
@ -104,6 +104,7 @@ export default defineComponent({
|
||||
transitionEndTrigger = null;
|
||||
currentDuration.value = DEFAULT_DURATION;
|
||||
updateValueByIndex(index);
|
||||
emit('clickOption', props.options[index]);
|
||||
};
|
||||
|
||||
const getIndexByOffset = (offset: number) =>
|
||||
@ -221,7 +222,7 @@ export default defineComponent({
|
||||
}),
|
||||
option.className,
|
||||
],
|
||||
onClick: () => onClickItem(index),
|
||||
onClick: () => onClickOption(index),
|
||||
};
|
||||
|
||||
const childData = {
|
||||
|
@ -358,6 +358,7 @@ export default {
|
||||
| confirm | Emitted when the confirm button is clicked | _{ selectedValues, selectedOptions }_ |
|
||||
| cancel | Emitted when the cancel button is clicked | _{ selectedValues, selectedOptions }_ |
|
||||
| change | Emitted when current option is changed | _{ selectedValues, selectedOptions, columnIndex }_ |
|
||||
| click-option | Emitted when an option is clicked | _{ currentOption, selectedValues, selectedOptions, columnIndex }_ |
|
||||
|
||||
### Slots
|
||||
|
||||
|
@ -379,6 +379,7 @@ export default {
|
||||
| confirm | 点击完成按钮时触发 | _{ selectedValues, selectedOptions }_ |
|
||||
| cancel | 点击取消按钮时触发 | _{ selectedValues, selectedOptions }_ |
|
||||
| change | 选项改变时触发 | _{ selectedValues, selectedOptions, columnIndex }_ |
|
||||
| click-option | 点击选项时触发 | _{ currentOption, selectedValues, selectedOptions, columnIndex }_ |
|
||||
|
||||
### Slots
|
||||
|
||||
|
@ -119,6 +119,25 @@ test('should not emit change event when after clicking a disabled option', async
|
||||
expect(wrapper.emitted<[string, number]>('change')).toBeFalsy();
|
||||
});
|
||||
|
||||
test('should emit click-option event after clicking an option', async () => {
|
||||
const wrapper = mount(Picker, {
|
||||
props: {
|
||||
showToolbar: true,
|
||||
columns: simpleColumn,
|
||||
},
|
||||
});
|
||||
|
||||
await wrapper.find('.van-picker-column__item').trigger('click');
|
||||
expect(wrapper.emitted('clickOption')![0]).toEqual([
|
||||
{
|
||||
columnIndex: 0,
|
||||
currentOption: { text: '1990', value: '1990' },
|
||||
selectedOptions: [{ text: '1990', value: '1990' }],
|
||||
selectedValues: ['1990'],
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
test('should render bottom toolbar when toolbar-position is bottom', () => {
|
||||
const wrapper = mount(Picker, {
|
||||
props: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user