ant-design/components/calendar/Header.tsx

131 lines
3.5 KiB
TypeScript
Raw Normal View History

import React from 'react';
2016-10-24 12:04:26 +08:00
import moment from 'moment';
2016-01-05 14:42:06 +08:00
import { PREFIX_CLS } from './Constants';
2015-11-12 21:24:53 +08:00
import Select from '../select';
2016-01-05 14:42:06 +08:00
import { Group, Button } from '../radio';
2016-04-27 11:23:18 +08:00
const Option = Select.Option;
2015-11-12 21:24:53 +08:00
export interface HeaderProps {
prefixCls?: string;
locale?: any;
fullscreen?: boolean;
yearSelectOffset?: number;
yearSelectTotal?: number;
type?: string;
onValueChange?: (value) => void;
onTypeChange?: (type: string) => void;
2016-08-24 16:09:55 +08:00
value: any;
}
export default class Header extends React.Component<HeaderProps, any> {
static defaultProps = {
prefixCls: `${PREFIX_CLS}-header`,
yearSelectOffset: 10,
yearSelectTotal: 20,
2016-07-13 11:14:24 +08:00
};
2015-11-12 21:24:53 +08:00
getYearSelectElement(year) {
2016-01-05 14:42:06 +08:00
const { yearSelectOffset, yearSelectTotal, locale, prefixCls, fullscreen } = this.props;
const start = year - (yearSelectOffset as number);
const end = start + (yearSelectTotal as number);
2015-11-12 21:24:53 +08:00
const suffix = locale.year === '年' ? '年' : '';
2016-10-24 12:04:26 +08:00
const options: React.ReactElement<any>[] = [];
2015-11-12 21:24:53 +08:00
for (let index = start; index < end; index++) {
2016-01-05 14:42:06 +08:00
options.push(<Option key={`${index}`}>{index + suffix}</Option>);
2015-11-12 21:24:53 +08:00
}
return (
<Select
2016-10-24 12:04:26 +08:00
size={fullscreen ? 'default' : 'small'}
2015-11-12 21:24:53 +08:00
dropdownMatchSelectWidth={false}
className={`${prefixCls}-year-select`}
onChange={this.onYearChange}
value={String(year)}
>
{options}
2015-11-12 21:24:53 +08:00
</Select>
);
}
2016-10-24 12:04:26 +08:00
getMonthsLocale(value: moment.Moment) {
const current = value.clone();
const localeData = value.localeData();
2016-10-24 12:04:26 +08:00
const months: any[] = [];
for (let i = 0; i < 12; i++) {
current.month(i);
months.push(localeData.monthsShort(current));
}
return months;
}
getMonthSelectElement(month, months) {
2015-11-12 21:24:53 +08:00
const props = this.props;
2016-01-05 14:42:06 +08:00
const { prefixCls, fullscreen } = props;
2016-10-24 12:04:26 +08:00
const options: React.ReactElement<any>[] = [];
2015-11-12 21:24:53 +08:00
for (let index = 0; index < 12; index++) {
options.push(<Option key={`${index}`}>{months[index]}</Option>);
}
return (
<Select
2016-10-24 12:04:26 +08:00
size={fullscreen ? 'default' : 'small'}
2015-11-12 21:24:53 +08:00
dropdownMatchSelectWidth={false}
className={`${prefixCls}-month-select`}
value={String(month)}
onChange={this.onMonthChange}
>
{options}
2015-11-12 21:24:53 +08:00
</Select>
);
}
onYearChange = (year) => {
2015-11-12 21:24:53 +08:00
const newValue = this.props.value.clone();
newValue.year(parseInt(year, 10));
2016-10-24 12:04:26 +08:00
const onValueChange = this.props.onValueChange;
if (onValueChange) {
onValueChange(newValue);
}
2015-11-12 21:24:53 +08:00
}
onMonthChange = (month) => {
2015-11-12 21:24:53 +08:00
const newValue = this.props.value.clone();
newValue.month(parseInt(month, 10));
2016-10-24 12:04:26 +08:00
const onValueChange = this.props.onValueChange;
if (onValueChange) {
onValueChange(newValue);
}
2015-11-12 21:24:53 +08:00
}
onTypeChange = (e) => {
2016-10-24 12:04:26 +08:00
const onTypeChange = this.props.onTypeChange;
if (onTypeChange) {
onTypeChange(e.target.value);
}
2015-11-12 21:24:53 +08:00
}
2015-11-12 21:24:53 +08:00
render() {
2016-08-30 21:30:55 +08:00
const { type, value, prefixCls, locale, fullscreen } = this.props;
const yearSelect = this.getYearSelectElement(value.year());
const monthSelect = type === 'date' ?
this.getMonthSelectElement(value.month(), this.getMonthsLocale(value)) : null;
2016-08-31 15:00:13 +08:00
const size = (fullscreen ? 'default' : 'small') as any;
2015-11-12 21:24:53 +08:00
const typeSwitch = (
2016-08-30 21:30:55 +08:00
<Group onChange={this.onTypeChange} value={type} size={size}>
2015-11-12 21:24:53 +08:00
<Button value="date">{locale.month}</Button>
<Button value="month">{locale.year}</Button>
</Group>
);
return (
<div className={`${prefixCls}-header`}>
{yearSelect}
{monthSelect}
{typeSwitch}
2015-11-12 21:24:53 +08:00
</div>
);
}
}