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.

178 lines
4.4 KiB

import React from 'react';
9 years ago
import { PropTypes } from 'react';
import moment from 'moment';
import FullCalendar from 'rc-calendar/lib/FullCalendar';
import defaultLocale from './locale/zh_CN';
import { PREFIX_CLS } from './Constants';
9 years ago
import Header from './Header';
import assign from 'object-assign';
function noop() { return null; }
function zerofixed(v) {
if (v < 10) {
return `0${v}`;
}
return `${v}`;
}
export interface CalendarContext {
antLocale?: {
Calendar?: any
};
}
export interface CalendarProps {
prefixCls?: string;
className?: string;
value?: moment.Moment;
defaultValue?: moment.Moment;
mode?: 'month' | 'year';
fullscreen?: boolean;
dateCellRender?: (date: moment.Moment) => React.ReactNode;
monthCellRender?: (date: moment.Moment) => React.ReactNode;
locale?: any;
style?: React.CSSProperties;
onPanelChange?: (date: moment.Moment, mode: string) => void;
}
export default class Calendar extends React.Component<CalendarProps, any> {
static defaultProps = {
monthCellRender: noop,
dateCellRender: noop,
locale: {},
fullscreen: true,
prefixCls: PREFIX_CLS,
onPanelChange: noop,
mode: 'month',
};
static propTypes = {
monthCellRender: PropTypes.func,
dateCellRender: PropTypes.func,
fullscreen: PropTypes.bool,
locale: PropTypes.object,
prefixCls: PropTypes.string,
className: PropTypes.string,
style: PropTypes.object,
onPanelChange: PropTypes.func,
value: PropTypes.object,
};
static contextTypes = {
antLocale: PropTypes.object,
};
context: CalendarContext;
9 years ago
constructor(props) {
9 years ago
super(props);
9 years ago
this.state = {
value: props.value || props.defaultValue || moment(),
9 years ago
mode: props.mode,
9 years ago
};
}
componentWillReceiveProps(nextProps) {
if ('value' in nextProps) {
this.setState({
value: nextProps.value,
});
}
}
getLocale = () => {
const props = this.props;
const context = this.context;
let locale = defaultLocale;
if (context && context.antLocale && context.antLocale.Calendar) {
locale = context.antLocale.Calendar;
}
// 统一合并为完整的 Locale
const result = assign({}, locale, props.locale);
result.lang = assign({}, locale.lang, props.locale.lang);
return result;
}
monthCellRender = (value) => {
9 years ago
const prefixCls = this.props.prefixCls;
return (
<div className={`${prefixCls}-month`}>
<div className={`${prefixCls}-value`}>
{value.localeData().monthsShort(value)}
</div>
<div className={`${prefixCls}-content`}>
{this.props.monthCellRender(value)}
</div>
</div>
);
}
dateCellRender = (value) => {
9 years ago
const prefixCls = this.props.prefixCls;
return (
<div className={`${prefixCls}-date`}>
<div className={`${prefixCls}-value`}>
{zerofixed(value.date())}
</div>
<div className={`${prefixCls}-content`}>
{this.props.dateCellRender(value)}
</div>
</div>
);
}
setValue = (value) => {
if (!('value' in this.props) && this.state.value !== value) {
9 years ago
this.setState({ value });
}
this.props.onPanelChange(value, this.state.mode);
9 years ago
}
setType = (type) => {
9 years ago
const mode = (type === 'date') ? 'month' : 'year';
if (this.state.mode !== mode) {
this.setState({ mode });
this.props.onPanelChange(this.state.value, mode);
}
9 years ago
}
render() {
const props = this.props;
const { value, mode } = this.state;
const { prefixCls, style, className, fullscreen } = props;
9 years ago
const type = (mode === 'year') ? 'month' : 'date';
const locale = this.getLocale();
let cls = className || '';
if (fullscreen) {
cls += (` ${prefixCls}-fullscreen`);
}
9 years ago
return (
<div className={cls} style={style}>
9 years ago
<Header
9 years ago
fullscreen={fullscreen}
9 years ago
type={type}
value={value}
9 years ago
locale={locale.lang}
prefixCls={prefixCls}
onTypeChange={this.setType}
onValueChange={this.setValue}
/>
9 years ago
<FullCalendar
{...props}
Select={noop}
9 years ago
locale={locale.lang}
9 years ago
type={type}
prefixCls={prefixCls}
9 years ago
showHeader={false}
value={value}
monthCellRender={this.monthCellRender}
dateCellRender={this.dateCellRender}
/>
9 years ago
</div>
);
}
}