ant-design/components/calendar/index.jsx

134 lines
3.5 KiB
React
Raw Normal View History

2016-01-05 14:42:06 +08:00
import React, { PropTypes, Component } from 'react';
2015-11-12 21:24:53 +08:00
import GregorianCalendar from 'gregorian-calendar';
2015-11-16 20:24:37 +08:00
import zhCN from './locale/zh_CN';
2015-11-11 00:15:12 +08:00
import FullCalendar from 'rc-calendar/lib/FullCalendar';
2016-01-05 14:42:06 +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; }
2015-11-11 00:15:12 +08:00
function zerofixed(v) {
if (v < 10) return `0${v}`;
return `${v}`;
2015-11-11 00:15:12 +08:00
}
2015-11-13 19:56:34 +08:00
class Calendar extends Component {
2015-11-12 21:24:53 +08:00
constructor(props) {
2015-11-16 20:10:29 +08:00
super(props);
2015-11-12 21:24:53 +08:00
this.state = {
2015-11-15 21:40:01 +08:00
value: this.parseDateFromValue(props.value || new Date()),
2015-11-13 20:32:54 +08:00
mode: props.mode,
2015-11-12 21:24:53 +08:00
};
}
parseDateFromValue(value) {
2015-11-16 20:10:29 +08:00
const date = new GregorianCalendar(this.props.locale);
date.setTime(+value);
return date;
}
componentWillReceiveProps(nextProps) {
if ('value' in nextProps) {
this.setState({
value: this.parseDateFromValue(nextProps.value)
});
}
}
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();
return (
<div className={`${prefixCls}-month`}>
<div className={`${prefixCls}-value`}>
{locale.format.shortMonths[month]}
</div>
<div className={`${prefixCls}-content`}>
{this.props.monthCellRender(value)}
</div>
2015-11-13 22:34:49 +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;
return (
<div className={`${prefixCls}-date`}>
<div className={`${prefixCls}-value`}>
{zerofixed(value.getDayOfMonth())}
</div>
<div className={`${prefixCls}-content`}>
{this.props.dateCellRender(value)}
</div>
2015-11-13 22:34:49 +08:00
</div>
);
2015-11-11 00:15:12 +08:00
}
2015-11-12 21:24:53 +08:00
setValue(value) {
2015-11-15 21:40:01 +08:00
if (!('value' in this.props) && this.state.value !== value) {
2015-11-12 23:51:38 +08:00
this.setState({ value });
}
2015-11-15 21:40:01 +08:00
this.props.onPanelChange(value, this.state.mode);
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;
2016-01-05 14:42:06 +08:00
const { value, mode } = this.state;
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-15 21:40:01 +08:00
let cls = className || '';
if (fullscreen) {
cls += (` ${prefixCls}-fullscreen`);
2015-11-15 21:40:01 +08:00
}
2015-11-12 21:24:53 +08:00
return (
2015-11-15 21:40:01 +08:00
<div className={cls} 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}
2015-11-16 20:10:29 +08:00
locale={locale.lang}
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}
2015-12-27 23:39:33 +08:00
Select={noop}
2015-11-16 20:10:29 +08:00
locale={locale.lang}
2015-11-12 21:24:53 +08:00
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-16 20:24:37 +08:00
locale: zhCN,
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',
2015-11-11 00:15:12 +08:00
};
2015-11-13 19:56:34 +08:00
export default Calendar;