mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Calendar): support text
slot (#13127)
Co-authored-by: inottn <inottn@outlook.com>
This commit is contained in:
parent
1388dd939a
commit
2e58a74d2c
@ -518,7 +518,12 @@ export default defineComponent({
|
|||||||
const showMonthTitle = index !== 0 || !props.showSubtitle;
|
const showMonthTitle = index !== 0 || !props.showSubtitle;
|
||||||
return (
|
return (
|
||||||
<CalendarMonth
|
<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)}
|
ref={canSwitch.value ? currentMonthRef : setMonthRefs(index)}
|
||||||
date={date}
|
date={date}
|
||||||
currentDate={currentDate.value}
|
currentDate={currentDate.value}
|
||||||
|
@ -95,11 +95,15 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const renderText = () => {
|
||||||
|
return slots.text ? slots.text(props.item) : props.item.text;
|
||||||
|
};
|
||||||
|
|
||||||
const renderContent = () => {
|
const renderContent = () => {
|
||||||
const { item, color, rowHeight } = props;
|
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') {
|
if (type === 'selected') {
|
||||||
return (
|
return (
|
||||||
|
@ -261,7 +261,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
const renderDay = (item: CalendarDayItem, index: number) => (
|
const renderDay = (item: CalendarDayItem, index: number) => (
|
||||||
<CalendarDay
|
<CalendarDay
|
||||||
v-slots={pick(slots, ['top-info', 'bottom-info'])}
|
v-slots={pick(slots, ['top-info', 'bottom-info', 'text'])}
|
||||||
item={item}
|
item={item}
|
||||||
index={index}
|
index={index}
|
||||||
color={props.color}
|
color={props.color}
|
||||||
|
@ -353,6 +353,7 @@ Following props are supported when the type is multiple
|
|||||||
| confirm-text | Custom confirm text | _{ disabled: boolean }_ |
|
| confirm-text | Custom confirm text | _{ disabled: boolean }_ |
|
||||||
| top-info | Custom top info of day | _day: Day_ |
|
| top-info | Custom top info of day | _day: Day_ |
|
||||||
| bottom-info | Custom bottom 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-month | Custom previous month button | _{ disabled: boolean }_ |
|
||||||
| prev-year | Custom previous year button | _{ disabled: boolean }_ |
|
| prev-year | Custom previous year button | _{ disabled: boolean }_ |
|
||||||
| next-month | Custom next month button | _{ disabled: boolean }_ |
|
| next-month | Custom next month button | _{ disabled: boolean }_ |
|
||||||
|
@ -359,6 +359,7 @@ export default {
|
|||||||
| confirm-text | 自定义确认按钮的内容 | _{ disabled: boolean }_ |
|
| confirm-text | 自定义确认按钮的内容 | _{ disabled: boolean }_ |
|
||||||
| top-info | 自定义日期上方的提示信息 | _day: Day_ |
|
| top-info | 自定义日期上方的提示信息 | _day: Day_ |
|
||||||
| bottom-info | 自定义日期下方的提示信息 | _day: Day_ |
|
| bottom-info | 自定义日期下方的提示信息 | _day: Day_ |
|
||||||
|
| text | 自定义日期内容 | _day: Day_ |
|
||||||
| prev-month | 自定义上个月按钮 | _{ disabled: boolean }_ |
|
| prev-month | 自定义上个月按钮 | _{ disabled: boolean }_ |
|
||||||
| prev-year | 自定义上一年按钮 | _{ disabled: boolean }_ |
|
| prev-year | 自定义上一年按钮 | _{ disabled: boolean }_ |
|
||||||
| next-month | 自定义下个月按钮 | _{ disabled: boolean }_ |
|
| next-month | 自定义下个月按钮 | _{ disabled: boolean }_ |
|
||||||
|
@ -874,7 +874,7 @@ exports[`should render title、footer、subtitle slot correctly 1`] = `
|
|||||||
</div>
|
</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
|
<div
|
||||||
role="gridcell"
|
role="gridcell"
|
||||||
style="margin-left: 71.42857142857143%;"
|
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">
|
<div class="van-calendar__top-info">
|
||||||
top: 1
|
top: 1
|
||||||
</div>
|
</div>
|
||||||
1
|
text: 1
|
||||||
<div class="van-calendar__bottom-info">
|
<div class="van-calendar__bottom-info">
|
||||||
bottom: 1
|
bottom: 1
|
||||||
</div>
|
</div>
|
||||||
|
@ -605,7 +605,7 @@ test('close event', async () => {
|
|||||||
expect(onClose).toHaveBeenCalledTimes(1);
|
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, {
|
const wrapper = mount(Calendar, {
|
||||||
props: {
|
props: {
|
||||||
minDate,
|
minDate,
|
||||||
@ -617,6 +617,7 @@ test('should render top-info and bottom-info slot correctly', async () => {
|
|||||||
slots: {
|
slots: {
|
||||||
'top-info': (item) => 'top: ' + item.text,
|
'top-info': (item) => 'top: ' + item.text,
|
||||||
'bottom-info': (item) => 'bottom: ' + item.text,
|
'bottom-info': (item) => 'bottom: ' + item.text,
|
||||||
|
text: (item) => 'text: ' + item.text,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user