mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(DatePicker): should display correctly when modelValue is updated from external (#11839)
* fix(DatePicker): should be displayed correctly when modelValue updated by external sources * fix: optimize logic
This commit is contained in:
parent
cb0f859a83
commit
4b29f1006c
@ -53,6 +53,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
setup(props, { emit, slots }) {
|
setup(props, { emit, slots }) {
|
||||||
const currentValues = ref<string[]>(props.modelValue);
|
const currentValues = ref<string[]>(props.modelValue);
|
||||||
|
const updatedByExternalSources = ref(false);
|
||||||
|
|
||||||
const genYearOptions = () => {
|
const genYearOptions = () => {
|
||||||
const minYear = props.minDate.getFullYear();
|
const minYear = props.minDate.getFullYear();
|
||||||
@ -76,7 +77,9 @@ export default defineComponent({
|
|||||||
const getValue = (type: DatePickerColumnType) => {
|
const getValue = (type: DatePickerColumnType) => {
|
||||||
const { minDate, columnsType } = props;
|
const { minDate, columnsType } = props;
|
||||||
const index = columnsType.indexOf(type);
|
const index = columnsType.indexOf(type);
|
||||||
const value = currentValues.value[index];
|
const value = updatedByExternalSources.value
|
||||||
|
? props.modelValue[index]
|
||||||
|
: currentValues.value[index];
|
||||||
if (value) {
|
if (value) {
|
||||||
return +value;
|
return +value;
|
||||||
}
|
}
|
||||||
@ -146,11 +149,16 @@ export default defineComponent({
|
|||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.modelValue,
|
() => props.modelValue,
|
||||||
(newValues) => {
|
(newValues, oldValues) => {
|
||||||
|
updatedByExternalSources.value = isSameValue(
|
||||||
|
oldValues,
|
||||||
|
currentValues.value
|
||||||
|
);
|
||||||
newValues = formatValueRange(newValues, columns.value);
|
newValues = formatValueRange(newValues, columns.value);
|
||||||
if (!isSameValue(newValues, currentValues.value)) {
|
if (!isSameValue(newValues, currentValues.value)) {
|
||||||
currentValues.value = newValues;
|
currentValues.value = newValues;
|
||||||
}
|
}
|
||||||
|
updatedByExternalSources.value = false;
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
immediate: true,
|
immediate: true,
|
||||||
|
@ -200,3 +200,24 @@ test('should update value correctly when dynamically change min-date', async ()
|
|||||||
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues
|
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues
|
||||||
).toEqual(['2020', '12', '20']);
|
).toEqual(['2020', '12', '20']);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should be displayed correctly when modelValue updated by external sources', async () => {
|
||||||
|
const wrapper = mount(DatePicker, {
|
||||||
|
props: {
|
||||||
|
modelValue: ['2023', '12'],
|
||||||
|
columnsType: ['year', 'month'],
|
||||||
|
minDate: new Date(2023, 5, 1),
|
||||||
|
maxDate: new Date(2024, 5, 1),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await wrapper.setProps({ modelValue: ['2024', '01'] });
|
||||||
|
const selectedItems = wrapper.findAll('.van-picker-column__item--selected');
|
||||||
|
expect(selectedItems[0].text()).toEqual('2024');
|
||||||
|
expect(selectedItems[1].text()).toEqual('01');
|
||||||
|
|
||||||
|
await wrapper.find('.van-picker__confirm').trigger('click');
|
||||||
|
expect(
|
||||||
|
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues
|
||||||
|
).toEqual(['2024', '01']);
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user