mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
36bcaaef85
* chore: use varaible.less * chore: basic primary varaible * chore: Move to variable * chore: align active color * chore: global fix of css variable * chore: primary colors * chore: button danger * chore: btn default error color * chore: button series * chore: More examples * chore: More components * chore: Form demo * chore: form style * fix: Tag & Alert variable * chore: update footer * chore: rm tmp code * chore: transfer * fix: picker column active color * chore: Adjust active bg color * chore: table hover color * chore: all css variables * chore: Global using variables * chore: Test case * chore: Update test logic * chore: back of default less * chore: entry of site use proxy style * chore: update entry * chore: split of variables * refactor: quick dist speed * fix: site use variable version * chore: Update less config * chore: add mv script * chore: Update repalcement script * chore: Add inject variables * chore: Update script * fix: script path * chore: Move to component instead * chore: fix condition * chore: update config * chore: Update in less transform * chore: Modify logic * chore: change to variables * chore: Update name * fix: script name * chore: do inject * revert: back of path * chore: 2 way of generate * bump tools * chore: Add auto replacement script * chore: auto genrate less file * chore: fix test * test: More test case * chore: Update limit config * test: coverage * docs: Update doc
136 lines
4.0 KiB
Markdown
136 lines
4.0 KiB
Markdown
---
|
|
order: 7.5
|
|
title: Replace Moment.js
|
|
---
|
|
|
|
You might want to replace Moment.js with another date library (**Ant design currently supports [dayjs](https://day.js.org) and [date-fns](https://date-fns.org)**) to reduce bundle size. We provide two ways to customize:
|
|
|
|
## Custom component
|
|
|
|
The first way is to use `generatePicker` (or `generateCalendar`) to help create Picker components.
|
|
|
|
First, we initialize an antd demo with `create-react-app`. You can refer to [Use in TypeScript](/docs/react/use-in-typescript), or you can start directly here [init antd](https://github.com/xiaohuoni/antd4-generate-picker/commit/47fec964e36d48bd15760f8f5abcb9655c259aa6)
|
|
|
|
### DatePicker.tsx
|
|
|
|
Create `src/components/DatePicker.tsx`.
|
|
|
|
For example:
|
|
|
|
```tsx
|
|
import { Dayjs } from 'dayjs';
|
|
import dayjsGenerateConfig from 'rc-picker/lib/generate/dayjs';
|
|
import generatePicker from 'antd/es/date-picker/generatePicker';
|
|
import 'antd/es/date-picker/style/index';
|
|
|
|
const DatePicker = generatePicker<Dayjs>(dayjsGenerateConfig);
|
|
|
|
export default DatePicker;
|
|
```
|
|
|
|
### TimePicker.tsx
|
|
|
|
Create `src/components/TimePicker.tsx`.
|
|
|
|
For example:
|
|
|
|
```tsx
|
|
import { Dayjs } from 'dayjs';
|
|
import * as React from 'react';
|
|
import DatePicker from './DatePicker';
|
|
import { PickerTimeProps } from 'antd/es/date-picker/generatePicker';
|
|
|
|
export interface TimePickerProps extends Omit<PickerTimeProps<Dayjs>, 'picker'> {}
|
|
|
|
const TimePicker = React.forwardRef<any, TimePickerProps>((props, ref) => {
|
|
return <DatePicker {...props} picker="time" mode={undefined} ref={ref} />;
|
|
});
|
|
|
|
TimePicker.displayName = 'TimePicker';
|
|
|
|
export default TimePicker;
|
|
```
|
|
|
|
### Calendar.tsx
|
|
|
|
Create `src/components/Calendar.tsx`.
|
|
|
|
For example:
|
|
|
|
```tsx
|
|
import { Dayjs } from 'dayjs';
|
|
import dayjsGenerateConfig from 'rc-picker/lib/generate/dayjs';
|
|
import generateCalendar from 'antd/es/calendar/generateCalendar';
|
|
import 'antd/es/calendar/style';
|
|
|
|
const Calendar = generateCalendar<Dayjs>(dayjsGenerateConfig);
|
|
|
|
export default Calendar;
|
|
```
|
|
|
|
### Export Custom component
|
|
|
|
Create `src/components/index.tsx`.
|
|
|
|
For example:
|
|
|
|
```tsx
|
|
export { default as DatePicker } from './DatePicker';
|
|
export { default as Calendar } from './Calendar';
|
|
export { default as TimePicker } from './TimePicker';
|
|
```
|
|
|
|
### Use Custom component
|
|
|
|
Modify `src/App.tsx`,import `dayjs` and custom component.
|
|
|
|
```diff
|
|
- import { DatePicker, Calendar } from 'antd';
|
|
- import format from 'moment';
|
|
|
|
+ import { DatePicker, TimePicker, Calendar } from './components';
|
|
+ import format from 'dayjs';
|
|
```
|
|
|
|
If the above steps do not work correctly, you can refer to [antd4-generate-picker/antd-ts](https://github.com/xiaohuoni/antd4-generate-picker/tree/master/antd-ts).
|
|
|
|
If you need JavaScript code, you can refer to [antd4-generate-picker/antd-demo](https://github.com/xiaohuoni/antd4-generate-picker/tree/master/antd-demo).
|
|
|
|
If you use [umi](https://umijs.org/), you can reference [antd4-use-dayjs-replace-moment](https://github.com/xiaohuoni/antd4-use-dayjs-replace-moment).
|
|
|
|
## antd-dayjs-webpack-plugin
|
|
|
|
We also provide another implementation, which we provide with `antd-dayjs-webpack-plugin`, replacing `momentjs` with `Day.js` directly without changing a line of existing code. More info can be found at [antd-dayjs-webpack-plugin](https://github.com/ant-design/antd-dayjs-webpack-plugin).
|
|
|
|
```js
|
|
// webpack-config.js
|
|
import AntdDayjsWebpackPlugin from 'antd-dayjs-webpack-plugin';
|
|
|
|
module.exports = {
|
|
// ...
|
|
plugins: [new AntdDayjsWebpackPlugin()],
|
|
};
|
|
```
|
|
|
|
## Use date-fns
|
|
|
|
[date-fns](https://date-fns.org/) currently supports custom component methods similar to `dayjs`. The difference is that the parameter types used are different. Support is provided in antd 4.5.0 and above.
|
|
|
|
For Example:
|
|
|
|
### DatePicker.tsx
|
|
|
|
Create `src/components/DatePicker.tsx`.
|
|
|
|
Code as follows:
|
|
|
|
```tsx
|
|
import dateFnsGenerateConfig from 'rc-picker/lib/generate/dateFns';
|
|
import generatePicker from 'antd/es/date-picker/generatePicker';
|
|
import 'antd/es/date-picker/style/index';
|
|
|
|
const DatePicker = generatePicker<Date>(dateFnsGenerateConfig);
|
|
|
|
export default DatePicker;
|
|
```
|