improve calendar

This commit is contained in:
血诺 2015-11-12 21:24:53 +08:00
parent c6a2379811
commit d950c63c80
11 changed files with 427 additions and 102 deletions

View File

@ -1,3 +1,3 @@
export default {
PREFIX_CLS: 'ant-calendar',
PREFIX_CLS: 'ant-notice-calendar',
};

View File

@ -0,0 +1,107 @@
import React, {PropTypes, Component} from 'react';
import {PREFIX_CLS} from './Constants';
import Select from '../select';
import {Group, Button} from '../radio';
function noop() {}
class Header extends Component {
getYearSelectElement(year) {
const {yearSelectOffset, yearSelectTotal, locale, prefixCls} = this.props;
const start = year - yearSelectOffset;
const end = start + yearSelectTotal;
const suffix = locale.year === '年' ? '年' : '';
const options = [];
for (let index = start; index < end; index++) {
options.push(<Option key={`${index}`}>{index + suffix}</Option> );
}
return (
<Select
size="small"
dropdownMatchSelectWidth={false}
className={`${prefixCls}-year-select`}
onChange={this.onYearChange.bind(this)}
value={String(year)}>
{ options }
</Select>
);
}
getMonthSelectElement(month) {
const props = this.props;
const months = props.locale.format.months;
const {prefixCls} = props;
const options = [];
for (let index = 0; index < 12; index++) {
options.push(<Option key={`${index}`}>{months[index]}</Option>);
}
return (
<Select
size="small"
dropdownMatchSelectWidth={false}
className={`${prefixCls}-month-select`}
value={String(month)}
onChange={this.onMonthChange.bind(this)}>
{ options }
</Select>
);
}
onYearChange(year) {
const newValue = this.props.value.clone();
newValue.setYear(parseInt(year, 10));
this.props.onValueChange(newValue);
}
onMonthChange(month) {
const newValue = this.props.value.clone();
newValue.setMonth(parseInt(month, 10));
this.props.onValueChange(newValue);
}
onTypeChange(e) {
this.props.onTypeChange(e.target.value);
}
render() {
const {type, value, prefixCls, locale} = this.props;
const yearSelect = this.getYearSelectElement(value.getYear());
const monthSelect = type === 'date' ? this.getMonthSelectElement(value.getMonth()) : null;
const typeSwitch = (
<Group onChange={this.onTypeChange.bind(this)} value={type}>
<Button value="date">{locale.month}</Button>
<Button value="month">{locale.year}</Button>
</Group>
);
return (
<div className={`${prefixCls}-header`}>
{ yearSelect }
{ monthSelect }
{ typeSwitch }
</div>
);
}
}
Header.propTypes = {
value: PropTypes.object,
locale: PropTypes.object,
yearSelectOffset: PropTypes.number,
yearSelectTotal: PropTypes.number,
onValueChange: PropTypes.func,
onTypeChange: PropTypes.func,
prefixCls: PropTypes.string,
selectPrefixCls: PropTypes.string,
type: PropTypes.string,
};
Header.defaultProps = {
prefixCls: `${PREFIX_CLS}-header`,
yearSelectOffset: 10,
yearSelectTotal: 20,
onValueChange: noop,
onTypeChange: noop,
};
export default Header;

View File

@ -21,7 +21,7 @@ NoteList.propTypes = {
prefixCls: PropTypes.string,
};
NoteList.defaultProps = {
prefixCls: `${PREFIX_CLS}-notes-list`,
prefixCls: `${PREFIX_CLS}-note-list`,
};
export default NoteList;

View File

@ -1,6 +1,6 @@
import React, {PropTypes, Component} from 'react';
import NoteList from './NoteList';
import Tooltip from '../tooltip';
import Popover from '../popover';
import {PREFIX_CLS} from './Constants';
class Notes extends Component {
@ -26,7 +26,7 @@ class Notes extends Component {
</div>);
return (
<Tooltip placement="right" trigger={['hover']} overlay={<NoteList listData={listData} />}>{el}</Tooltip>
<Popover placement="bottomLeft" trigger={['hover']} overlay={<NoteList listData={listData} />}>{el}</Popover>
);
}
}

View File

