mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Calendar): correctly change the panelDate when the selected date is the last day of month (#13008)
This commit is contained in:
parent
a474ca9006
commit
d1070e010c
@ -38,25 +38,33 @@ export default defineComponent({
|
|||||||
emits: ['clickSubtitle', 'panelChange'],
|
emits: ['clickSubtitle', 'panelChange'],
|
||||||
|
|
||||||
setup(props, { slots, emit }) {
|
setup(props, { slots, emit }) {
|
||||||
const prevMonthDisabled = computed(() => {
|
const prevMonthDisabled = computed(
|
||||||
const prevMonth = getPrevMonth(props.date!);
|
() =>
|
||||||
return props.minDate && compareMonth(prevMonth, props.minDate) < 0;
|
props.date &&
|
||||||
});
|
props.minDate &&
|
||||||
|
compareMonth(getPrevMonth(props.date), props.minDate) < 0,
|
||||||
|
);
|
||||||
|
|
||||||
const prevYearDisabled = computed(() => {
|
const prevYearDisabled = computed(
|
||||||
const prevYear = getPrevYear(props.date!);
|
() =>
|
||||||
return props.minDate && compareMonth(prevYear, props.minDate) < 0;
|
props.date &&
|
||||||
});
|
props.minDate &&
|
||||||
|
compareMonth(getPrevYear(props.date), props.minDate) < 0,
|
||||||
|
);
|
||||||
|
|
||||||
const nextMonthDisabled = computed(() => {
|
const nextMonthDisabled = computed(
|
||||||
const nextMonth = getNextMonth(props.date!);
|
() =>
|
||||||
return props.maxDate && compareMonth(nextMonth, props.maxDate) > 0;
|
props.date &&
|
||||||
});
|
props.maxDate &&
|
||||||
|
compareMonth(getNextMonth(props.date), props.maxDate) > 0,
|
||||||
|
);
|
||||||
|
|
||||||
const nextYearDisabled = computed(() => {
|
const nextYearDisabled = computed(
|
||||||
const nextYear = getNextYear(props.date!);
|
() =>
|
||||||
return props.maxDate && compareMonth(nextYear, props.maxDate) > 0;
|
props.date &&
|
||||||
});
|
props.maxDate &&
|
||||||
|
compareMonth(getNextYear(props.date), props.maxDate) > 0,
|
||||||
|
);
|
||||||
|
|
||||||
const renderTitle = () => {
|
const renderTitle = () => {
|
||||||
if (props.showTitle) {
|
if (props.showTitle) {
|
||||||
|
@ -226,3 +226,36 @@ test('should emit panelChange event', async () => {
|
|||||||
currentDate = getNextMonth(currentDate);
|
currentDate = getNextMonth(currentDate);
|
||||||
expect(onPanelChange).toHaveBeenLastCalledWith({ date: currentDate });
|
expect(onPanelChange).toHaveBeenLastCalledWith({ date: currentDate });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('correctly change the panelDate when the selected date is the last day of each month', async () => {
|
||||||
|
let defaultDate = new Date(2024, 4, 31);
|
||||||
|
const onPanelChange = vi.fn();
|
||||||
|
const wrapper = mount(Calendar, {
|
||||||
|
props: {
|
||||||
|
defaultDate,
|
||||||
|
poppable: false,
|
||||||
|
switchMode: 'month',
|
||||||
|
onPanelChange,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await later();
|
||||||
|
const nextMonth = wrapper.findAll('.van-calendar__header-action')[1];
|
||||||
|
|
||||||
|
await nextMonth.trigger('click');
|
||||||
|
let panelDate = getNextMonth(defaultDate);
|
||||||
|
expect(panelDate).toEqual(new Date(2024, 5, 30));
|
||||||
|
expect(onPanelChange).toHaveBeenLastCalledWith({ date: panelDate });
|
||||||
|
|
||||||
|
defaultDate = new Date(2024, 1, 29);
|
||||||
|
await wrapper.setProps({
|
||||||
|
defaultDate,
|
||||||
|
switchMode: 'year-month',
|
||||||
|
});
|
||||||
|
const nextYear = wrapper.findAll('.van-calendar__header-action')[3];
|
||||||
|
|
||||||
|
await nextYear.trigger('click');
|
||||||
|
panelDate = getNextYear(defaultDate);
|
||||||
|
expect(panelDate).toEqual(new Date(2025, 1, 28));
|
||||||
|
expect(onPanelChange).toHaveBeenLastCalledWith({ date: panelDate });
|
||||||
|
});
|
||||||
|
@ -46,12 +46,22 @@ export function getDayByOffset(date: Date, offset: number) {
|
|||||||
export function getMonthByOffset(date: Date, offset: number) {
|
export function getMonthByOffset(date: Date, offset: number) {
|
||||||
const cloned = cloneDate(date);
|
const cloned = cloneDate(date);
|
||||||
cloned.setMonth(cloned.getMonth() + offset);
|
cloned.setMonth(cloned.getMonth() + offset);
|
||||||
|
|
||||||
|
if (cloned.getDate() !== date.getDate()) {
|
||||||
|
cloned.setDate(0);
|
||||||
|
}
|
||||||
|
|
||||||
return cloned;
|
return cloned;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getYearByOffset(date: Date, offset: number) {
|
export function getYearByOffset(date: Date, offset: number) {
|
||||||
const cloned = cloneDate(date);
|
const cloned = cloneDate(date);
|
||||||
cloned.setFullYear(cloned.getFullYear() + offset);
|
cloned.setFullYear(cloned.getFullYear() + offset);
|
||||||
|
|
||||||
|
if (cloned.getDate() !== date.getDate()) {
|
||||||
|
cloned.setDate(0);
|
||||||
|
}
|
||||||
|
|
||||||
return cloned;
|
return cloned;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user