forked from purpleio/purple-admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar-sample.tsx
75 lines (68 loc) · 1.97 KB
/
calendar-sample.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { Badge, BadgeProps, Calendar, CalendarProps } from "antd";
import { Dayjs } from "dayjs";
import React from "react";
const getListData = (value: Dayjs) => {
let listData;
switch (value.date()) {
case 8:
listData = [
{ type: "warning", content: "외부 미팅" },
{ type: "success", content: "내부 미팅" },
];
break;
case 10:
listData = [
{ type: "warning", content: "외부 미팅" },
{ type: "success", content: "내부 미팅" },
{ type: "error", content: "미팅 1" },
];
break;
case 15:
listData = [
{ type: "warning", content: "외부 미팅" },
{ type: "success", content: "내부 미팅" },
{ type: "error", content: "미팅 1." },
{ type: "error", content: "미팅 2." },
{ type: "error", content: "미팅 3." },
{ type: "error", content: "미팅 4." },
];
break;
default:
}
return listData || [];
};
const getMonthData = (value: Dayjs) => {
if (value.month() === 8) {
return 1394;
}
};
const CalendarSample = () => {
const monthCellRender = (value: Dayjs) => {
const num = getMonthData(value);
return num ? (
<div className="notes-month">
<section>{num}</section>
<span>Backlog number</span>
</div>
) : null;
};
const dateCellRender = (value: Dayjs) => {
const listData = getListData(value);
return (
<ul className="events">
{listData.map((item) => (
<li key={item.content}>
<Badge status={item.type as BadgeProps["status"]} text={item.content} />
</li>
))}
</ul>
);
};
const cellRender: CalendarProps<Dayjs>['cellRender'] = (current, info) => {
if (info.type === 'date') return dateCellRender(current);
if (info.type === 'month') return monthCellRender(current);
return info.originNode;
};
return <Calendar cellRender={cellRender} />;
};
export default React.memo(CalendarSample);