2016-03-31 09:40:55 +08:00
|
|
|
---
|
2017-01-13 17:11:26 +08:00
|
|
|
order: 1
|
2016-05-22 11:03:07 +08:00
|
|
|
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
|
|
|
|
2016-05-22 11:03:07 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2017-01-13 17:11:26 +08:00
|
|
|
一个复杂的应用示例,用 `dateCellRender` 和 `monthCellRender` 函数来自定义需要渲染的数据。
|
2016-05-22 11:03:07 +08:00
|
|
|
|
2016-08-15 11:23:19 +08:00
|
|
|
## en-US
|
2016-05-22 11:03:07 +08:00
|
|
|
|
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-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2017-10-16 20:12:21 +08:00
|
|
|
import { Calendar, Badge } from 'antd';
|
2015-11-13 22:34:49 +08:00
|
|
|
|
|
|
|
function getListData(value) {
|
2015-11-25 17:35:49 +08:00
|
|
|
let listData;
|
2016-09-09 13:55:21 +08:00
|
|
|
switch (value.date()) {
|
2016-01-08 14:41:05 +08:00
|
|
|
case 8:
|
|
|
|
listData = [
|
2016-10-02 08:47:34 +08:00
|
|
|
{ type: 'warning', content: 'This is warning event.' },
|
2017-10-16 20:12:21 +08:00
|
|
|
{ type: 'success', content: 'This is usual event.' },
|
2016-01-08 14:41:05 +08:00
|
|
|
]; break;
|
|
|
|
case 10:
|
|
|
|
listData = [
|
2016-10-02 08:47:34 +08:00
|
|
|
{ type: 'warning', content: 'This is warning event.' },
|
2017-10-16 20:12:21 +08:00
|
|
|
{ type: 'success', content: 'This is usual event.' },
|
2016-10-02 08:47:34 +08:00
|
|
|
{ type: 'error', content: 'This is error event.' },
|
2016-01-08 14:41:05 +08:00
|
|
|
]; break;
|
|
|
|
case 15:
|
|
|
|
listData = [
|
2016-10-02 08:47:34 +08:00
|
|
|
{ type: 'warning', content: 'This is warning event' },
|
2017-10-16 20:12:21 +08:00
|
|
|
{ type: 'success', 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.' },
|
2016-01-08 14:41:05 +08:00
|
|
|
]; 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);
|
2016-01-07 16:29:12 +08:00
|
|
|
return (
|
|
|
|
<ul className="events">
|
|
|
|
{
|
2017-05-15 14:37:22 +08:00
|
|
|
listData.map(item => (
|
2017-01-09 12:10:08 +08:00
|
|
|
<li key={item.content}>
|
2017-10-16 20:12:21 +08:00
|
|
|
<Badge status={item.type} text={item.content} />
|
2016-01-07 16:29:12 +08:00
|
|
|
</li>
|
2017-05-15 14:37:22 +08:00
|
|
|
))
|
2016-01-07 16:29:12 +08:00
|
|
|
}
|
|
|
|
</ul>
|
|
|
|
);
|
2015-11-13 22:34:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function getMonthData(value) {
|
2016-09-09 13:55:21 +08:00
|
|
|
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);
|
2017-10-09 13:23:20 +08:00
|
|
|
return num ? (
|
|
|
|
<div className="notes-month">
|
|
|
|
<section>{num}</section>
|
|
|
|
<span>Backlog number</span>
|
|
|
|
</div>
|
|
|
|
) : null;
|
2015-11-13 22:34:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
2018-06-27 15:55:04 +08:00
|
|
|
<Calendar dateCellRender={dateCellRender} monthCellRender={monthCellRender} />,
|
2018-11-28 15:00:03 +08:00
|
|
|
mountNode
|
|
|
|
);
|
2015-11-13 22:34:49 +08:00
|
|
|
````
|
|
|
|
|
|
|
|
````css
|
|
|
|
.events {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2017-10-16 20:12:21 +08:00
|
|
|
.events .ant-badge-status {
|
2015-11-13 22:34:49 +08:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2017-10-16 20:12:21 +08:00
|
|
|
width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 12px;
|
2015-11-13 22:34:49 +08:00
|
|
|
}
|
|
|
|
.notes-month {
|
|
|
|
text-align: center;
|
2017-10-16 20:12:21 +08:00
|
|
|
font-size: 28px;
|
2015-11-13 22:34:49 +08:00
|
|
|
}
|
|
|
|
.notes-month section {
|
|
|
|
font-size: 28px;
|
|
|
|
}
|
|
|
|
````
|