Files
Desktop/ts/components/conversation/conversation-details/ConversationNotificationsSettings.dom.tsx
Fedor Indutny 44076ece79 Rename files
2025-10-16 23:45:44 -07:00

146 lines
4.2 KiB
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React, { useMemo, useId } from 'react';
import type { ConversationTypeType } from '../../../state/ducks/conversations.preload.js';
import type { LocalizerType } from '../../../types/Util.std.js';
import { PanelSection } from './PanelSection.dom.js';
import { PanelRow } from './PanelRow.dom.js';
import {
ConversationDetailsIcon,
IconType,
} from './ConversationDetailsIcon.dom.js';
import { Select } from '../../Select.dom.js';
import { isConversationMuted } from '../../../util/isConversationMuted.std.js';
import { getMuteOptions } from '../../../util/getMuteOptions.std.js';
import { parseIntOrThrow } from '../../../util/parseIntOrThrow.std.js';
export type PropsType = {
id: string;
conversationType: ConversationTypeType;
dontNotifyForMentionsIfMuted: boolean;
i18n: LocalizerType;
muteExpiresAt: undefined | number;
setDontNotifyForMentionsIfMuted: (
conversationId: string,
dontNotifyForMentionsIfMuted: boolean
) => unknown;
setMuteExpiration: (
conversationId: string,
muteExpiresAt: undefined | number
) => unknown;
};
export function ConversationNotificationsSettings({
id,
conversationType,
dontNotifyForMentionsIfMuted,
i18n,
muteExpiresAt,
setMuteExpiration,
setDontNotifyForMentionsIfMuted,
}: PropsType): JSX.Element {
const muteNotificationsSelectId = useId();
const mentionsSelectId = useId();
const muteOptions = useMemo(
() => [
...(isConversationMuted({ muteExpiresAt })
? []
: [
{
disabled: true,
text: i18n('icu:notMuted'),
value: -1,
},
]),
...getMuteOptions(muteExpiresAt, i18n).map(
({ disabled, name, value }) => ({
disabled,
text: name,
value,
})
),
],
[i18n, muteExpiresAt]
);
const onMuteChange = (rawValue: string) => {
const ms = parseIntOrThrow(
rawValue,
'NotificationSettings: mute ms was not an integer'
);
setMuteExpiration(id, ms);
};
const onChangeDontNotifyForMentionsIfMuted = (rawValue: string) => {
setDontNotifyForMentionsIfMuted(id, rawValue === 'yes');
};
return (
<div className="conversation-details-panel">
<PanelSection>
<PanelRow
icon={
<ConversationDetailsIcon
ariaLabel={i18n('icu:muteNotificationsTitle')}
icon={IconType.mute}
/>
}
label={
<label htmlFor={muteNotificationsSelectId}>
{i18n('icu:muteNotificationsTitle')}
</label>
}
right={
<Select
id={muteNotificationsSelectId}
options={muteOptions}
onChange={onMuteChange}
value={-1}
/>
}
/>
{conversationType === 'group' && (
<PanelRow
icon={
<ConversationDetailsIcon
ariaLabel={i18n(
'icu:ConversationNotificationsSettings__mentions__label'
)}
icon={IconType.mention}
/>
}
label={
<label htmlFor={mentionsSelectId}>
{i18n('icu:ConversationNotificationsSettings__mentions__label')}
</label>
}
info={i18n('icu:ConversationNotificationsSettings__mentions__info')}
right={
<Select
id={mentionsSelectId}
options={[
{
text: i18n(
'icu:ConversationNotificationsSettings__mentions__select__always-notify'
),
value: 'no',
},
{
text: i18n(
'icu:ConversationNotificationsSettings__mentions__select__dont-notify-for-mentions-if-muted'
),
value: 'yes',
},
]}
onChange={onChangeDontNotifyForMentionsIfMuted}
value={dontNotifyForMentionsIfMuted ? 'yes' : 'no'}
/>
}
/>
)}
</PanelSection>
</div>
);
}