Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
140 lines
4.7 KiB
TypeScript
140 lines
4.7 KiB
TypeScript
import React, { useCallback, useMemo } from 'react';
|
|
import { Divider } from 'react-native-paper';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
|
|
import { IReduxState } from '../../../app/types';
|
|
import { updateSettings } from '../../../base/settings/actions';
|
|
import Switch from '../../../base/ui/components/native/Switch';
|
|
import { getNotificationsTabProps } from '../../functions.any';
|
|
|
|
import FormRow from './FormRow';
|
|
import FormSection from './FormSection';
|
|
import styles from './styles';
|
|
|
|
const NotificationsSection = () => {
|
|
const dispatch = useDispatch();
|
|
const {
|
|
soundsIncomingMessage,
|
|
soundsParticipantJoined,
|
|
soundsParticipantKnocking,
|
|
soundsParticipantLeft,
|
|
soundsReactions,
|
|
soundsTalkWhileMuted,
|
|
enableReactions,
|
|
enabledNotifications,
|
|
disabledSounds,
|
|
moderatorMutedSoundsReactions
|
|
} = useSelector((state: IReduxState) => getNotificationsTabProps(state));
|
|
|
|
const sounds = useMemo(() => {
|
|
const partialSounds = [
|
|
{
|
|
label: 'settings.reactions',
|
|
state: soundsReactions,
|
|
name: 'soundsReactions',
|
|
disabled: Boolean(moderatorMutedSoundsReactions
|
|
|| disabledSounds.includes('REACTION_SOUND'))
|
|
},
|
|
{
|
|
label: 'settings.incomingMessage',
|
|
state: soundsIncomingMessage,
|
|
name: 'soundsIncomingMessage'
|
|
},
|
|
{
|
|
label: 'settings.participantJoined',
|
|
state: soundsParticipantJoined,
|
|
name: 'soundsParticipantJoined'
|
|
},
|
|
{
|
|
label: 'settings.participantLeft',
|
|
state: soundsParticipantLeft,
|
|
name: 'soundsParticipantLeft'
|
|
},
|
|
{
|
|
label: 'settings.talkWhileMuted',
|
|
state: soundsTalkWhileMuted,
|
|
name: 'soundsTalkWhileMuted'
|
|
},
|
|
{
|
|
label: 'settings.participantKnocking',
|
|
state: soundsParticipantKnocking,
|
|
name: 'soundsParticipantKnocking'
|
|
}
|
|
];
|
|
|
|
if (!enableReactions) {
|
|
partialSounds.shift();
|
|
}
|
|
|
|
return partialSounds;
|
|
|
|
}, [ soundsReactions,
|
|
soundsIncomingMessage,
|
|
soundsParticipantJoined,
|
|
soundsParticipantLeft,
|
|
soundsTalkWhileMuted,
|
|
soundsParticipantKnocking,
|
|
enableReactions ]);
|
|
|
|
const onSoundToggled = useCallback((name: string) => (enabled?: boolean) => {
|
|
dispatch(updateSettings({ [name]: enabled }));
|
|
}, [ dispatch, updateSettings ]);
|
|
|
|
|
|
const onNotificationToggled = useCallback((name: string) => (enabled?: boolean) => {
|
|
dispatch(updateSettings({
|
|
userSelectedNotifications: {
|
|
...enabledNotifications,
|
|
[name]: Boolean(enabled)
|
|
}
|
|
}
|
|
)
|
|
);
|
|
}, [ dispatch, updateSettings, enabledNotifications ]);
|
|
|
|
return (
|
|
<>
|
|
<FormSection
|
|
label = 'settings.playSounds'>
|
|
{
|
|
sounds.map(({ label, state, name, disabled }) => (
|
|
<FormRow
|
|
key = { label }
|
|
label = { label }>
|
|
<Switch
|
|
checked = { Boolean(state) }
|
|
disabled = { disabled }
|
|
onChange = { onSoundToggled(name) } />
|
|
</FormRow>
|
|
))
|
|
}
|
|
</FormSection>
|
|
{
|
|
Object.keys(enabledNotifications).length > 0 && (
|
|
<>
|
|
{/* @ts-ignore */}
|
|
<Divider style = { styles.fieldSeparator } />
|
|
<FormSection
|
|
label = 'notify.displayNotifications'>
|
|
{
|
|
Object.keys(enabledNotifications).map(name => (
|
|
<FormRow
|
|
key = { name }
|
|
label = { name }>
|
|
<Switch
|
|
checked = { Boolean(enabledNotifications[name]) }
|
|
onChange = { onNotificationToggled(name) } />
|
|
</FormRow>)
|
|
)
|
|
}
|
|
</FormSection>
|
|
</>
|
|
)
|
|
|
|
}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default NotificationsSection;
|