#6203 fix: switching to year view when modelValue is populated (#6204)

* #6203 fix: switching to year view when modelValue is populated

* - remove debug
pull/6161/head^2
Uros 2024-08-21 10:21:09 +02:00 committed by GitHub
parent 987fce1f7a
commit e038ecd340
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 1 deletions

View File

@ -54,4 +54,26 @@ describe('DatePicker.vue', () => {
expect(wrapper.vm.viewDate).toEqual(dateTwo);
});
it('should open a year view when there is selected date (fix: #6203)', async () => {
const dateOne = new Date();
dateOne.setFullYear(1988, 9, 10);
await wrapper.setProps({ modelValue: dateOne });
const input = wrapper.find('.p-datepicker-input');
await input.trigger('focus');
const yearSelectButton = wrapper.find('.p-datepicker .p-datepicker-select-year');
expect(yearSelectButton.exists()).toBe(true);
expect(yearSelectButton.text()).toBe('1988');
await yearSelectButton.trigger('click');
expect(wrapper.find('.p-datepicker-decade').exists()).toBe(true);
expect(wrapper.find('.p-datepicker-decade').text()).toBe('1980 - 1989');
});
});

View File

@ -750,7 +750,7 @@ export default {
return start === year || end === year || (start < year && end > year);
} else {
return value.getFullYear() === year;
return this.modelValue.getFullYear() === year;
}
},
isDateEquals(value, dateMeta) {