Signal-Desktop/ts/util/getMutedUntilText.ts

28 lines
726 B
TypeScript
Raw Permalink Normal View History

// Copyright 2021-2022 Signal Messenger, LLC
2021-08-05 12:35:33 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
import moment from 'moment';
import type { LocalizerType } from '../types/Util';
import { isToday } from './timestamp';
2021-08-05 12:35:33 +00:00
/**
* Returns something like "Muted until 6:09 PM", localized.
*
* Shouldn't be called with `0`.
*/
export function getMutedUntilText(
muteExpiresAt: number,
i18n: LocalizerType
): string {
if (Number(muteExpiresAt) >= Number.MAX_SAFE_INTEGER) {
return i18n('muteExpirationLabelAlways');
}
const expires = moment(muteExpiresAt);
const muteExpirationUntil = isToday(expires)
2021-08-05 12:35:33 +00:00
? expires.format('LT')
: expires.format('L, LT');
return i18n('muteExpirationLabel', [muteExpirationUntil]);
}