0.0.1 • Published 7 years ago
shamsiday v0.0.1
Jalaliday
Persian (Jalali, Khorshidi) Plugin for Day.js, Jalaliday add multi-calendar functionality to Day.js core regardless for of locale, so we can have Gregorian calendar is Persian locale of Jalali calendar in English locale
Unlike moment and becuase of immutablity of dayjs, there is no need for formats like jYYYY or jMM, in Jalaliday all formats are same and standard
Installation
NPM
npm install --save jalalidayYARN
yarn add jalalidayUsage
import dayjs from 'dayjs'
import jalaliday from 'jalaliday'
dayjs.extend(jalaliday)Changing calendar
if you want to all new instanses of dayjs use jalali calendar, you can set default calendar
dayjs.calendar('jalali') // Jalali Calendar
// OR
dayjs.calendar('gregory') // Gregorian Calendaralso you can create a jalali date without changing default calendar
const date = dayjs()
const jalaliDate = date.calendar('jalali')with combination of calendar and locale we have multi language for real
dayjs().calendar('jalali').locale('en').format('DD MMMM YYYY') // '13 Shahrivar 1397'
dayjs().calendar('gregory').locale('fa').format('DD MMMM YYYY') // '04 سپتامبر 2018'API
All Api operations of Jalaliday is same as Dayjs itself but calendar based, for more information checkout Dayjs API For a glance:
- API Reference
- Parsing
- Get and Set
- Manipulating
- Displaying
- Format
.format(stringWithTokens: string) - Difference
.diff(compared: Dayjs, unit: string (default: 'milliseconds'), float?: boolean) - Unix Timestamp (milliseconds)
.valueOf() - Unix Timestamp (seconds)
.unix() - Days in the Month
.daysInMonth() - As Javascript Date
.toDate() - As Array
.toArray() - As JSON
.toJSON() - As ISO 8601 String
.toISOString() - As Object
.toObject() - As String
.toString()
- Format
- Query
- Plugin APIs
0.0.1
7 years ago