umami/src/lib/date.js

269 lines
5.9 KiB
JavaScript
Raw Normal View History

2020-07-28 06:52:14 +00:00
import moment from 'moment-timezone';
import {
addMinutes,
addHours,
2020-07-31 03:11:43 +00:00
addDays,
2020-07-31 06:08:33 +00:00
addMonths,
2020-09-13 08:38:14 +00:00
addYears,
2020-07-31 03:11:43 +00:00
subHours,
subDays,
subMonths,
subYears,
2020-10-09 06:26:05 +00:00
startOfMinute,
2020-07-31 03:11:43 +00:00
startOfHour,
startOfDay,
2020-07-31 05:40:16 +00:00
startOfWeek,
startOfMonth,
2020-07-31 06:08:33 +00:00
startOfYear,
endOfHour,
endOfDay,
2020-07-31 05:40:16 +00:00
endOfWeek,
endOfMonth,
2020-07-31 06:08:33 +00:00
endOfYear,
2020-10-09 06:26:05 +00:00
differenceInMinutes,
differenceInHours,
2020-07-31 05:40:16 +00:00
differenceInCalendarDays,
2020-09-13 08:26:54 +00:00
differenceInCalendarMonths,
2020-09-13 08:38:14 +00:00
differenceInCalendarYears,
2021-02-27 06:41:05 +00:00
format,
2023-07-26 06:59:08 +00:00
max,
min,
isDate,
} from 'date-fns';
2021-11-21 01:18:25 +00:00
import { getDateLocale } from 'lib/lang';
2020-07-28 06:52:14 +00:00
2023-07-26 06:59:08 +00:00
const dateFuncs = {
minute: [differenceInMinutes, addMinutes, startOfMinute],
hour: [differenceInHours, addHours, startOfHour],
day: [differenceInCalendarDays, addDays, startOfDay],
month: [differenceInCalendarMonths, addMonths, startOfMonth],
year: [differenceInCalendarYears, addYears, startOfYear],
};
2020-07-28 06:52:14 +00:00
export function getTimezone() {
return moment.tz.guess();
}
2020-07-28 06:52:14 +00:00
export function getLocalTime(t) {
return addMinutes(new Date(t), new Date().getTimezoneOffset());
}
export function parseDateRange(value, locale = 'en-US') {
if (typeof value === 'object') {
2023-05-29 05:28:11 +00:00
return value;
}
2023-07-25 22:17:50 +00:00
if (value === 'all') {
return {
startDate: new Date(0),
endDate: new Date(1),
value,
};
}
2023-05-29 05:28:11 +00:00
if (value?.startsWith?.('range')) {
2023-07-26 16:55:54 +00:00
const [, startTime, endTime] = value.split(':');
2023-05-29 05:28:11 +00:00
2023-07-26 16:55:54 +00:00
const startDate = new Date(+startTime);
const endDate = new Date(+endTime);
2023-05-29 05:28:11 +00:00
return {
2023-05-29 05:28:11 +00:00
...getDateRangeValues(startDate, endDate),
value,
};
}
const now = new Date();
2021-11-21 01:18:25 +00:00
const dateLocale = getDateLocale(locale);
2023-05-29 05:28:11 +00:00
const match = value?.match?.(/^(?<num>[0-9-]+)(?<unit>hour|day|week|month|year)$/);
2021-12-20 06:49:08 +00:00
2023-05-29 05:28:11 +00:00
if (!match) return null;
2021-12-20 06:49:08 +00:00
const { num, unit } = match.groups;
2020-07-31 05:40:16 +00:00
if (+num === 1) {
switch (unit) {
case 'day':
return {
startDate: startOfDay(now),
endDate: endOfDay(now),
unit: 'hour',
value,
};
case 'week':
return {
2021-11-05 00:09:03 +00:00
startDate: startOfWeek(now, { locale: dateLocale }),
endDate: endOfWeek(now, { locale: dateLocale }),
2020-07-31 05:40:16 +00:00
unit: 'day',
value,
};
case 'month':
return {
startDate: startOfMonth(now),
endDate: endOfMonth(now),
unit: 'day',
value,
};
2020-07-31 06:08:33 +00:00
case 'year':
return {
startDate: startOfYear(now),
endDate: endOfYear(now),
unit: 'month',
value,
};
2020-07-31 05:40:16 +00:00
}
}
2020-07-30 06:25:52 +00:00
if (+num === -1) {
switch (unit) {
case 'day':
return {
startDate: subDays(startOfDay(now), 1),
endDate: subDays(endOfDay(now), 1),
unit: 'hour',
value,
};
case 'week':
return {
startDate: subDays(startOfWeek(now, { locale: dateLocale }), 7),
endDate: subDays(endOfWeek(now, { locale: dateLocale }), 1),
unit: 'day',
value,
};
case 'month':
return {
startDate: subMonths(startOfMonth(now), 1),
endDate: subMonths(endOfMonth(now), 1),
unit: 'day',
value,
};
case 'year':
return {
startDate: subYears(startOfYear(now), 1),
endDate: subYears(endOfYear(now), 1),
unit: 'month',
value,
};
}
}
2020-07-30 06:25:52 +00:00
switch (unit) {
case 'day':
return {
2020-07-31 05:40:16 +00:00
startDate: subDays(startOfDay(now), num - 1),
endDate: endOfDay(now),
2020-07-30 06:25:52 +00:00
unit,
2020-07-31 03:11:43 +00:00
value,
};
2020-07-30 06:25:52 +00:00
case 'hour':
return {
2020-07-31 05:40:16 +00:00
startDate: subHours(startOfHour(now), num - 1),
endDate: endOfHour(now),
2020-07-30 06:25:52 +00:00
unit,
2020-07-31 03:11:43 +00:00
value,
};
}
}
2023-07-26 06:59:08 +00:00
export function getAllowedUnits(startDate, endDate) {
2023-07-25 22:17:50 +00:00
const units = ['minute', 'hour', 'day', 'month', 'year'];
2023-07-26 06:59:08 +00:00
const minUnit = getMinimumUnit(startDate, endDate);
const index = units.indexOf(minUnit);
2023-07-25 22:17:50 +00:00
2023-07-26 06:59:08 +00:00
return index >= 0 ? units.splice(index) : [];
2023-07-25 22:17:50 +00:00
}
export function getMinimumUnit(startDate, endDate) {
if (differenceInMinutes(endDate, startDate) <= 60) {
return 'minute';
} else if (differenceInHours(endDate, startDate) <= 48) {
return 'hour';
2020-09-13 08:26:54 +00:00
} else if (differenceInCalendarDays(endDate, startDate) <= 90) {
2023-07-25 22:17:50 +00:00
return 'day';
2020-09-13 08:38:14 +00:00
} else if (differenceInCalendarMonths(endDate, startDate) <= 24) {
2023-07-25 22:17:50 +00:00
return 'month';
2020-09-13 08:26:54 +00:00
}
2023-07-25 22:17:50 +00:00
return 'year';
}
export function getDateRangeValues(startDate, endDate) {
return {
startDate: startOfDay(startDate),
endDate: endOfDay(endDate),
unit: getMinimumUnit(startDate, endDate),
};
2020-09-13 08:26:54 +00:00
}
2020-09-23 15:22:40 +00:00
export function getDateFromString(str) {
const [ymd, hms] = str.split(' ');
const [year, month, day] = ymd.split('-');
if (hms) {
const [hour, min, sec] = hms.split(':');
return new Date(year, month - 1, day, hour, min, sec);
}
return new Date(year, month - 1, day);
}
export function getDateArray(data, startDate, endDate, unit) {
const arr = [];
const [diff, add, normalize] = dateFuncs[unit];
2020-07-31 05:40:16 +00:00
const n = diff(endDate, startDate) + 1;
2023-04-04 06:22:20 +00:00
function findData(date) {
2023-04-10 16:44:25 +00:00
const d = data.find(({ x }) => {
return normalize(getDateFromString(x)).getTime() === date.getTime();
2020-08-12 03:05:40 +00:00
});
2020-07-31 05:40:16 +00:00
return d?.y || 0;
}
for (let i = 0; i < n; i++) {
const t = normalize(add(startDate, i));
const y = findData(t);
arr.push({ x: t, y });
}
return arr;
}
2020-08-27 20:46:05 +00:00
export function getDateLength(startDate, endDate, unit) {
const [diff] = dateFuncs[unit];
return diff(endDate, startDate) + 1;
}
2021-02-27 06:41:05 +00:00
export const customFormats = {
'en-US': {
p: 'ha',
pp: 'h:mm:ss',
},
2022-11-07 18:38:43 +00:00
'fr-FR': {
'M/d': 'd/M',
'MMM d': 'd MMM',
'EEE M/d': 'EEE d/M',
},
2021-02-27 06:41:05 +00:00
};
2023-08-16 17:50:28 +00:00
export function formatDate(date, str, locale = 'en-US') {
2023-08-15 05:36:18 +00:00
return format(
typeof date === 'string' ? new Date(date) : date,
customFormats?.[locale]?.[str] || str,
{
locale: getDateLocale(locale),
},
);
2021-02-27 06:41:05 +00:00
}
2023-07-26 06:59:08 +00:00
export function maxDate(...args) {
return max(args.filter(n => isDate(n)));
}
export function minDate(...args) {
return min(args.filter(n => isDate(n)));
}