Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 46x 5x 5x 5x 10x 5x 5x 5x 5x 5x 9x 5x 5x 5x 5x | const DATE_UNITS = {
year: 28_982_400,
month: 2_415_200,
week: 604_800,
day: 86_400,
hour: 3_600,
minute: 60,
second: 1,
};
function getUnitAndValueDate(secondsElapsed: number) {
let unit = "second";
let value = secondsElapsed;
for (const [dateUnit, secondsInUnit] of Object.entries(DATE_UNITS)) {
if (Math.abs(secondsElapsed) >= secondsInUnit) {
value = Math.floor(secondsElapsed / secondsInUnit) * -1;
unit = dateUnit;
break;
}
}
return { value, unit };
}
function getSecondsDiff(timeStamp: number) {
return (Date.now() - timeStamp) / 1000;
}
export function getTimeAgo(timeStamp: number, locale: string): string {
const relativeTimeFormat = new Intl.RelativeTimeFormat(locale);
const secondsElapse = getSecondsDiff(timeStamp);
const { value, unit } = getUnitAndValueDate(secondsElapse);
return relativeTimeFormat.format(value, unit as Intl.RelativeTimeFormatUnit);
}
|