You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
3.3 KiB

import React, {PropTypes, Component} from 'react';
9 years ago
import GregorianCalendar from 'gregorian-calendar';
import CalendarLocale from 'rc-calendar/lib/locale/zh_CN';
import FullCalendar from 'rc-calendar/lib/FullCalendar';
9 years ago
import {PREFIX_CLS} from './Constants';
9 years ago
import Header from './Header';
function noop () { return null; }
function zerofixed (v) {
if (v < 10) return '0' + v;
return v + '';
}
class Calendar extends Component {
9 years ago
constructor(props) {
super();
this.state = {
value: this.parseDateFromValue(props.value),
9 years ago
type: props.type,
};
}
parseDateFromValue(value) {
const date = new GregorianCalendar();
date.setTime(value);
return date;
}
monthCellRender(value, locale) {
9 years ago
const prefixCls = this.props.prefixCls;
const month = value.getMonth();
return <div className={`${prefixCls}-fullscreen-month`}>
<span>{locale.format.shortMonths[month]}</span>
{this.props.monthCellRender(value)}
</div>;
}
fullscreenDateCellRender(value) {
9 years ago
const prefixCls = this.props.prefixCls;
return <span className={`${prefixCls}-fullscreen-date`}>
<span>{ zerofixed(value.getDayOfMonth()) }</span>
{this.props.dateCellRender(value)}
</span>;
}
dateCellRender(value) {
9 years ago
const prefixCls = this.props.prefixCls;
return <div style={{ position: 'relative' }}>
<span className={`${prefixCls}-date ${prefixCls}-notes-date`}>
{zerofixed(value.getDayOfMonth())}
</span>
{this.props.dateCellRender(value)}
</div>;
}
9 years ago
setValue(value) {
9 years ago
if (this.state.value !== value) {
this.setState({ value });
this.props.onChange(value);
}
9 years ago
}
setType(type) {
9 years ago
const oldType = this.state.type;
9 years ago
this.setState({ type });
9 years ago
this.props.onTypeChange(type, oldType);
9 years ago
}
render() {
const props = this.props;
9 years ago
const {value, type} = this.state;
const {locale, prefixCls, style, className, fullscreen} = props;
const dateCellRender = fullscreen
? this.fullscreenDateCellRender : this.dateCellRender;
9 years ago
return (
<div className={prefixCls + '-wrapper' + (className ? ' ' + className : '') + (fullscreen ? ' ' + prefixCls + '-wrapper-fullscreen' : '' )} style={style}>
<Header
9 years ago
fullscreen={fullscreen}
9 years ago
type={type}
value={value}
locale={locale}
prefixCls={`${prefixCls}`}
onTypeChange={this.setType.bind(this)}
onValueChange={this.setValue.bind(this)}/>
<FullCalendar
{...props}
type={type}
prefixCls={`${prefixCls}`}
showHeader={false}
value={value}
monthCellRender={ this.monthCellRender.bind(this) }
dateCellRender={ dateCellRender.bind(this) } />
9 years ago
</div>
);
}
}
9 years ago
Calendar.propTypes = {
monthCellRender: PropTypes.func,
dateCellRender: PropTypes.func,
fullscreen: PropTypes.bool,
locale: PropTypes.object,
9 years ago
prefixCls: PropTypes.string,
9 years ago
className: PropTypes.string,
style: PropTypes.object,
9 years ago
onChange: PropTypes.func,
value: PropTypes.instanceOf(Date),
9 years ago
onTypeChange: PropTypes.func,
};
Calendar.defaultProps = {
monthCellRender: noop,
dateCellRender: noop,
locale: CalendarLocale,
9 years ago
fullscreen: true,
9 years ago
prefixCls: PREFIX_CLS,
9 years ago
onChange: noop,
9 years ago
onTypeChange: noop,
9 years ago
type: 'date',
value: Date.now(),
};
export default Calendar;