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.

150 lines
4.6 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 Notes from './Notes';
import NoteList from './NoteList';
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 + '';
}
9 years ago
function getNow() {
const value = new GregorianCalendar();
value.setTime(Date.now());
return value;
}
9 years ago
const MonthCellNoteNum = ({num, prefixCls}) => {
return (
9 years ago
<div className={`${prefixCls}-month`}>
9 years ago
<section>{num}</section>
<span>待办事项数</span>
</div>
);
};
class NoticeCalendar extends Component {
9 years ago
constructor(props) {
super();
this.state = {
value: props.value || getNow(),
type: props.type,
};
}
monthCellRender(value, locale) {
9 years ago
const prefixCls = this.props.prefixCls;
const month = value.getMonth();
const noteNum = this.props.getMonthData(value);
if (noteNum > 0) {
return (
9 years ago
<a className={`${prefixCls}-fullscreen-month`}>
<span>{locale.format.shortMonths[month]}</span>
9 years ago
<MonthCellNoteNum num={noteNum} prefixCls={`${prefixCls}-notes`} />
</a>
);
}
return (
9 years ago
<a className={`${prefixCls}-fullscreen-month`}>{locale.format.shortMonths[month]}</a>
);
}
fullscreenDateCellRender(value) {
9 years ago
const prefixCls = this.props.prefixCls;
9 years ago
let listData = this.props.getDateData(value);
return (
9 years ago
<span className={`${prefixCls}-fullscreen-date`}>
<span>{ zerofixed(value.getDayOfMonth()) }</span>
9 years ago
<div className={`${prefixCls}-note-list-wrapper`}><NoteList listData={listData} /></div>
</span>
);
}
dateCellRender(value) {
9 years ago
const prefixCls = this.props.prefixCls;
const el = (<span className={`${prefixCls}-date ${prefixCls}-notes-date`}>{ zerofixed(value.getDayOfMonth()) }</span>);
9 years ago
const listData = this.props.getDateData(value);
return (
9 years ago
<div style={{ position: 'relative' }}>
{ el }
9 years ago
{ (listData && listData.length > 0) ? <div className={`${prefixCls}-notes-wrapper`}><Notes listData={listData} /></div> : null }
</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
}
onPanelChange(value) {
9 years ago
if (this.state.type === 'month') {
this.setType('date');
9 years ago
}
this.setValue(value);
9 years ago
}
render() {
const props = this.props;
9 years ago
const {value, type} = this.state;
const {locale, prefixCls, style, className, fullscreen, monthCellRender, dateCellRender, fullscreenDateCellRender} = props;
const _monthCellRender = monthCellRender ? monthCellRender : this.monthCellRender;
const _dateCellRender = dateCellRender ? dateCellRender : this.dateCellRender;
const _fullscreenDateCellRender = fullscreenDateCellRender ? fullscreenDateCellRender : this.fullscreenDateCellRender;
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}
onChange={this.onPanelChange.bind(this)}
9 years ago
monthCellRender={ fullscreen ? _monthCellRender.bind(this) : null }
dateCellRender={ fullscreen ? _fullscreenDateCellRender.bind(this) : _dateCellRender.bind(this) }/>
</div>
);
}
}
NoticeCalendar.propTypes = {
monthCellRender: PropTypes.func,
dateCellRender: PropTypes.func,
fullDateCellRender: PropTypes.func,
getMonthData: PropTypes.func,
getDateData: 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,
9 years ago
onTypeChange: PropTypes.func,
};
NoticeCalendar.defaultProps = {
locale: CalendarLocale,
getMonthData: noop,
getDateData: noop,
fullscreen: false,
9 years ago
prefixCls: PREFIX_CLS,
9 years ago
onChange: noop,
9 years ago
onTypeChange: noop,
9 years ago
type: 'date',
};
export default NoticeCalendar;