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.

144 lines
4.4 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) {
this.setState({ value });
}
setType(type) {
this.setState({ type });
}
onSelect(value) {
this.setValue(value);
if (this.state.type === 'month') {
this.setState({ type: 'date' });
}
this.props.onSelect(value);
}
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
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}
onSelect={this.onSelect.bind(this)}
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,