54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as durations from './durations';
|
|
import type { LocalizerType } from '../types/Util';
|
|
import { getMutedUntilText } from './getMutedUntilText';
|
|
import { isConversationMuted } from './isConversationMuted';
|
|
|
|
export type MuteOption = {
|
|
name: string;
|
|
disabled?: boolean;
|
|
value: number;
|
|
};
|
|
|
|
export function getMuteOptions(
|
|
muteExpiresAt: undefined | number,
|
|
i18n: LocalizerType
|
|
): Array<MuteOption> {
|
|
return [
|
|
...(muteExpiresAt && isConversationMuted({ muteExpiresAt })
|
|
? [
|
|
{
|
|
name: getMutedUntilText(muteExpiresAt, i18n),
|
|
disabled: true,
|
|
value: -1,
|
|
},
|
|
{
|
|
name: i18n('icu:unmute'),
|
|
value: 0,
|
|
},
|
|
]
|
|
: []),
|
|
{
|
|
name: i18n('icu:muteHour'),
|
|
value: durations.HOUR,
|
|
},
|
|
{
|
|
name: i18n('icu:muteEightHours'),
|
|
value: 8 * durations.HOUR,
|
|
},
|
|
{
|
|
name: i18n('icu:muteDay'),
|
|
value: durations.DAY,
|
|
},
|
|
{
|
|
name: i18n('icu:muteWeek'),
|
|
value: durations.WEEK,
|
|
},
|
|
{
|
|
name: i18n('icu:muteAlways'),
|
|
value: Number.MAX_SAFE_INTEGER,
|
|
},
|
|
];
|
|
}
|