EventMapper/assets/scripts/modules/relative_time.js

27 lines
673 B
JavaScript
Raw Normal View History

2024-06-03 03:54:02 +00:00
// in miliseconds
export const units = {
year: 24 * 60 * 60 * 1000 * 365,
month: (24 * 60 * 60 * 1000 * 365) / 12,
day: 24 * 60 * 60 * 1000,
hour: 60 * 60 * 1000,
minute: 60 * 1000,
second: 1000,
};
export function getRelativeTime(d1, d2, locale) {
let rtf = new Intl.RelativeTimeFormat(locale, {
numeric: "auto",
});
let elapsed = d1 - d2;
// "Math.abs" accounts for both "past" & "future" scenarios
for (var u in units)
if (Math.abs(elapsed) > units[u] || u == "second")
return rtf.format(Math.round(elapsed / units[u]), u);
}
export function getMinutesDifference(d1, d2) {
return (d2.getTime() - d1.getTime()) / units.minute;
}