antd-jalali-fixed
Version:
A wrapper for ant-design datepicker and calendar to support Jalali calendar type with dayjs.
103 lines (76 loc) • 3.06 kB
Markdown
[](https://npmjs.com/package/antd-jalali-fixed)
[](https://npmjs.com/package/antd-jalali-fixed)
A wrapper for ant-design date picker and calendar to support Jalali calendar type with [Day.js](https://github.com/iamkun/dayjs) and [jalaliday](https://github.com/alibaba-aero/jalaliday)
[](https://ashkan4ever.github.io/antd-jalali-fixed/)
- Support Ant Design Version 4 and 5
- Support React 16/17/18
- Fix All RTL Issues
```
npm i antd-jalali@v2.x.x
```
```
npm i antd-jalali@v1.4.x
```
```ts
import React from "react";
import ReactDOM from "react-dom";
import { DatePicker, ConfigProvider } from "antd";
import { DatePicker as DatePickerJalali, Calendar, JalaliLocaleListener } from "antd-jalali";
import fa_IR from "antd/lib/locale/fa_IR";
import en_US from "antd/lib/locale/en_US";
import "antd/dist/antd.css";
import "./index.css";
ReactDOM.render(
<div className="App">
Gregorian: <DatePicker />
<br />
<br />
<ConfigProvider locale={fa_IR} direction="rtl">
<JalaliLocaleListener />
Jalali: <DatePickerJalali />
Jalali RangePicker: <DatePickerJalali.RangePicker />
<br />
<br />
<Calendar />
</ConfigProvider>
</div>,
document.getElementById("root")
);
```
You should pass dayjs object with [jalali calendar](https://github.com/alibaba-aero/jalaliday)
```jsx
import dayjs from 'dayjs'
import { DatePicker as DatePickerJalali, Calendar as CalendarJalali, useJalaliLocaleListener } from "antd-jalali";
// You should call this hook in child component of <ConfigProvider>
// You can also use component helper for this hook <JalaliLocaleListener>
useJalaliLocaleListener();
// If you want to all new instanses of dayjs use jalali calendar (no matter what is the locale),
// you can set default calendar for dayjs and remove useJalaliLocaleListener hook.
dayjs.calendar('jalali');
const date = dayjs("1403-01-01", {jalali:true});
<DatePickerJalali defaultValue={date}/>
<CalendarJalali value={date}/>
```
also you can create a jalali date without changing default calendar
```js
const date = dayjs();
const jalaliDate = date.calendar("jalali");
```
You can read more information about daysjs jalali on [jalaliday repo](https://github.com/alibaba-aero/jalaliday).
<a href="https://github.com/saeedrahimi">
<img src="https://github.com/saeedrahimi.png" width="60px;"/></a>
<a href="https://github.com/masoudit">
<img src="https://github.com/masoudit.png" width="60px;"/></a>
<a href="https://github.com/hamidrezaghanbari">
<img src="https://github.com/hamidrezaghanbari.png" width="60px;"/></a>
<a href="https://github.com/mohas">
<img src="https://github.com/mohas.png" width="60px;"/></a>