ant-design/components/calendar/index.jsx

117 lines
3.2 KiB
React
Raw Normal View History

2015-11-11 00:15:12 +08:00
import React, {PropTypes, Component} from 'react';
2015-11-12 21:24:53 +08:00
import GregorianCalendar from 'gregorian-calendar';
2015-11-11 00:15:12 +08:00
import CalendarLocale from 'rc-calendar/lib/locale/zh_CN';
import FullCalendar from 'rc-calendar/lib/FullCalendar';
2015-11-11 12:22:14 +08:00
import {PREFIX_CLS} from './Constants';
2015-11-12 21:24:53 +08:00
import Header from './Header';
2015-11-11 00:15:12 +08:00
function noop () { return null; }
function zerofixed (v) {
if (v < 10) return '0' + v;
return v + '';
}
2015-11-13 19:56:34 +08:00
class Calendar extends Component {
2015-11-12 21:24:53 +08:00
constructor(props) {
super();
this.state = {
value: this.parseDateFromValue(props.value),
2015-11-13 20:32:54 +08:00
mode: props.mode,
2015-11-12 21:24:53 +08:00
};
}
parseDateFromValue(value) {
const date = new GregorianCalendar();
date.setTime(value);
return date;
}
2015-11-11 00:15:12 +08:00
monthCellRender(value, locale) {
2015-11-11 12:22:14 +08:00
const prefixCls = this.props.prefixCls;
2015-11-13 19:56:34 +08:00
const month = value.getMonth();
2015-11-13 21:24:25 +08:00
return <div className={`${prefixCls}-month`}>
<div className={`${prefixCls}-value`}>
{locale.format.shortMonths[month]}
</div>
2015-11-13 22:34:49 +08:00
<div className={`${prefixCls}-content`}>
{this.props.monthCellRender(value)}
</div>
2015-11-13 19:56:34 +08:00
</div>;
2015-11-11 00:15:12 +08:00
}
dateCellRender(value) {
2015-11-11 12:22:14 +08:00
const prefixCls = this.props.prefixCls;
2015-11-13 21:24:25 +08:00
return <div className={`${prefixCls}-date`}>
<div className={`${prefixCls}-value`}>
2015-11-13 19:56:34 +08:00
{zerofixed(value.getDayOfMonth())}
2015-11-13 21:24:25 +08:00
</div>
2015-11-13 22:34:49 +08:00
<div className={`${prefixCls}-content`}>
{this.props.dateCellRender(value)}
</div>
2015-11-13 19:56:34 +08:00
</div>;
2015-11-11 00:15:12 +08:00
}
2015-11-12 21:24:53 +08:00
setValue(value) {
2015-11-12 23:51:38 +08:00
if (this.state.value !== value) {
this.setState({ value });
2015-11-13 20:32:54 +08:00
this.props.onPanelChange(value, this.state.mode);
2015-11-12 23:51:38 +08:00
}
2015-11-12 21:24:53 +08:00
}
setType(type) {
2015-11-13 20:32:54 +08:00
const mode = (type === 'date') ? 'month' : 'year';
if (this.state.mode !== mode) {
this.setState({ mode });
this.props.onPanelChange(this.state.value, mode);
}
2015-11-12 21:24:53 +08:00
}
2015-11-11 00:15:12 +08:00
render() {
const props = this.props;
2015-11-13 20:32:54 +08:00
const {value, mode} = this.state;
2015-11-13 19:19:08 +08:00
const {locale, prefixCls, style, className, fullscreen} = props;
2015-11-13 20:32:54 +08:00
const type = (mode === 'year') ? 'month' : 'date';
2015-11-11 00:15:12 +08:00
2015-11-12 21:24:53 +08:00
return (
2015-11-13 21:24:25 +08:00
<div className={(className ? className : '') + ' ' + (fullscreen ? prefixCls + '-fullscreen' : '' )} style={style}>
2015-11-12 21:24:53 +08:00
<Header
2015-11-12 23:51:38 +08:00
fullscreen={fullscreen}
2015-11-12 21:24:53 +08:00
type={type}
value={value}
locale={locale}
2015-11-13 21:24:25 +08:00
prefixCls={prefixCls}
2015-11-12 21:24:53 +08:00
onTypeChange={this.setType.bind(this)}
onValueChange={this.setValue.bind(this)}/>
<FullCalendar
{...props}
type={type}
2015-11-13 21:24:25 +08:00
prefixCls={prefixCls}
2015-11-12 21:24:53 +08:00
showHeader={false}
value={value}
2015-11-13 21:24:25 +08:00
monthCellRender={this.monthCellRender.bind(this)}
dateCellRender={this.dateCellRender.bind(this)} />
2015-11-12 21:24:53 +08:00
</div>
);
2015-11-11 00:15:12 +08:00
}
}
2015-11-13 18:20:22 +08:00
2015-11-13 19:56:34 +08:00
Calendar.propTypes = {
2015-11-11 00:15:12 +08:00
monthCellRender: PropTypes.func,
dateCellRender: PropTypes.func,
fullscreen: PropTypes.bool,
locale: PropTypes.object,
2015-11-11 12:22:14 +08:00
prefixCls: PropTypes.string,
2015-11-12 21:24:53 +08:00
className: PropTypes.string,
style: PropTypes.object,
2015-11-13 20:32:54 +08:00
onPanelChange: PropTypes.func,
value: PropTypes.instanceOf(Date),
2015-11-11 00:15:12 +08:00
};
2015-11-13 19:19:08 +08:00
2015-11-13 19:56:34 +08:00
Calendar.defaultProps = {
monthCellRender: noop,
dateCellRender: noop,
2015-11-11 00:15:12 +08:00
locale: CalendarLocale,
2015-11-13 18:20:22 +08:00
fullscreen: true,
2015-11-11 12:22:14 +08:00
prefixCls: PREFIX_CLS,
2015-11-13 20:32:54 +08:00
onPanelChange: noop,
mode: 'month',
value: new Date(),
2015-11-11 00:15:12 +08:00
};
2015-11-13 19:56:34 +08:00
export default Calendar;