228 lines
6.7 KiB
TypeScript
228 lines
6.7 KiB
TypeScript
import React, { useCallback, useMemo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { ConditionKind, IPushRules, PushRuleKind, RuleId } from 'matrix-js-sdk';
|
|
import { Box, Text, Badge } from 'folds';
|
|
import { useAccountData } from '../../../hooks/useAccountData';
|
|
import { AccountDataEvent } from '../../../../types/matrix/accountData';
|
|
import { SequenceCard } from '../../../components/sequence-card';
|
|
import { SequenceCardStyle } from '../styles.css';
|
|
import { SettingTile } from '../../../components/setting-tile';
|
|
import { useMatrixClient } from '../../../hooks/useMatrixClient';
|
|
import { useUserProfile } from '../../../hooks/useUserProfile';
|
|
import { getMxIdLocalPart } from '../../../utils/matrix';
|
|
import { makePushRuleData, PushRuleData, usePushRule } from '../../../hooks/usePushRule';
|
|
import {
|
|
getNotificationModeActions,
|
|
NotificationMode,
|
|
NotificationModeOptions,
|
|
useNotificationModeActions,
|
|
} from '../../../hooks/useNotificationMode';
|
|
import { NotificationModeSwitcher } from './NotificationModeSwitcher';
|
|
|
|
const NOTIFY_MODE_OPS: NotificationModeOptions = {
|
|
highlight: true,
|
|
};
|
|
const getDefaultIsUserMention = (userId: string): PushRuleData =>
|
|
makePushRuleData(
|
|
PushRuleKind.Override,
|
|
RuleId.IsUserMention,
|
|
getNotificationModeActions(NotificationMode.NotifyLoud, { highlight: true }),
|
|
[
|
|
{
|
|
kind: ConditionKind.EventPropertyContains,
|
|
key: 'content.m\\.mentions.user_ids',
|
|
value: userId,
|
|
},
|
|
]
|
|
);
|
|
|
|
const DefaultContainsDisplayName = makePushRuleData(
|
|
PushRuleKind.Override,
|
|
RuleId.ContainsDisplayName,
|
|
getNotificationModeActions(NotificationMode.NotifyLoud, { highlight: true }),
|
|
[
|
|
{
|
|
kind: ConditionKind.ContainsDisplayName,
|
|
},
|
|
]
|
|
);
|
|
|
|
const getDefaultContainsUsername = (username: string) =>
|
|
makePushRuleData(
|
|
PushRuleKind.ContentSpecific,
|
|
RuleId.ContainsUserName,
|
|
getNotificationModeActions(NotificationMode.NotifyLoud, { highlight: true }),
|
|
undefined,
|
|
username
|
|
);
|
|
|
|
const DefaultIsRoomMention = makePushRuleData(
|
|
PushRuleKind.Override,
|
|
RuleId.IsRoomMention,
|
|
getNotificationModeActions(NotificationMode.Notify, { highlight: true }),
|
|
[
|
|
{
|
|
kind: ConditionKind.EventPropertyIs,
|
|
key: 'content.m\\.mentions.room',
|
|
value: true,
|
|
},
|
|
{
|
|
kind: ConditionKind.SenderNotificationPermission,
|
|
key: 'room',
|
|
},
|
|
]
|
|
);
|
|
|
|
const DefaultAtRoomNotification = makePushRuleData(
|
|
PushRuleKind.Override,
|
|
RuleId.AtRoomNotification,
|
|
getNotificationModeActions(NotificationMode.Notify, { highlight: true }),
|
|
[
|
|
{
|
|
kind: ConditionKind.EventMatch,
|
|
key: 'content.body',
|
|
pattern: '@room',
|
|
},
|
|
{
|
|
kind: ConditionKind.SenderNotificationPermission,
|
|
key: 'room',
|
|
},
|
|
]
|
|
);
|
|
|
|
type PushRulesProps = {
|
|
ruleId: RuleId;
|
|
pushRules: IPushRules;
|
|
defaultPushRuleData: PushRuleData;
|
|
};
|
|
function MentionModeSwitcher({ ruleId, pushRules, defaultPushRuleData }: PushRulesProps) {
|
|
const mx = useMatrixClient();
|
|
|
|
const { kind, pushRule } = usePushRule(pushRules, ruleId) ?? defaultPushRuleData;
|
|
const getModeActions = useNotificationModeActions(NOTIFY_MODE_OPS);
|
|
|
|
const handleChange = useCallback(
|
|
async (mode: NotificationMode) => {
|
|
const actions = getModeActions(mode);
|
|
await mx.setPushRuleActions('global', kind, ruleId, actions);
|
|
},
|
|
[mx, getModeActions, kind, ruleId]
|
|
);
|
|
|
|
return <NotificationModeSwitcher pushRule={pushRule} onChange={handleChange} />;
|
|
}
|
|
|
|
export function SpecialMessagesNotifications() {
|
|
const { t } = useTranslation();
|
|
const mx = useMatrixClient();
|
|
const userId = mx.getUserId()!;
|
|
const { displayName } = useUserProfile(userId);
|
|
const pushRulesEvt = useAccountData(AccountDataEvent.PushRules);
|
|
const pushRules = useMemo(
|
|
() => pushRulesEvt?.getContent<IPushRules>() ?? { global: {} },
|
|
[pushRulesEvt]
|
|
);
|
|
|
|
return (
|
|
<Box direction="Column" gap="100">
|
|
<Box alignItems="Center" justifyContent="SpaceBetween" gap="200">
|
|
<Text size="L400">{t('Settings.special_messages')}</Text>
|
|
<Box gap="100">
|
|
<Text size="T200">{t('Settings.badge')}</Text>
|
|
<Badge radii="300" variant="Success" fill="Solid">
|
|
<Text size="L400">1</Text>
|
|
</Badge>
|
|
</Box>
|
|
</Box>
|
|
<SequenceCard
|
|
className={SequenceCardStyle}
|
|
variant="Background"
|
|
direction="Column"
|
|
gap="400"
|
|
>
|
|
<SettingTile
|
|
title={t('Settings.mention_user_id', { userId })}
|
|
after={
|
|
<MentionModeSwitcher
|
|
pushRules={pushRules}
|
|
ruleId={RuleId.IsUserMention}
|
|
defaultPushRuleData={getDefaultIsUserMention(userId)}
|
|
/>
|
|
}
|
|
/>
|
|
</SequenceCard>
|
|
<SequenceCard
|
|
className={SequenceCardStyle}
|
|
variant="Background"
|
|
direction="Column"
|
|
gap="400"
|
|
>
|
|
<SettingTile
|
|
title={
|
|
displayName
|
|
? t('Settings.contains_displayname_value', { displayName })
|
|
: t('Settings.contains_displayname')
|
|
}
|
|
after={
|
|
<MentionModeSwitcher
|
|
pushRules={pushRules}
|
|
ruleId={RuleId.ContainsDisplayName}
|
|
defaultPushRuleData={DefaultContainsDisplayName}
|
|
/>
|
|
}
|
|
/>
|
|
</SequenceCard>
|
|
<SequenceCard
|
|
className={SequenceCardStyle}
|
|
variant="Background"
|
|
direction="Column"
|
|
gap="400"
|
|
>
|
|
<SettingTile
|
|
title={t('Settings.contains_username', { username: getMxIdLocalPart(userId) })}
|
|
after={
|
|
<MentionModeSwitcher
|
|
pushRules={pushRules}
|
|
ruleId={RuleId.ContainsUserName}
|
|
defaultPushRuleData={getDefaultContainsUsername(getMxIdLocalPart(userId) ?? userId)}
|
|
/>
|
|
}
|
|
/>
|
|
</SequenceCard>
|
|
<SequenceCard
|
|
className={SequenceCardStyle}
|
|
variant="Background"
|
|
direction="Column"
|
|
gap="400"
|
|
>
|
|
<SettingTile
|
|
title={t('Settings.mention_room')}
|
|
after={
|
|
<MentionModeSwitcher
|
|
pushRules={pushRules}
|
|
ruleId={RuleId.IsRoomMention}
|
|
defaultPushRuleData={DefaultIsRoomMention}
|
|
/>
|
|
}
|
|
/>
|
|
</SequenceCard>
|
|
<SequenceCard
|
|
className={SequenceCardStyle}
|
|
variant="Background"
|
|
direction="Column"
|
|
gap="400"
|
|
>
|
|
<SettingTile
|
|
title={t('Settings.contains_room')}
|
|
after={
|
|
<MentionModeSwitcher
|
|
pushRules={pushRules}
|
|
ruleId={RuleId.AtRoomNotification}
|
|
defaultPushRuleData={DefaultAtRoomNotification}
|
|
/>
|
|
}
|
|
/>
|
|
</SequenceCard>
|
|
</Box>
|
|
);
|
|
}
|