2023-02-18 13:11:01 +03:00
|
|
|
import { endOfDay, startOfDay, subDays } from 'date-fns';
|
2021-12-22 22:08:28 +03:00
|
|
|
import { cond, filter, isEmpty, T } from 'ramda';
|
2023-02-18 12:40:37 +03:00
|
|
|
import type { DateOrString } from './date';
|
2023-07-31 19:10:34 +03:00
|
|
|
import { formatInternational, isBeforeOrEqual, now, parseISO } from './date';
|
2022-12-03 14:15:36 +03:00
|
|
|
|
2020-12-15 00:58:15 +03:00
|
|
|
export interface DateRange {
|
2021-06-24 21:13:06 +03:00
|
|
|
startDate?: Date | null;
|
|
|
|
endDate?: Date | null;
|
2020-12-15 00:58:15 +03:00
|
|
|
}
|
|
|
|
|
2022-12-05 19:18:00 +03:00
|
|
|
export const ALL = 'all';
|
2022-12-03 14:45:25 +03:00
|
|
|
const INTERVAL_TO_STRING_MAP = {
|
2020-12-15 00:58:15 +03:00
|
|
|
today: 'Today',
|
|
|
|
yesterday: 'Yesterday',
|
|
|
|
last7Days: 'Last 7 days',
|
|
|
|
last30Days: 'Last 30 days',
|
|
|
|
last90Days: 'Last 90 days',
|
2021-12-22 22:08:28 +03:00
|
|
|
last180Days: 'Last 180 days',
|
2020-12-15 00:58:15 +03:00
|
|
|
last365Days: 'Last 365 days',
|
2022-12-03 14:45:25 +03:00
|
|
|
[ALL]: undefined,
|
2020-12-15 00:58:15 +03:00
|
|
|
};
|
|
|
|
|
2022-12-03 14:45:25 +03:00
|
|
|
export type DateInterval = keyof typeof INTERVAL_TO_STRING_MAP;
|
|
|
|
|
|
|
|
const INTERVALS = Object.keys(INTERVAL_TO_STRING_MAP) as DateInterval[];
|
|
|
|
|
|
|
|
export const dateRangeIsEmpty = (dateRange?: DateRange): boolean => dateRange === undefined
|
|
|
|
|| isEmpty(filter(Boolean, dateRange as any));
|
|
|
|
|
|
|
|
export const rangeIsInterval = (range?: DateRange | DateInterval): range is DateInterval =>
|
|
|
|
typeof range === 'string' && INTERVALS.includes(range);
|
|
|
|
|
2023-07-31 19:10:34 +03:00
|
|
|
export const DATE_INTERVALS = INTERVALS.filter((value) => value !== ALL) as Exclude<DateInterval, typeof ALL>[];
|
|
|
|
|
|
|
|
const dateOrNull = (date?: string): Date | null => (date ? parseISO(date) : null);
|
2021-03-06 18:54:43 +03:00
|
|
|
|
2022-11-26 11:11:46 +03:00
|
|
|
export const datesToDateRange = (startDate?: string, endDate?: string): DateRange => ({
|
|
|
|
startDate: dateOrNull(startDate),
|
|
|
|
endDate: dateOrNull(endDate),
|
|
|
|
});
|
|
|
|
|
2020-12-15 00:58:15 +03:00
|
|
|
const dateRangeToString = (range?: DateRange): string | undefined => {
|
|
|
|
if (!range || dateRangeIsEmpty(range)) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (range.startDate && !range.endDate) {
|
|
|
|
return `Since ${formatInternational(range.startDate)}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!range.startDate && range.endDate) {
|
|
|
|
return `Until ${formatInternational(range.endDate)}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return `${formatInternational(range.startDate)} - ${formatInternational(range.endDate)}`;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const rangeOrIntervalToString = (range?: DateRange | DateInterval): string | undefined => {
|
2022-12-03 14:45:25 +03:00
|
|
|
if (!range || range === ALL) {
|
2020-12-15 00:58:15 +03:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rangeIsInterval(range)) {
|
|
|
|
return dateRangeToString(range);
|
|
|
|
}
|
|
|
|
|
|
|
|
return INTERVAL_TO_STRING_MAP[range];
|
|
|
|
};
|
|
|
|
|
2022-12-05 19:18:00 +03:00
|
|
|
const startOfDaysAgo = (daysAgo: number) => startOfDay(subDays(now(), daysAgo));
|
|
|
|
const endingToday = (startDate: Date): DateRange => ({ startDate, endDate: endOfDay(now()) });
|
2023-07-29 11:43:15 +03:00
|
|
|
const equals = (value: any) => (otherValue: any) => value === otherValue;
|
2021-06-24 21:13:06 +03:00
|
|
|
|
2022-12-05 19:18:00 +03:00
|
|
|
export const intervalToDateRange = cond<[DateInterval | undefined], DateRange>([
|
2022-12-05 19:29:59 +03:00
|
|
|
[equals('today'), () => endingToday(startOfDay(now()))],
|
|
|
|
[equals('yesterday'), () => ({ startDate: startOfDaysAgo(1), endDate: endOfDay(subDays(now(), 1)) })],
|
|
|
|
[equals('last7Days'), () => endingToday(startOfDaysAgo(7))],
|
|
|
|
[equals('last30Days'), () => endingToday(startOfDaysAgo(30))],
|
|
|
|
[equals('last90Days'), () => endingToday(startOfDaysAgo(90))],
|
|
|
|
[equals('last180Days'), () => endingToday(startOfDaysAgo(180))],
|
|
|
|
[equals('last365Days'), () => endingToday(startOfDaysAgo(365))],
|
2022-12-05 19:18:00 +03:00
|
|
|
[T, () => ({})],
|
|
|
|
]);
|
2021-12-22 22:08:28 +03:00
|
|
|
|
|
|
|
export const dateToMatchingInterval = (date: DateOrString): DateInterval => {
|
2022-12-05 19:18:00 +03:00
|
|
|
const theDate = parseISO(date);
|
2021-12-22 22:08:28 +03:00
|
|
|
|
|
|
|
return cond<never, DateInterval>([
|
2022-12-05 19:18:00 +03:00
|
|
|
[() => isBeforeOrEqual(startOfDay(now()), theDate), () => 'today'],
|
2022-03-26 14:17:42 +03:00
|
|
|
[() => isBeforeOrEqual(startOfDaysAgo(1), theDate), () => 'yesterday'],
|
|
|
|
[() => isBeforeOrEqual(startOfDaysAgo(7), theDate), () => 'last7Days'],
|
|
|
|
[() => isBeforeOrEqual(startOfDaysAgo(30), theDate), () => 'last30Days'],
|
|
|
|
[() => isBeforeOrEqual(startOfDaysAgo(90), theDate), () => 'last90Days'],
|
|
|
|
[() => isBeforeOrEqual(startOfDaysAgo(180), theDate), () => 'last180Days'],
|
|
|
|
[() => isBeforeOrEqual(startOfDaysAgo(365), theDate), () => 'last365Days'],
|
2022-12-03 14:45:25 +03:00
|
|
|
[T, () => ALL],
|
2021-12-22 22:08:28 +03:00
|
|
|
])();
|
|
|
|
};
|
2022-12-03 14:15:36 +03:00
|
|
|
|
|
|
|
export const toDateRange = (rangeOrInterval: DateRange | DateInterval): DateRange => {
|
|
|
|
if (rangeIsInterval(rangeOrInterval)) {
|
|
|
|
return intervalToDateRange(rangeOrInterval);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rangeOrInterval;
|
|
|
|
};
|