@date-io/date-fns-jalali
Version:
Abstraction over common javascript date management libraries
496 lines (414 loc) • 14.4 kB
text/typescript
import { addSeconds } from "date-fns-jalali/addSeconds";
import { addMinutes } from "date-fns-jalali/addMinutes";
import { addHours } from "date-fns-jalali/addHours";
import { addDays } from "date-fns-jalali/addDays";
import { addWeeks } from "date-fns-jalali/addWeeks";
import { addMonths } from "date-fns-jalali/addMonths";
import { addYears } from "date-fns-jalali/addYears";
import { differenceInYears } from "date-fns-jalali/differenceInYears";
import { differenceInQuarters } from "date-fns-jalali/differenceInQuarters";
import { differenceInMonths } from "date-fns-jalali/differenceInMonths";
import { differenceInWeeks } from "date-fns-jalali/differenceInWeeks";
import { differenceInDays } from "date-fns-jalali/differenceInDays";
import { differenceInHours } from "date-fns-jalali/differenceInHours";
import { differenceInMinutes } from "date-fns-jalali/differenceInMinutes";
import { differenceInSeconds } from "date-fns-jalali/differenceInSeconds";
import { differenceInMilliseconds } from "date-fns-jalali/differenceInMilliseconds";
import { eachDayOfInterval } from "date-fns-jalali/eachDayOfInterval";
import { endOfDay } from "date-fns-jalali/endOfDay";
import { endOfWeek } from "date-fns-jalali/endOfWeek";
import { endOfYear } from "date-fns-jalali/endOfYear";
import { format, longFormatters } from "date-fns-jalali/format";
import { formatISO } from "date-fns-jalali/formatISO";
import { getHours } from "date-fns-jalali/getHours";
import { getSeconds } from "date-fns-jalali/getSeconds";
import { getYear } from "date-fns-jalali/getYear";
import { getWeek } from "date-fns-jalali/getWeek";
import { getMonth } from "date-fns-jalali/getMonth";
import { getDate } from "date-fns-jalali/getDate";
import { getDay } from "date-fns-jalali/getDay";
import { getDaysInMonth } from "date-fns-jalali/getDaysInMonth";
import { getMinutes } from "date-fns-jalali/getMinutes";
import { isAfter } from "date-fns-jalali/isAfter";
import { isBefore } from "date-fns-jalali/isBefore";
import { isEqual } from "date-fns-jalali/isEqual";
import { isSameDay } from "date-fns-jalali/isSameDay";
import { isSameYear } from "date-fns-jalali/isSameYear";
import { isSameMonth } from "date-fns-jalali/isSameMonth";
import { isSameHour } from "date-fns-jalali/isSameHour";
import { isValid } from "date-fns-jalali/isValid";
import { parse as dateFnsParse } from "date-fns-jalali/parse";
import { parseISO } from "date-fns-jalali/parseISO";
import { setDate } from "date-fns-jalali/setDate";
import { setHours } from "date-fns-jalali/setHours";
import { setMinutes } from "date-fns-jalali/setMinutes";
import { setMonth } from "date-fns-jalali/setMonth";
import { setSeconds } from "date-fns-jalali/setSeconds";
import { setYear } from "date-fns-jalali/setYear";
import { startOfDay } from "date-fns-jalali/startOfDay";
import { startOfMonth } from "date-fns-jalali/startOfMonth";
import { endOfMonth } from "date-fns-jalali/endOfMonth";
import { startOfWeek } from "date-fns-jalali/startOfWeek";
import { startOfYear } from "date-fns-jalali/startOfYear";
import { IUtils, DateIOFormats, Unit } from "@date-io/core/IUtils";
import { isWithinInterval } from "date-fns-jalali/isWithinInterval";
import { faIR as defaultLocale } from "date-fns-jalali/locale/fa-IR";
type Locale = typeof defaultLocale;
const defaultFormats: DateIOFormats = {
dayOfMonth: "d",
fullDate: "PPP",
fullDateWithWeekday: "PPPP",
fullDateTime: "PPP p",
fullDateTime12h: "PPP hh:mm aaa",
fullDateTime24h: "PPP HH:mm",
fullTime: "p",
fullTime12h: "hh:mm aaa",
fullTime24h: "HH:mm",
hours12h: "hh",
hours24h: "HH",
keyboardDate: "P",
keyboardDateTime: "P p",
keyboardDateTime12h: "P hh:mm aaa",
keyboardDateTime24h: "P HH:mm",
minutes: "mm",
month: "LLLL",
monthAndDate: "d MMMM",
monthAndYear: "LLLL yyyy",
monthShort: "MMM",
weekday: "EEEE",
weekdayShort: "EEE",
normalDate: "d MMMM",
normalDateWithWeekday: "EEE, d MMMM",
seconds: "ss",
shortDate: "d MMM",
year: "yyyy",
};
var symbolMap = {
1: "۱",
2: "۲",
3: "۳",
4: "۴",
5: "۵",
6: "۶",
7: "۷",
8: "۸",
9: "۹",
0: "۰",
};
export default class DateFnsJalaliUtils implements IUtils<Date, Locale> {
public lib = "date-fns-jalali";
public locale?: Locale;
public formats: DateIOFormats;
constructor({
locale,
formats,
}: { formats?: Partial<DateIOFormats>; locale?: Locale } = {}) {
this.locale = locale;
this.formats = Object.assign({}, defaultFormats, formats);
}
// Note: date-fns input types are more lenient than this adapter, so we need to expose our more
// strict signature and delegate to the more lenient signature. Otherwise, we have downstream type errors upon usage.
public is12HourCycleInCurrentLocale = () => {
if (this.locale) {
return /a/.test(this.locale.formatLong?.time({}));
}
// By default date-fns-jalali is using fa-IR locale with am/pm enabled
return true;
};
public getFormatHelperText = (format: string) => {
// @see https://github.com/date-fns/date-fns/blob/master/src/format/index.js#L31
const longFormatRegexp = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g;
const locale = this.locale || defaultLocale;
return (
format
.match(longFormatRegexp)
?.map((token) => {
const firstCharacter = token[0];
if (firstCharacter === "p" || firstCharacter === "P") {
const longFormatter = longFormatters[firstCharacter];
return longFormatter(token, locale.formatLong);
}
return token;
})
.join("")
.replace(/(aaa|aa|a)/g, "(a|p)m")
.toLocaleLowerCase() ?? format
);
};
public getCurrentLocaleCode = () => {
return this.locale?.code || "fa-IR";
};
public addSeconds = (value: Date, count: number) => {
return addSeconds(value, count);
};
public addMinutes = (value: Date, count: number) => {
return addMinutes(value, count);
};
public addHours = (value: Date, count: number) => {
return addHours(value, count);
};
public addDays = (value: Date, count: number) => {
return addDays(value, count);
};
public addWeeks = (value: Date, count: number) => {
return addWeeks(value, count);
};
public addMonths = (value: Date, count: number) => {
return addMonths(value, count);
};
public addYears = (value: Date, count: number) => {
return addYears(value, count);
};
public isValid = (value: any) => {
return isValid(this.date(value));
};
public getDiff = (value: Date, comparing: Date | string, unit?: Unit) => {
// we output 0 if the compare date is string and parsing is not valid
const dateToCompare = this.date(comparing) ?? value;
switch (unit) {
case "years":
return differenceInYears(value, dateToCompare);
case "quarters":
return differenceInQuarters(value, dateToCompare);
case "months":
return differenceInMonths(value, dateToCompare);
case "weeks":
return differenceInWeeks(value, dateToCompare);
case "days":
return differenceInDays(value, dateToCompare);
case "hours":
return differenceInHours(value, dateToCompare);
case "minutes":
return differenceInMinutes(value, dateToCompare);
case "seconds":
return differenceInSeconds(value, dateToCompare);
default: {
return differenceInMilliseconds(value, dateToCompare);
}
}
};
public isAfter = (value: Date, comparing: Date) => {
return isAfter(value, comparing);
};
public isBefore = (value: Date, comparing: Date) => {
return isBefore(value, comparing);
};
public startOfDay = (value: Date) => {
return startOfDay(value);
};
public endOfDay = (value: Date) => {
return endOfDay(value);
};
public getHours = (value: Date) => {
return getHours(value);
};
public setHours = (value: Date, count: number) => {
return setHours(value, count);
};
public setMinutes = (value: Date, count: number) => {
return setMinutes(value, count);
};
public getSeconds = (value: Date) => {
return getSeconds(value);
};
public setSeconds = (value: Date, count: number) => {
return setSeconds(value, count);
};
public isSameDay = (value: Date, comparing: Date) => {
return isSameDay(value, comparing);
};
public isSameMonth = (value: Date, comparing: Date) => {
return isSameMonth(value, comparing);
};
public isSameYear = (value: Date, comparing: Date) => {
return isSameYear(value, comparing);
};
public isSameHour = (value: Date, comparing: Date) => {
return isSameHour(value, comparing);
};
public startOfYear = (value: Date) => {
return startOfYear(value);
};
public endOfYear = (value: Date) => {
return endOfYear(value);
};
public startOfMonth = (value: Date) => {
return startOfMonth(value);
};
public endOfMonth = (value: Date) => {
return endOfMonth(value);
};
public startOfWeek = (value: Date) => {
return startOfWeek(value, { locale: this.locale });
};
public endOfWeek = (value: Date) => {
return endOfWeek(value, { locale: this.locale });
};
public getYear = (value: Date) => {
return getYear(value);
};
public setYear = (value: Date, count: number) => {
return setYear(value, count);
};
public getDate = (value: Date) => {
return getDate(value);
};
public setDate = (value: Date, count: number) => {
return setDate(value, count);
};
date<
TArg extends unknown = undefined,
TRes extends unknown = TArg extends null
? null
: TArg extends undefined
? Date
: Date | null
>(value?: TArg): TRes {
if (typeof value === "undefined") {
return new Date() as TRes;
}
if (value === null) {
return null as TRes;
}
return new Date(value as any) as TRes;
}
public toJsDate = (value: Date) => {
return value;
};
public parseISO = (isoString: string) => {
return parseISO(isoString);
};
public toISO = (value: Date) => {
return formatISO(value, { format: "extended" });
};
public parse = (value: string, formatString: string) => {
if (value === "") {
return null;
}
return dateFnsParse(value, formatString, new Date(), { locale: this.locale });
};
public format = (date: Date, formatKey: keyof DateIOFormats) => {
return this.formatByString(date, this.formats[formatKey]);
};
public formatByString = (date: Date, formatString: string) => {
return format(date, formatString, { locale: this.locale });
};
public isEqual = (date: any, comparing: any) => {
if (date === null && comparing === null) {
return true;
}
return isEqual(date, comparing);
};
public isNull = (date: Date) => {
return date === null;
};
public isAfterDay = (date: Date, value: Date) => {
return isAfter(date, endOfDay(value));
};
public isBeforeDay = (date: Date, value: Date) => {
return isBefore(date, startOfDay(value));
};
public isBeforeYear = (date: Date, value: Date) => {
return isBefore(date, startOfYear(value));
};
public isBeforeMonth(value: Date, comparing: Date): boolean {
return isBefore(value, startOfMonth(comparing));
}
public isAfterMonth(value: Date, comparing: Date): boolean {
return isAfter(value, startOfMonth(comparing));
}
public isAfterYear = (date: Date, value: Date) => {
return isAfter(date, endOfYear(value));
};
public isWithinRange = (date: Date, [start, end]: [Date, Date]) => {
return isWithinInterval(date, { start, end });
};
public formatNumber = (numberToFormat: string) => {
return (
numberToFormat
// safe to cast since we are matching only digits
.replace(/\d/g, (match) => symbolMap[match as unknown as keyof typeof symbolMap])
.replace(/,/g, "،")
);
};
public getMinutes = (date: Date) => {
return getMinutes(date);
};
public getWeek = (date: Date) => {
return getWeek(date);
};
public getMonth = (date: Date) => {
return getMonth(date);
};
public getDaysInMonth = (date: Date) => {
return getDaysInMonth(date);
};
public setMonth = (date: Date, count: number) => {
return setMonth(date, count);
};
public getMeridiemText = (ampm: "am" | "pm") => {
if (ampm === "am") {
return "ق.ظ.";
}
return "ب.ظ.";
};
public getNextMonth = (date: Date) => {
return addMonths(date, 1);
};
public getPreviousMonth = (date: Date) => {
return addMonths(date, -1);
};
public getMonthArray = (date: Date) => {
const firstMonth = startOfYear(date);
const monthArray = [firstMonth];
while (monthArray.length < 12) {
const prevMonth = monthArray[monthArray.length - 1];
monthArray.push(this.getNextMonth(prevMonth));
}
return monthArray;
};
public mergeDateAndTime = (date: Date, time: Date) => {
return this.setSeconds(
this.setMinutes(this.setHours(date, this.getHours(time)), this.getMinutes(time)),
this.getSeconds(time)
);
};
public getWeekdays = () => {
const now = new Date();
return eachDayOfInterval({
start: startOfWeek(now, { locale: this.locale }),
end: endOfWeek(now, { locale: this.locale }),
}).map((day) => this.formatByString(day, "EEEEEE"));
};
public getWeekArray = (date: Date) => {
const start = startOfWeek(startOfMonth(date), { locale: this.locale });
const end = endOfWeek(endOfMonth(date), { locale: this.locale });
let count = 0;
let current = start;
const nestedWeeks: Date[][] = [];
let lastDay = null;
while (isBefore(current, end)) {
const weekNumber = Math.floor(count / 7);
nestedWeeks[weekNumber] = nestedWeeks[weekNumber] || [];
const day = getDay(current);
if (lastDay !== day) {
lastDay = day;
nestedWeeks[weekNumber].push(current);
count += 1;
}
current = addDays(current, 1);
}
return nestedWeeks;
};
public getYearRange = (start: Date, end: Date) => {
const startDate = startOfYear(start);
const endDate = endOfYear(end);
const years: Date[] = [];
let current = startDate;
while (isBefore(current, endDate)) {
years.push(current);
current = addYears(current, 1);
}
return years;
};
}