| import React from 'react'; | |
| import dayjs from 'dayjs'; | |
| import 'dayjs/locale/zh-cn'; | |
| import { Calendar, Flex, Radio, Select, theme, Typography } from 'antd'; | |
| import type { CalendarProps } from 'antd'; | |
| import type { Dayjs } from 'dayjs'; | |
| import dayLocaleData from 'dayjs/plugin/localeData'; | |
| dayjs.extend(dayLocaleData); | |
| const App: React.FC = () => { | |
| const { token } = theme.useToken(); | |
| const onPanelChange = (value: Dayjs, mode: CalendarProps<Dayjs>['mode']) => { | |
| console.log(value.format('YYYY-MM-DD'), mode); | |
| }; | |
| const wrapperStyle: React.CSSProperties = { | |
| width: 300, | |
| border: `1px solid ${token.colorBorderSecondary}`, | |
| borderRadius: token.borderRadiusLG, | |
| }; | |
| return ( | |
| <div style={wrapperStyle}> | |
| <Calendar | |
| fullscreen={false} | |
| headerRender={({ value, type, onChange, onTypeChange }) => { | |
| const year = value.year(); | |
| const month = value.month(); | |
| const yearOptions = Array.from({ length: 20 }, (_, i) => { | |
| const label = year - 10 + i; | |
| return { label, value: label }; | |
| }); | |
| const monthOptions = value | |
| .localeData() | |
| .monthsShort() | |
| .map((label, index) => ({ | |
| label, | |
| value: index, | |
| })); | |
| return ( | |
| <div style={{ padding: 8 }}> | |
| <Typography.Title level={4}>Custom header</Typography.Title> | |
| <Flex gap={8}> | |
| <Radio.Group | |
| size="small" | |
| onChange={(e) => onTypeChange(e.target.value)} | |
| value={type} | |
| > | |
| <Radio.Button value="month">Month</Radio.Button> | |
| <Radio.Button value="year">Year</Radio.Button> | |
| </Radio.Group> | |
| <Select | |
| size="small" | |
| popupMatchSelectWidth={false} | |
| value={year} | |
| options={yearOptions} | |
| onChange={(newYear) => { | |
| const now = value.clone().year(newYear); | |
| onChange(now); | |
| }} | |
| /> | |
| <Select | |
| size="small" | |
| popupMatchSelectWidth={false} | |
| value={month} | |
| options={monthOptions} | |
| onChange={(newMonth) => { | |
| const now = value.clone().month(newMonth); | |
| onChange(now); | |
| }} | |
| /> | |
| </Flex> | |
| </div> | |
| ); | |
| }} | |
| onPanelChange={onPanelChange} | |
| /> | |
| </div> | |
| ); | |
| }; | |
| export default App; | |