|
|
|
import * as React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import * as moment from 'moment';
|
|
|
|
import FullCalendar from 'rc-calendar/lib/FullCalendar';
|
|
|
|
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
|
|
|
import { PREFIX_CLS } from './Constants';
|
|
|
|
import Header from './Header';
|
|
|
|
import callMoment from '../_util/callMoment';
|
|
|
|
import enUS from './locale/en_US';
|
|
|
|
|
|
|
|
export { HeaderProps } from './Header';
|
|
|
|
|
|
|
|
function noop() { return null; }
|
|
|
|
|
|
|
|
function zerofixed(v: number) {
|
|
|
|
if (v < 10) {
|
|
|
|
return `0${v}`;
|
|
|
|
}
|
|
|
|
return `${v}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
dateFullCellRender?: (date: moment.Moment) => React.ReactNode;
|
|
|
|
monthFullCellRender?: (date: moment.Moment) => React.ReactNode;
|
|
|
|
locale?: any;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
onPanelChange?: (date?: moment.Moment, mode?: CalendarMode) => void;
|
|
|
|
onSelect?: (date?: moment.Moment) => void;
|
|
|
|
disabledDate?: (current: moment.Moment) => boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CalendarState {
|
|
|
|
value: moment.Moment;
|
|
|
|
mode?: CalendarMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class Calendar extends React.Component<CalendarProps, CalendarState> {
|
|
|
|
static defaultProps = {
|
|
|
|
locale: {},
|
|
|
|
fullscreen: true,
|
|
|
|
prefixCls: PREFIX_CLS,
|
|
|
|
mode: 'month',
|
|
|
|
onSelect: noop,
|
|
|
|
onPanelChange: noop,
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
monthCellRender: PropTypes.func,
|
|
|
|
dateCellRender: PropTypes.func,
|
|
|
|
monthFullCellRender: PropTypes.func,
|
|
|
|
dateFullCellRender: PropTypes.func,
|
|
|
|
fullscreen: PropTypes.bool,
|
|
|
|
locale: PropTypes.object,
|
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
className: PropTypes.string,
|
|
|
|
style: PropTypes.object,
|
|
|
|
onPanelChange: PropTypes.func,
|
|
|
|
value: PropTypes.object,
|
|
|
|
onSelect: PropTypes.func,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: CalendarProps) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
const value = props.value || props.defaultValue || callMoment(moment);
|
|
|
|
if (!moment.isMoment(value)) {
|
|
|
|
throw new Error(
|
|
|
|
'The value/defaultValue of Calendar must be a moment object after `antd@2.0`, ' +
|
|
|
|
'see: https://u.ant.design/calendar-value',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
this.state = {
|
|
|
|
value,
|
|
|
|
mode: props.mode,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps(nextProps: CalendarProps) {
|
|
|
|
if ('value' in nextProps) {
|
|
|
|
this.setState({
|
|
|
|
value: nextProps.value!,
|
|
|
|
});
|
|
|
|
|