umami/lib/date.js

208 lines
4.7 KiB
JavaScript
Raw Normal View History

2020-07-28 08:52:14 +02:00
import moment from 'moment-timezone';
import {
addMinutes,
addHours,
2020-07-31 05:11:43 +02:00
addDays,
2020-07-31 08:08:33 +02:00
addMonths,
2020-09-13 10:38:14 +02:00
addYears,
2020-07-31 05:11:43 +02:00
subHours,
subDays,
subMonths,
subYears,
2020-10-09 08:26:05 +02:00
startOfMinute,
2020-07-31 05:11:43 +02:00
startOfHour,
startOfDay,
2020-07-31 07:40:16 +02:00
startOfWeek,
startOfMonth,
2020-07-31 08:08:33 +02:00
startOfYear,
endOfHour,
endOfDay,
2020-07-31 07:40:16 +02:00
endOfWeek,
endOfMonth,
2020-07-31 08:08:33 +02:00
endOfYear,
2020-10-09 08:26:05 +02:00
differenceInMinutes,
differenceInHours,
2020-07-31 07:40:16 +02:00
differenceInCalendarDays,
2020-09-13 10:26:54 +02:00
differenceInCalendarMonths,
2020-09-13 10:38:14 +02:00
differenceInCalendarYears,
2021-02-27 07:41:05 +01:00
format,
} from 'date-fns';
2021-11-21 02:18:25 +01:00
import { getDateLocale } from 'lib/lang';
2020-07-28 08:52:14 +02:00
export function getTimezone() {
return moment.tz.guess();
}
2020-07-28 08:52:14 +02:00
export function getLocalTime(t) {
return addMinutes(new Date(t), new Date().getTimezoneOffset());
}
export function getDateRange(value, locale = 'en-US') {
const now = new Date();
2021-11-21 02:18:25 +01:00
const dateLocale = getDateLocale(locale);
const match = value.match(/^(?<num>[0-9-]+)(?<unit>hour|day|week|month|year)$/);
2021-12-20 07:49:08 +01:00
if (!match) return;
const { num, unit } = match.groups;
2020-07-31 07:40:16 +02:00
if (+num === 1) {
switch (unit) {
case 'day':
return {
startDate: startOfDay(now),
endDate: endOfDay(now),
unit: 'hour',
value,
};
case 'week':
return {
2021-11-05 01:09:03 +01:00
startDate: startOfWeek(now, { locale: dateLocale }),
endDate: endOfWeek(now, { locale: dateLocale }),
2020-07-31 07:40:16 +02:00
unit: 'day',
value,
};
case 'month':
return {
startDate: startOfMonth(now),
endDate: endOfMonth(now),
unit: 'day',
value,
};
2020-07-31 08:08:33 +02:00
case 'year':
return {
startDate: startOfYear(now),
endDate: endOfYear(now),
unit: 'month',
value,
};
2020-07-31 07:40:16 +02:00
}
}
2020-07-30 08:25:52 +02: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 08:25:52 +02:00
switch (unit) {
case 'day':
return {
2020-07-31 07:40:16 +02:00
startDate: subDays(startOfDay(now), num - 1),
endDate: endOfDay(now),
2020-07-30 08:25:52 +02:00
unit,
2020-07-31 05:11:43 +02:00
value,
};
2020-07-30 08:25:52 +02:00
case 'hour':
return {
2020-07-31 07:40:16 +02:00
startDate: subHours(startOfHour(now), num - 1),
endDate: endOfHour(now),
2020-07-30 08:25:52 +02:00
unit,
2020-07-31 05:11:43 +02:00
value,
};
}
}
2020-09-13 10:26:54 +02:00
export function getDateRangeValues(startDate, endDate) {
let unit = 'year';
2020-09-17 01:28:54 +02:00
if (differenceInHours(endDate, startDate) <= 48) {
unit = 'hour';
2020-09-13 10:26:54 +02:00
} else if (differenceInCalendarDays(endDate, startDate) <= 90) {
unit = 'day';
2020-09-13 10:38:14 +02:00
} else if (differenceInCalendarMonths(endDate, startDate) <= 24) {
unit = 'month';
2020-09-13 10:26:54 +02:00
}
return { startDate: startOfDay(startDate), endDate: endOfDay(endDate), unit };
2020-09-13 10:26:54 +02:00
}
2020-09-23 17:22:40 +02: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);
}
const dateFuncs = {
2020-10-09 08:26:05 +02:00
minute: [differenceInMinutes, addMinutes, startOfMinute],
hour: [differenceInHours, addHours, startOfHour],
2020-07-31 07:40:16 +02:00
day: [differenceInCalendarDays, addDays, startOfDay],
2020-09-13 10:26:54 +02:00
month: [differenceInCalendarMonths, addMonths, startOfMonth],
2020-09-13 10:38:14 +02:00
year: [differenceInCalendarYears, addYears, startOfYear],
};
export function getDateArray(data, startDate, endDate, unit) {
const arr = [];
const [diff, add, normalize] = dateFuncs[unit];
2020-07-31 07:40:16 +02:00
const n = diff(endDate, startDate) + 1;
function findData(t) {
2020-08-12 05:05:40 +02:00
const x = data.find(e => {
2020-09-23 17:22:40 +02:00
return normalize(getDateFromString(e.t)).getTime() === t.getTime();
2020-08-12 05:05:40 +02:00
});
2020-07-31 07:40:16 +02:00
return x?.y || 0;
}
for (let i = 0; i < n; i++) {
const t = normalize(add(startDate, i));
const y = findData(t);
2020-08-27 12:42:24 +02:00
arr.push({ ...data[i], t, y });
}
return arr;
}
2020-08-27 22:46:05 +02:00
export function getDateLength(startDate, endDate, unit) {
const [diff] = dateFuncs[unit];
return diff(endDate, startDate) + 1;
}
2021-02-27 07:41:05 +01:00
export const customFormats = {
'en-US': {
p: 'ha',
pp: 'h:mm:ss',
},
};
export function dateFormat(date, str, locale = 'en-US') {
return format(date, customFormats?.[locale]?.[str] || str, {
2021-11-21 02:18:25 +01:00
locale: getDateLocale(locale),
2021-02-27 07:41:05 +01:00
});
}