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

105 lines
2.3 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-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) {
let listData;
switch (value.date()) {
case 8:
listData = [
{ type: 'warning', content: 'This is warning event.' },
2017-10-16 20:12:21 +08:00
{ type: 'success', content: 'This is usual event.' },
]; break;
case 10:
listData = [
{ type: 'warning', content: 'This is warning event.' },
2017-10-16 20:12:21 +08:00
{ type: 'success', content: 'This is usual event.' },
{ type: 'error', content: 'This is error event.' },
]; break;
case 15:
listData = [
{ 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.' },
]; 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">
{
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} />
</li>
2017-05-15 14:37:22 +08:00
))
}
</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);
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;
}
````