ant-design/components/calendar/demo/notice-calendar.md

125 lines
2.5 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2017-01-13 17:11:26 +08:00
order: 1
title:
2017-01-13 17:11:26 +08:00
zh-CN: 通知事项日历
en-US: Notice Calendar
2016-03-31 09:40:55 +08:00
---
2015-11-13 22:34:49 +08:00
## zh-CN
2017-01-13 17:11:26 +08:00
一个复杂的应用示例,用 `dateCellRender``monthCellRender` 函数来自定义需要渲染的数据。
2016-08-15 11:23:19 +08:00
## en-US
2017-01-13 17:11:26 +08:00
This component can be rendered by using `dateCellRender` and `monthCellRender` with the data you need.
2015-11-13 22:34:49 +08:00
2017-01-19 15:19:03 +08:00
````__react
2015-11-13 22:34:49 +08:00
import { Calendar } from 'antd';
function getListData(value) {
let listData;
switch (value.date()) {
case 8:
listData = [
{ type: 'warning', content: 'This is warning event.' },
{ type: 'normal', content: 'This is usual event.' },
]; break;
case 10:
listData = [
{ type: 'warning', content: 'This is warning event.' },
{ type: 'normal', content: 'This is usual event.' },
{ type: 'error', content: 'This is error event.' },
]; break;
case 15:
listData = [
{ type: 'warning', content: 'This is warning event' },
{ type: 'normal', content: 'This is very long usual event。。....' },
2017-01-09 12:10:08 +08:00
{ type: 'error', content: 'This is error event 1.' },
{ type: 'error', content: 'This is error event 2.' },
{ type: 'error', content: 'This is error event 3.' },
{ type: 'error', content: 'This is error event 4.' },
]; break;
default:
2015-11-13 22:34:49 +08:00
}
return listData || [];
}
function dateCellRender(value) {
2016-07-21 18:05:15 +08:00
const listData = getListData(value);
return (
<ul className="events">
{
listData.map(item =>
2017-01-09 12:10:08 +08:00
<li key={item.content}>
<span className={`event-${item.type}`}></span>
{item.content}
</li>
)
}
</ul>
);
2015-11-13 22:34:49 +08:00
}
function getMonthData(value) {
if (value.month() === 8) {
2015-11-13 22:34:49 +08:00
return 1394;
}
}
function monthCellRender(value) {
2016-08-28 17:47:06 +08:00
const num = getMonthData(value);
2015-11-13 22:34:49 +08:00
return num ? <div className="notes-month">
<section>{num}</section>
<span>Backlog number</span>
2015-11-13 22:34:49 +08:00
</div> : null;
}
ReactDOM.render(
<Calendar dateCellRender={dateCellRender} monthCellRender={monthCellRender} />
, mountNode);
2015-11-13 22:34:49 +08:00
````
````css
.events {
line-height: 24px;
list-style: none;
margin: 0;
padding: 0;
}
.events li {
color: #999;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.events li span {
vertical-align: middle;
}
.events li span:first-child {
font-size: 9px;
margin-right: 4px;
}
2016-03-28 14:38:25 +08:00
.event-warning {
2015-11-13 22:34:49 +08:00
color: #fac450;
}
.event-normal {
2016-11-13 18:57:45 +08:00
color: #108ee9;
2015-11-13 22:34:49 +08:00
}
.event-error {
2016-03-28 14:38:25 +08:00
color: #f50;
2015-11-13 22:34:49 +08:00
}
.notes-month {
text-align: center;
}
.notes-month section {
font-size: 28px;
}
````