Skip to content

Commit

Permalink
#6203 fix: switching to year view when modelValue is populated (#6204)
Browse files Browse the repository at this point in the history
* #6203 fix: switching to year view when modelValue is populated

* - remove debug
  • Loading branch information
avramz authored Aug 21, 2024
1 parent 987fce1 commit e038ecd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions packages/primevue/src/datepicker/DatePicker.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
});
2 changes: 1 addition & 1 deletion packages/primevue/src/datepicker/DatePicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e038ecd

Please sign in to comment.