|
|
|
@ -101,25 +101,23 @@ function formatTimeLeft({ timeLeftMs }: { timeLeftMs: number }) {
|
|
|
|
|
return `0s`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const prefix = 'Message will expire in';
|
|
|
|
|
|
|
|
|
|
if (timeLeft.isBefore(moment.utc(0).add(1, 'minute'))) {
|
|
|
|
|
return `${prefix} ${timeLeft.seconds()}s`;
|
|
|
|
|
return window.i18n('messageWillDisappear', [`${timeLeft.seconds()}s`]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (timeLeft.isBefore(moment.utc(0).add(1, 'hour'))) {
|
|
|
|
|
const extraUnit = timeLeft.seconds() ? ` ${timeLeft.seconds()}s` : '';
|
|
|
|
|
return `${prefix} ${timeLeft.minutes()}m${extraUnit}`;
|
|
|
|
|
return window.i18n('messageWillDisappear', [`${timeLeft.minutes()}m${extraUnit}`]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (timeLeft.isBefore(moment.utc(0).add(1, 'day'))) {
|
|
|
|
|
const extraUnit = timeLeft.minutes() ? ` ${timeLeft.minutes()}m` : '';
|
|
|
|
|
return `${prefix} ${timeLeft.hours()}h${extraUnit}`;
|
|
|
|
|
return window.i18n('messageWillDisappear', [`${timeLeft.hours()}h${extraUnit}`]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (timeLeft.isBefore(moment.utc(0).add(7, 'day'))) {
|
|
|
|
|
const extraUnit = timeLeft.hours() ? ` ${timeLeft.hours()}h` : '';
|
|
|
|
|
return `${prefix} ${timeLeft.dayOfYear() - 1}d${extraUnit}`;
|
|
|
|
|
return window.i18n('messageWillDisappear', [`${timeLeft.dayOfYear() - 1}d${extraUnit}`]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (timeLeft.isBefore(moment.utc(0).add(31, 'day'))) {
|
|
|
|
@ -127,7 +125,7 @@ function formatTimeLeft({ timeLeftMs }: { timeLeftMs: number }) {
|
|
|
|
|
const weeks = Math.floor(days / 7);
|
|
|
|
|
const daysLeft = days % 7;
|
|
|
|
|
const extraUnit = daysLeft ? ` ${daysLeft}d` : '';
|
|
|
|
|
return `${prefix} ${weeks}w${extraUnit}`;
|
|
|
|
|
return window.i18n('messageWillDisappear', [`${weeks}w${extraUnit}`]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return '...';
|
|
|
|
|