mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
284 lines
5.9 KiB
JavaScript
284 lines
5.9 KiB
JavaScript
import { createNamespace } from '../../utils';
|
|
import {
|
|
t,
|
|
bem,
|
|
compareDay,
|
|
ROW_HEIGHT,
|
|
getPrevDay,
|
|
getNextDay,
|
|
formatMonthTitle,
|
|
} from '../utils';
|
|
import { getMonthEndDay } from '../../datetime-picker/utils';
|
|
|
|
const [createComponent] = createNamespace('calendar-month');
|
|
|
|
export default createComponent({
|
|
props: {
|
|
date: Date,
|
|
type: String,
|
|
color: String,
|
|
minDate: Date,
|
|
maxDate: Date,
|
|
showMark: Boolean,
|
|
showTitle: Boolean,
|
|
rowHeight: [Number, String],
|
|
formatter: Function,
|
|
currentDate: [Date, Array],
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
visible: false,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
title() {
|
|
return formatMonthTitle(this.date);
|
|
},
|
|
|
|
offset() {
|
|
return this.date.getDay();
|
|
},
|
|
|
|
totalDay() {
|
|
return getMonthEndDay(this.date.getFullYear(), this.date.getMonth() + 1);
|
|
},
|
|
|
|
monthStyle() {
|
|
if (!this.visible) {
|
|
const padding =
|
|
Math.ceil((this.totalDay + this.offset) / 7) * this.rowHeight;
|
|
|
|
return {
|
|
paddingBottom: `${padding}px`,
|
|
};
|
|
}
|
|
},
|
|
|
|
days() {
|
|
const days = [];
|
|
const year = this.date.getFullYear();
|
|
const month = this.date.getMonth();
|
|
|
|
for (let day = 1; day <= this.totalDay; day++) {
|
|
const date = new Date(year, month, day);
|
|
const type = this.getDayType(date);
|
|
|
|
let config = {
|
|
date,
|
|
type,
|
|
text: day,
|
|
bottomInfo: this.getBottomInfo(type),
|
|
};
|
|
|
|
if (this.formatter) {
|
|
config = this.formatter(config);
|
|
}
|
|
|
|
days.push(config);
|
|
}
|
|
|
|
return days;
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
this.height = this.$el.getBoundingClientRect().height;
|
|
},
|
|
|
|
methods: {
|
|
scrollIntoView() {
|
|
this.$refs.days.scrollIntoView();
|
|
},
|
|
|
|
getMultipleDayType(day) {
|
|
const isSelected = date =>
|
|
this.currentDate.some(item => compareDay(item, date) === 0);
|
|
|
|
if (isSelected(day)) {
|
|
const prevDay = getPrevDay(day);
|
|
const nextDay = getNextDay(day);
|
|
const prevSelected = isSelected(prevDay);
|
|
const nextSelected = isSelected(nextDay);
|
|
|
|
if (prevSelected && nextSelected) {
|
|
return 'multiple-middle';
|
|
}
|
|
|
|
if (prevSelected) {
|
|
return 'end';
|
|
}
|
|
|
|
return nextSelected ? 'start' : 'multiple-selected';
|
|
}
|
|
|
|
return '';
|
|
},
|
|
|
|
getRangeDayType(day) {
|
|
const [startDay, endDay] = this.currentDate;
|
|
|
|
if (!startDay) {
|
|
return;
|
|
}
|
|
|
|
const compareToStart = compareDay(day, startDay);
|
|
if (compareToStart === 0) {
|
|
return 'start';
|
|
}
|
|
|
|
if (!endDay) {
|
|
return;
|
|
}
|
|
|
|
const compareToEnd = compareDay(day, endDay);
|
|
if (compareToEnd === 0) {
|
|
return 'end';
|
|
}
|
|
|
|
if (compareToStart > 0 && compareToEnd < 0) {
|
|
return 'middle';
|
|
}
|
|
},
|
|
|
|
getDayType(day) {
|
|
const { type, minDate, maxDate, currentDate } = this;
|
|
|
|
if (compareDay(day, minDate) < 0 || compareDay(day, maxDate) > 0) {
|
|
return 'disabled';
|
|
}
|
|
|
|
if (type === 'single') {
|
|
return compareDay(day, currentDate) === 0 ? 'selected' : '';
|
|
}
|
|
|
|
if (type === 'multiple') {
|
|
return this.getMultipleDayType(day);
|
|
}
|
|
|
|
/* istanbul ignore else */
|
|
if (type === 'range') {
|
|
return this.getRangeDayType(day);
|
|
}
|
|
},
|
|
|
|
getBottomInfo(type) {
|
|
if (this.type === 'range') {
|
|
if (type === 'start') {
|
|
return t('start');
|
|
}
|
|
if (type === 'end') {
|
|
return t('end');
|
|
}
|
|
}
|
|
},
|
|
|
|
getDayStyle(type, index) {
|
|
const style = {};
|
|
|
|
if (index === 0) {
|
|
style.marginLeft = `${(100 * this.offset) / 7}%`;
|
|
}
|
|
|
|
if (this.rowHeight !== ROW_HEIGHT) {
|
|
style.height = `${this.rowHeight}px`;
|
|
}
|
|
|
|
if (this.color) {
|
|
if (type === 'start' || type === 'end') {
|
|
style.background = this.color;
|
|
} else if (type === 'middle') {
|
|
style.color = this.color;
|
|
}
|
|
}
|
|
|
|
return style;
|
|
},
|
|
|
|
genTitle() {
|
|
if (this.showTitle) {
|
|
return <div class={bem('month-title')}>{this.title}</div>;
|
|
}
|
|
},
|
|
|
|
genMark() {
|
|
if (this.showMark) {
|
|
return <div class={bem('month-mark')}>{this.date.getMonth() + 1}</div>;
|
|
}
|
|
},
|
|
|
|
genDays() {
|
|
if (this.visible) {
|
|
return (
|
|
<div ref="days" role="grid" class={bem('days')}>
|
|
{this.genMark()}
|
|
{this.days.map(this.genDay)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return <div ref="days" />;
|
|
},
|
|
|
|
genDay(item, index) {
|
|
const { type, topInfo, bottomInfo } = item;
|
|
const style = this.getDayStyle(type, index);
|
|
const disabled = type === 'disabled';
|
|
|
|
const onClick = () => {
|
|
if (!disabled) {
|
|
this.$emit('click', item);
|
|
}
|
|
};
|
|
|
|
const TopInfo = topInfo && <div class={bem('top-info')}>{topInfo}</div>;
|
|
|
|
const BottomInfo = bottomInfo && (
|
|
<div class={bem('bottom-info')}>{bottomInfo}</div>
|
|
);
|
|
|
|
if (type === 'selected') {
|
|
return (
|
|
<div
|
|
role="gridcell"
|
|
style={style}
|
|
class={[bem('day'), item.className]}
|
|
tabindex={disabled ? null : -1}
|
|
onClick={onClick}
|
|
>
|
|
<div class={bem('selected-day')} style={{ background: this.color }}>
|
|
{TopInfo}
|
|
{item.text}
|
|
{BottomInfo}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
role="gridcell"
|
|
style={style}
|
|
class={[bem('day', type), item.className]}
|
|
tabindex={disabled ? null : -1}
|
|
onClick={onClick}
|
|
>
|
|
{TopInfo}
|
|
{item.text}
|
|
{BottomInfo}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
|
|
render() {
|
|
return (
|
|
<div class={bem('month')} style={this.monthStyle}>
|
|
{this.genTitle()}
|
|
{this.genDays()}
|
|
</div>
|
|
);
|
|
},
|
|
});
|