* Add GM as DM feature support * Minor fix * Address feedback * Fix case for non set channel notify prop * Fix strings
99 lines
3.8 KiB
TypeScript
99 lines
3.8 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useCallback, useMemo, useState} from 'react';
|
|
import {Platform} from 'react-native';
|
|
|
|
import {updateMe} from '@actions/remote/user';
|
|
import SettingContainer from '@components/settings/container';
|
|
import SettingSeparator from '@components/settings/separator';
|
|
import {useServerUrl} from '@context/server';
|
|
import useAndroidHardwareBackHandler from '@hooks/android_back_handler';
|
|
import useBackNavigation from '@hooks/navigate_back';
|
|
import {popTopScreen} from '@screens/navigation';
|
|
import {getNotificationProps} from '@utils/user';
|
|
|
|
import MobileSendPush from './push_send';
|
|
import MobilePushStatus from './push_status';
|
|
import MobilePushThread from './push_thread';
|
|
|
|
import type UserModel from '@typings/database/models/servers/user';
|
|
import type {AvailableScreens} from '@typings/screens/navigation';
|
|
|
|
type NotificationMobileProps = {
|
|
componentId: AvailableScreens;
|
|
currentUser?: UserModel;
|
|
isCRTEnabled: boolean;
|
|
sendPushNotifications: boolean;
|
|
};
|
|
const NotificationPush = ({componentId, currentUser, isCRTEnabled, sendPushNotifications}: NotificationMobileProps) => {
|
|
const serverUrl = useServerUrl();
|
|
|
|
const notifyProps = useMemo(() => getNotificationProps(currentUser), [currentUser?.notifyProps]);
|
|
|
|
const [pushSend, setPushSend] = useState<UserNotifyPropsPush>(notifyProps.push);
|
|
const [pushStatus, setPushStatus] = useState<UserNotifyPropsPushStatus>(notifyProps.push_status);
|
|
const [pushThread, setPushThreadPref] = useState<UserNotifyPropsPushThreads>(notifyProps?.push_threads || 'all');
|
|
|
|
const onMobilePushThreadChanged = useCallback(() => {
|
|
setPushThreadPref(pushThread === 'all' ? 'mention' : 'all');
|
|
}, [pushThread]);
|
|
|
|
const close = () => popTopScreen(componentId);
|
|
|
|
const canSaveSettings = useCallback(() => {
|
|
const p = pushSend !== notifyProps.push;
|
|
const pT = pushThread !== notifyProps.push_threads;
|
|
const pS = pushStatus !== notifyProps.push_status;
|
|
return p || pT || pS;
|
|
}, [notifyProps, pushSend, pushStatus, pushThread]);
|
|
|
|
const saveNotificationSettings = useCallback(() => {
|
|
const canSave = canSaveSettings();
|
|
if (canSave) {
|
|
const notify_props: UserNotifyProps = {
|
|
...notifyProps,
|
|
push: pushSend,
|
|
push_status: pushStatus,
|
|
push_threads: pushThread,
|
|
};
|
|
updateMe(serverUrl, {notify_props});
|
|
}
|
|
close();
|
|
}, [canSaveSettings, close, notifyProps, pushSend, pushStatus, pushThread, serverUrl]);
|
|
|
|
useBackNavigation(saveNotificationSettings);
|
|
|
|
useAndroidHardwareBackHandler(componentId, saveNotificationSettings);
|
|
|
|
return (
|
|
<SettingContainer testID='push_notification_settings'>
|
|
<MobileSendPush
|
|
pushStatus={pushSend}
|
|
sendPushNotifications={sendPushNotifications}
|
|
setMobilePushPref={setPushSend}
|
|
/>
|
|
|
|
{isCRTEnabled && pushSend === 'mention' && (
|
|
<>
|
|
{Platform.OS === 'android' && (<SettingSeparator isGroupSeparator={true}/>)}
|
|
<MobilePushThread
|
|
pushThread={pushThread}
|
|
onMobilePushThreadChanged={onMobilePushThreadChanged}
|
|
/>
|
|
</>
|
|
)}
|
|
{sendPushNotifications && pushSend !== 'none' && (
|
|
<>
|
|
{Platform.OS === 'android' && (<SettingSeparator isGroupSeparator={true}/>)}
|
|
<MobilePushStatus
|
|
pushStatus={pushStatus}
|
|
setMobilePushStatus={setPushStatus}
|
|
/>
|
|
</>
|
|
)}
|
|
</SettingContainer>
|
|
);
|
|
};
|
|
|
|
export default NotificationPush;
|