mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Calendar): title is undefined in month-show event (#9275)
This commit is contained in:
parent
1aba8227e7
commit
c9fecc14ef
@ -10,22 +10,16 @@ import {
|
|||||||
} from 'vue';
|
} from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import {
|
import { pick, isDate, truthProp, getScrollTop } from '../utils';
|
||||||
pick,
|
|
||||||
isDate,
|
|
||||||
truthProp,
|
|
||||||
getScrollTop,
|
|
||||||
ComponentInstance,
|
|
||||||
} from '../utils';
|
|
||||||
import {
|
import {
|
||||||
t,
|
t,
|
||||||
bem,
|
bem,
|
||||||
name,
|
name,
|
||||||
|
getToday,
|
||||||
cloneDate,
|
cloneDate,
|
||||||
cloneDates,
|
cloneDates,
|
||||||
getPrevDay,
|
getPrevDay,
|
||||||
getNextDay,
|
getNextDay,
|
||||||
getToday,
|
|
||||||
compareDay,
|
compareDay,
|
||||||
calcDateNum,
|
calcDateNum,
|
||||||
compareMonth,
|
compareMonth,
|
||||||
@ -45,7 +39,12 @@ import CalendarMonth from './CalendarMonth';
|
|||||||
import CalendarHeader from './CalendarHeader';
|
import CalendarHeader from './CalendarHeader';
|
||||||
|
|
||||||
// Types
|
// Types
|
||||||
import type { CalendarType, CalendarExpose, CalendarDayItem } from './types';
|
import type {
|
||||||
|
CalendarType,
|
||||||
|
CalendarExpose,
|
||||||
|
CalendarDayItem,
|
||||||
|
CalendarMonthInstance,
|
||||||
|
} from './types';
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
@ -184,7 +183,7 @@ export default defineComponent({
|
|||||||
currentDate: getInitialDate(),
|
currentDate: getInitialDate(),
|
||||||
});
|
});
|
||||||
|
|
||||||
const [monthRefs, setMonthRefs] = useRefs<ComponentInstance>();
|
const [monthRefs, setMonthRefs] = useRefs<CalendarMonthInstance>();
|
||||||
|
|
||||||
const dayOffset = computed(() =>
|
const dayOffset = computed(() =>
|
||||||
props.firstDayOfWeek ? +props.firstDayOfWeek % 7 : 0
|
props.firstDayOfWeek ? +props.firstDayOfWeek % 7 : 0
|
||||||
@ -255,7 +254,7 @@ export default defineComponent({
|
|||||||
monthRefs.value[i].showed = true;
|
monthRefs.value[i].showed = true;
|
||||||
emit('month-show', {
|
emit('month-show', {
|
||||||
date: month.date,
|
date: month.date,
|
||||||
title: month.title,
|
title: month.getTitle(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -279,7 +278,9 @@ export default defineComponent({
|
|||||||
raf(() => {
|
raf(() => {
|
||||||
months.value.some((month, index) => {
|
months.value.some((month, index) => {
|
||||||
if (compareMonth(month, targetDate) === 0) {
|
if (compareMonth(month, targetDate) === 0) {
|
||||||
monthRefs.value[index].scrollIntoView(bodyRef.value);
|
if (bodyRef.value) {
|
||||||
|
monthRefs.value[index].scrollIntoView(bodyRef.value);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
import { ref, computed, PropType, defineComponent } from 'vue';
|
import {
|
||||||
|
ref,
|
||||||
|
computed,
|
||||||
|
PropType,
|
||||||
|
defineComponent,
|
||||||
|
ExtractPropTypes,
|
||||||
|
} from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import { addUnit, setScrollTop, createNamespace, pick } from '../utils';
|
import { addUnit, setScrollTop, createNamespace, pick } from '../utils';
|
||||||
@ -25,34 +31,38 @@ import type { CalendarType, CalendarDayItem, CalendarDayType } from './types';
|
|||||||
|
|
||||||
const [name] = createNamespace('calendar-month');
|
const [name] = createNamespace('calendar-month');
|
||||||
|
|
||||||
|
const props = {
|
||||||
|
type: String as PropType<CalendarType>,
|
||||||
|
color: String,
|
||||||
|
showMark: Boolean,
|
||||||
|
rowHeight: [Number, String],
|
||||||
|
formatter: Function as PropType<(item: CalendarDayItem) => CalendarDayItem>,
|
||||||
|
lazyRender: Boolean,
|
||||||
|
currentDate: [Date, Array] as PropType<Date | Date[]>,
|
||||||
|
allowSameDay: Boolean,
|
||||||
|
showSubtitle: Boolean,
|
||||||
|
showMonthTitle: Boolean,
|
||||||
|
firstDayOfWeek: Number,
|
||||||
|
date: {
|
||||||
|
type: Date,
|
||||||
|
required: true as const,
|
||||||
|
},
|
||||||
|
minDate: {
|
||||||
|
type: Date,
|
||||||
|
required: true as const,
|
||||||
|
},
|
||||||
|
maxDate: {
|
||||||
|
type: Date,
|
||||||
|
required: true as const,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export type CalendarMonthProps = ExtractPropTypes<typeof props>;
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name,
|
name,
|
||||||
|
|
||||||
props: {
|
props,
|
||||||
type: String as PropType<CalendarType>,
|
|
||||||
color: String,
|
|
||||||
showMark: Boolean,
|
|
||||||
rowHeight: [Number, String],
|
|
||||||
formatter: Function as PropType<(item: CalendarDayItem) => CalendarDayItem>,
|
|
||||||
lazyRender: Boolean,
|
|
||||||
currentDate: [Date, Array] as PropType<Date | Date[]>,
|
|
||||||
allowSameDay: Boolean,
|
|
||||||
showSubtitle: Boolean,
|
|
||||||
showMonthTitle: Boolean,
|
|
||||||
firstDayOfWeek: Number,
|
|
||||||
date: {
|
|
||||||
type: Date,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
minDate: {
|
|
||||||
type: Date,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
maxDate: {
|
|
||||||
type: Date,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
emits: ['click', 'update-height'],
|
emits: ['click', 'update-height'],
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import type { ComponentPublicInstance } from 'vue';
|
import type { ComponentPublicInstance } from 'vue';
|
||||||
import type { CalendarProps } from './Calendar';
|
import type { CalendarProps } from './Calendar';
|
||||||
|
import type { CalendarMonthProps } from './CalendarMonth';
|
||||||
|
|
||||||
export type CalendarType = 'single' | 'range' | 'multiple';
|
export type CalendarType = 'single' | 'range' | 'multiple';
|
||||||
|
|
||||||
@ -33,3 +34,14 @@ export type CalendarInstance = ComponentPublicInstance<
|
|||||||
CalendarProps,
|
CalendarProps,
|
||||||
CalendarExpose
|
CalendarExpose
|
||||||
>;
|
>;
|
||||||
|
|
||||||
|
export type CalendarMonthInstance = ComponentPublicInstance<
|
||||||
|
CalendarMonthProps,
|
||||||
|
{
|
||||||
|
showed?: boolean;
|
||||||
|
getTitle: () => any;
|
||||||
|
getHeight: () => number;
|
||||||
|
setVisible: (value?: boolean | undefined) => void;
|
||||||
|
scrollIntoView: (body: Element) => void;
|
||||||
|
}
|
||||||
|
>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user