@ -39,6 +39,6 @@ function getDateData(value) {
ReactDOM.render(
<Calendar getDateData={getDateData} />
<Calendar getDateData={getDateData} type="date" />
, document.getElementById('components-calendar-demo-basic'));
````

View File

@ -26,7 +26,9 @@ function getDateData(value) {
case 15:
listData = [
{ type: 'warn', content: '这里是警告事项.' },
{ type: 'normal', content: '这里是普通事项好长啊。。.' },
{ type: 'normal', content: '这里是普通事项好长啊。。....' },
{ type: 'error', content: '这里是错误事项.' },
{ type: 'error', content: '这里是错误事项.' },
{ type: 'error', content: '这里是错误事项.' },
{ type: 'error', content: '这里是错误事项.' }
]; break;
@ -40,7 +42,7 @@ function getMonthData(value) {
return 0;
}
ReactDOM.render(
<Calendar fullscreen={true} getDateData={getDateData} getMonthData={getMonthData} />
<Calendar fullscreen={true} type={'date'} getDateData={getDateData} getMonthData={getMonthData} />
, document.getElementById('components-calendar-demo-fullscreen'));
````

View File

@ -1,9 +1,11 @@
import React, {PropTypes, Component} from 'react';
import GregorianCalendar from 'gregorian-calendar';
import CalendarLocale from 'rc-calendar/lib/locale/zh_CN';
import FullCalendar from 'rc-calendar/lib/FullCalendar';
import Notes from './Notes';
import NoteList from './NoteList';
import {PREFIX_CLS} from './Constants';
import Header from './Header';
function noop () { return null; }
@ -11,10 +13,15 @@ function zerofixed (v) {
if (v < 10) return '0' + v;
return v + '';
}
function getNow() {
const value = new GregorianCalendar();
value.setTime(Date.now());
return value;
}
const MonthCellNoteNum = ({num, prefixCls}) => {
return (
<div className={`${prefixCls}-month-cell`}>
<div className={`${prefixCls}-month`}>
<section>{num}</section>
<span>待办事项数</span>
</div>
@ -22,29 +29,36 @@ const MonthCellNoteNum = ({num, prefixCls}) => {
};
class NoticeCalendar extends Component {
constructor(props) {
super();
this.state = {
value: props.value || getNow(),
type: props.type,
};
}
monthCellRender(value, locale) {
const prefixCls = this.props.prefixCls;
const month = value.getMonth();
const noteNum = this.props.getMonthData(value);
if (noteNum > 0) {
return (
<a className={`${prefixCls}-month-panel-month`}>
<a className={`${prefixCls}-fullscreen-month`}>
<span>{locale.format.shortMonths[month]}</span>
<MonthCellNoteNum num={noteNum} prefixCls={`${prefixCls}-notes`} />
</a>
);
}
return (
<a className={`${prefixCls}-month-panel-month`}>{locale.format.shortMonths[month]}</a>
<a className={`${prefixCls}-fullscreen-month`}>{locale.format.shortMonths[month]}</a>
);
}
fullscreenDateCellRender(value) {
const prefixCls = this.props.prefixCls;
let listData = this.props.getDateData(value);
return (
<span className={`${prefixCls}-date ${prefixCls}-notes-date-full`}>
<span className={`${prefixCls}-fullscreen-date`}>
<span>{ zerofixed(value.getDayOfMonth()) }</span>
<NoteList listData={listData} />
<div className={`${prefixCls}-note-list-wrapper`}><NoteList listData={listData} /></div>
</span>
);
}
@ -53,24 +67,54 @@ class NoticeCalendar extends Component {
const el = (<span className={`${prefixCls}-date ${prefixCls}-notes-date`}>{ zerofixed(value.getDayOfMonth()) }</span>);
const listData = this.props.getDateData(value);
return (
<div style={{position: 'relative', height: 32}}>
<div style={{ position: 'relative' }}>
{ el }
{ (listData && listData.length > 0) ? <Notes listData={listData} /> : null }
{ (listData && listData.length > 0) ? <div className={`${prefixCls}-notes-wrapper`}><Notes listData={listData} /></div> : null }
</div>
);
}
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;
const {fullscreen, monthCellRender, dateCellRender, fullscreenDateCellRender} = props;
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;
return (<FullCalendar
{...props}
monthCellRender={ fullscreen ? _monthCellRender.bind(this) : null }
dateCellRender={ fullscreen ? _fullscreenDateCellRender.bind(this) : _dateCellRender.bind(this) }/>);
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 = {
@ -82,6 +126,9 @@ NoticeCalendar.propTypes = {
fullscreen: PropTypes.bool,
locale: PropTypes.object,
prefixCls: PropTypes.string,
className: PropTypes.string,
style: PropTypes.object,
onSelect: PropTypes.func,
};
NoticeCalendar.defaultProps = {
locale: CalendarLocale,
@ -89,6 +136,8 @@ NoticeCalendar.defaultProps = {
getDateData: noop,
fullscreen: false,
prefixCls: PREFIX_CLS,
onSelect: noop,
type: 'date',
};
export default NoticeCalendar;

View File

@ -38,7 +38,7 @@
"gregorian-calendar-format": "~4.0.4",
"object-assign": "~4.0.1",
"rc-animate": "~2.0.0",
"rc-calendar": "4.0.0-alpha15",
"rc-calendar": "4.0.0-alpha18",
"rc-checkbox": "~1.1.1",
"rc-collapse": "~1.4.0",
"rc-dialog": "~5.2.0",

View File

@ -1,5 +1,6 @@
.@{calendar-prefix-cls}-notes {
.@{notice-calendar-prefix-cls}-note {
&-list {
line-height: 24px;
list-style: none;
text-align: left;
margin: 0;

View File

@ -1,4 +1,4 @@
.@{calendar-prefix-cls}-notes {
.@{notice-calendar-prefix-cls}-notes {
height: 9px;
line-height: 8px;
text-align: center;

View File

@ -1,95 +1,261 @@
.@{calendar-prefix-cls}-header{
&-switcher {
margin-top: 4px;
margin-right: 8px;
float: right;
display: inline-block;
> span {
float: left;
height: 24px;
line-height: 24px;
border: 1px solid @btn-default-border;
padding: 0 10px;
@notice-calendar-prefix-cls: ant-notice-calendar;
.@{notice-calendar-prefix-cls}-wrapper {
position: relative;
font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans-serif;
width: 282px;
border: 1px solid @legend-border-color;
list-style: none;
font-size: 12px;
text-align: left;
background-color: #fff;
border-radius: 3px;
box-shadow: 0 1px 3px @legend-border-color;
line-height: 1.5;
.@{notice-calendar-prefix-cls} {
&-month-select {
margin-left: 4px;
}
&-header {
padding: 11px 16px 11px 0;
text-align: right;
.ant-radio-group {
margin-left: 10px;
}
label.ant-radio-button {
height: 22px;
line-height: 22px;
padding: 0 10px;
}
}
outline: none;
border-top: 1px solid @legend-border-color;
&-date-panel {
position: relative;
outline: none;
}
&-calendar-body {
padding: 8px 8px 14px;
}
table {
border-collapse: collapse;
max-width: 100%;
background-color: transparent;
width: 100%;
height: 235px;
}
table, td, th, td {
border: none;
}
&-calendar-table {
border-spacing: 0;
margin-bottom: 0;
}
&-column-header {
line-height: 18px;
padding: 0;
width: 33px;
text-align: center;
.@{notice-calendar-prefix-cls}-column-header-inner {
display: block;
font-weight: normal;
}
}
&-week-number-header {
.@{notice-calendar-prefix-cls}-column-header-inner {
display: none;
}
}
&-cell {
padding: 8px 0;
}
&-date {
display: block;
margin: 0 auto;
color: @text-color;
&:first-child {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border-right: none;
}
&:last-child {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-left: none;
}
&.normal:hover {
border-color: @primary-color;
box-shadow: 0 0 2px rgba(45, 183, 245, 0.8);
border-radius: 4px 4px;
width: 22px;
height: 22px;
padding: 0;
background: transparent;
line-height: 22px;
text-align: center;
&:hover {
background: tint(@primary-color, 90%);
cursor: pointer;
}
&.focus {
border-color: @primary-color;
background-color: @link-hover-color;
}
&-today .@{notice-calendar-prefix-cls}-date {
color: @primary-color;
}
&-selected-day .@{notice-calendar-prefix-cls}-date {
background: @primary-color;
color: #fff;
&:hover {
background: @primary-color;
}
}
&-disabled-cell &-date {
cursor: not-allowed;
color: #bcbcbc;
background: #f3f3f3;
border-radius: 0;
width: auto;
&:hover {
background: #f3f3f3;
}
}
&-disabled-cell-first-of-row &-date {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
&-disabled-cell-last-of-row &-date {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
&-last-month-cell .@{notice-calendar-prefix-cls}-date,
&-next-month-btn-day .@{notice-calendar-prefix-cls}-date {
color: #ccc;
}
&-month-panel-table {
table-layout: fixed;
width: 100%;
border-collapse: separate;
}
&-month-panel-cell {
text-align: center;
.@{notice-calendar-prefix-cls}-month-panel-month {
display: block;
width: 46px;
margin: 0 auto;
color: @text-color;
border-radius: 4px 4px;
height: 36px;
padding: 0;
background: transparent;
line-height: 36px;
text-align: center;
&:hover {
background: tint(@primary-color, 90%);
cursor: pointer;
}
}
&-disabled {
.@{notice-calendar-prefix-cls}-month-panel-month {
color: #bfbfbf;
&:hover {
background: white;
cursor: not-allowed;
}
}
}
}
&-month-panel-selected-cell .@{notice-calendar-prefix-cls}-month-panel-month {
background: @primary-color;
color: #fff;
&:hover {
background: @primary-color;
color: #fff;
}
}
}
.rc-select-selection--single {
height: 24px;
.rc-select-selection__rendered {
line-height: 24px;
&-notes-wrapper {
position: absolute;
width: 100%;
left:0;
bottom: -9px;
}
}
}
.@{calendar-prefix-cls}-fullscreen {
width: 100%;
&-fullscreen {
width: auto;
border: none;
box-shadow: none;
.@{notice-calendar-prefix-cls} {
border-top: none;
&-table {
table-layout: fixed;
}
&-fullscreen-month,
&-fullscreen-date {
margin: 0 4px;
display: block;
color: @text-color;
height: 116px;
padding:4px 8px;
text-align: right;
border-top: 2px solid #eee;
.@{calendar-prefix-cls} {
&-table {
table-layout: fixed;
}
&-header {
border-bottom: none;
}
&-column-header {
text-align: right; padding-right: 12px;
}
&-cell { padding:0; }
&-date,
&-month-panel-month {
display: block;
height: 116px;
width: auto;
border-radius: 0;
margin: 0 4px;
border: none;
border-top: 2px solid #eee;
text-align: right;
padding-right: 8px;
color: @text-color;
}
&-today .@{calendar-prefix-cls}-date,
&-month-panel-selected-cell .@{calendar-prefix-cls}-month-panel-month {
border-top-color: @primary-color;
color: @primary-color;
background: none;
}
&-selected-day .@{calendar-prefix-cls}-date,
&-month-panel-selected-cell .@{calendar-prefix-cls}-month-panel-month {
background-color: tint(@primary-color, 90%);
}
&-notes-month-cell {
text-align: center!important;
color: @text-color;
&:hover {
background: tint(@primary-color, 90%);
cursor: pointer;
}
}
&-column-header {
text-align: right; padding-right: 12px;
}
&-cell {
padding: 0;
}
&-month-panel-selected-cell .@{notice-calendar-prefix-cls}-fullscreen-month,
&-selected-day .@{notice-calendar-prefix-cls}-fullscreen-date {
background-color: tint(@primary-color, 90%);
color: @text-color;
}
&-month-panel-selected-cell .@{notice-calendar-prefix-cls}-fullscreen-month,
&-today .@{notice-calendar-prefix-cls}-fullscreen-date {
border-top-color: @primary-color;
color: @primary-color;
}
> section {
font-size: 24px;
&-last-month-cell .@{notice-calendar-prefix-cls}-fullscreen-date,
&-next-month-btn-day .@{notice-calendar-prefix-cls}-fullscreen-date {
color: #ccc;
}
&-note-list-wrapper {
height: 90px;
overflow-y: auto;
}
&-notes-month {
text-align: center;
> section {
font-size: 28px;
}
}
}
&-notes-date-full {
overflow: auto;
padding: 0 8px 8px 8px;
}
}
}
}