feat(Calendar): support text slot (#13127)

Co-authored-by: inottn <inottn@outlook.com>
This commit is contained in:
Leo 2024-10-13 16:03:20 +08:00 committed by GitHub
parent 1388dd939a
commit 2e58a74d2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 19 additions and 7 deletions

View File

@ -518,7 +518,12 @@ export default defineComponent({
const showMonthTitle = index !== 0 || !props.showSubtitle;
return (
<CalendarMonth
v-slots={pick(slots, ['top-info', 'bottom-info', 'month-title'])}
v-slots={pick(slots, [
'top-info',
'bottom-info',
'month-title',
'text',
])}
ref={canSwitch.value ? currentMonthRef : setMonthRefs(index)}
date={date}
currentDate={currentDate.value}

View File

@ -95,11 +95,15 @@ export default defineComponent({
}
};
const renderText = () => {
return slots.text ? slots.text(props.item) : props.item.text;
};
const renderContent = () => {
const { item, color, rowHeight } = props;
const { type, text } = item;
const { type } = item;
const Nodes = [renderTopInfo(), text, renderBottomInfo()];
const Nodes = [renderTopInfo(), renderText(), renderBottomInfo()];
if (type === 'selected') {
return (

View File

@ -261,7 +261,7 @@ export default defineComponent({
const renderDay = (item: CalendarDayItem, index: number) => (
<CalendarDay
v-slots={pick(slots, ['top-info', 'bottom-info'])}
v-slots={pick(slots, ['top-info', 'bottom-info', 'text'])}
item={item}
index={index}
color={props.color}

View File

@ -353,6 +353,7 @@ Following props are supported when the type is multiple
| confirm-text | Custom confirm text | _{ disabled: boolean }_ |
| top-info | Custom top info of day | _day: Day_ |
| bottom-info | Custom bottom info of day | _day: Day_ |
| text | Custom text of day | _day: Day_ |
| prev-month | Custom previous month button | _{ disabled: boolean }_ |
| prev-year | Custom previous year button | _{ disabled: boolean }_ |
| next-month | Custom next month button | _{ disabled: boolean }_ |

View File

@ -359,6 +359,7 @@ export default {
| confirm-text | 自定义确认按钮的内容 | _{ disabled: boolean }_ |
| top-info | 自定义日期上方的提示信息 | _day: Day_ |
| bottom-info | 自定义日期下方的提示信息 | _day: Day_ |
| text | 自定义日期内容 | _day: Day_ |
| prev-month | 自定义上个月按钮 | _{ disabled: boolean }_ |
| prev-year | 自定义上一年按钮 | _{ disabled: boolean }_ |
| next-month | 自定义下个月按钮 | _{ disabled: boolean }_ |

View File

@ -874,7 +874,7 @@ exports[`should render title、footer、subtitle slot correctly 1`] = `
</div>
`;
exports[`should render top-info and bottom-info slot correctly 1`] = `
exports[`should render top-info, bottom-info and text slot correctly 1`] = `
<div
role="gridcell"
style="margin-left: 71.42857142857143%;"
@ -883,7 +883,7 @@ exports[`should render top-info and bottom-info slot correctly 1`] = `
<div class="van-calendar__top-info">
top: 1
</div>
1
text: 1
<div class="van-calendar__bottom-info">
bottom: 1
</div>

View File

@ -605,7 +605,7 @@ test('close event', async () => {
expect(onClose).toHaveBeenCalledTimes(1);
});
test('should render top-info and bottom-info slot correctly', async () => {
test('should render top-info, bottom-info and text slot correctly', async () => {
const wrapper = mount(Calendar, {
props: {
minDate,
@ -617,6 +617,7 @@ test('should render top-info and bottom-info slot correctly', async () => {
slots: {
'top-info': (item) => 'top: ' + item.text,
'bottom-info': (item) => 'bottom: ' + item.text,
text: (item) => 'text: ' + item.text,
},
});