import React from 'react'; import { PropTypes } from 'react'; import moment from 'moment'; import FullCalendar from 'rc-calendar/lib/FullCalendar'; import { PREFIX_CLS } from './Constants'; import Header from './Header'; import { getComponentLocale, getLocaleCode } from '../_util/getLocale'; declare const require: Function; function noop() { return null; } function zerofixed(v) { if (v < 10) { return `0${v}`; } return `${v}`; } export interface CalendarContext { antLocale?: { Calendar?: any }; } export type CalendarMode = 'month' | 'year'; export interface CalendarProps { prefixCls?: string; className?: string; value?: moment.Moment; defaultValue?: moment.Moment; mode?: CalendarMode; fullscreen?: boolean; dateCellRender?: (date: moment.Moment) => React.ReactNode; monthCellRender?: (date: moment.Moment) => React.ReactNode; locale?: any; style?: React.CSSProperties; onPanelChange?: (date?: moment.Moment, mode?: CalendarMode) => void; } export interface CalendarState { value?: moment.Moment; mode?: CalendarMode; } export default class Calendar extends React.Component { static defaultProps = { locale: {}, fullscreen: true, prefixCls: PREFIX_CLS, 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; constructor(props, context) { super(props, context); // Make sure that moment locale had be set correctly. getComponentLocale(props, context, 'Calendar', () => require('./locale/zh_CN')); const value = props.value || props.defaultValue || moment(); if (!moment.isMoment(value)) { throw new Error( 'The value/defaultValue of Calendar must be a moment object after `antd@2.0`, ' + 'see: http://u.ant.design/calendar-value' ); } this.state = { value, mode: props.mode, }; } componentWillReceiveProps(nextProps: CalendarProps) { if ('value' in nextProps) { this.setState({ value: nextProps.value, }); } } monthCellRender = (value) => { const { prefixCls, monthCellRender = noop as Function } = this.props; return (
{value.localeData().monthsShort(value)}
{monthCellRender(value)}
); } dateCellRender = (value) => { const { prefixCls, dateCellRender = noop as Function } = this.props; return (
{zerofixed(value.date())}
{dateCellRender(value)}
); } setValue = (value) => { if (!('value' in this.props) && this.state.value !== value) { this.setState({ value }); } const onPanelChange = this.props.onPanelChange; if (onPanelChange) { onPanelChange(value, this.state.mode); } } setType = (type) => { const mode = (type === 'date') ? 'month' : 'year'; if (this.state.mode !== mode) { this.setState({ mode }); const onPanelChange = this.props.onPanelChange; if (onPanelChange) { onPanelChange(this.state.value, mode); } } } render() { const { state, props, context } = this; const { value, mode } = state; const localeCode = getLocaleCode(context); if (value && localeCode) { value.locale(localeCode); } const { prefixCls, style, className, fullscreen } = props; const type = (mode === 'year') ? 'month' : 'date'; const locale = getComponentLocale(props, context, 'Calendar', () => require('./locale/zh_CN')); let cls = className || ''; if (fullscreen) { cls += (` ${prefixCls}-fullscreen`); } return (
); } }