import React from 'react'; import { StyleSheet, Switch, Text } from 'react-native'; import { RouteProp } from '@react-navigation/core'; import { StackNavigationProp } from '@react-navigation/stack'; import Model from '@nozbe/watermelondb/Model'; import { Observable, Subscription } from 'rxjs'; import database from '../../lib/database'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; import StatusBar from '../../containers/StatusBar'; import * as List from '../../containers/List'; import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; import { withTheme } from '../../theme'; import protectedFunction from '../../lib/methods/helpers/protectedFunction'; import SafeAreaView from '../../containers/SafeAreaView'; import log, { events, logEvent } from '../../utils/log'; import sharedStyles from '../Styles'; import { OPTIONS } from './options'; const styles = StyleSheet.create({ pickerText: { ...sharedStyles.textRegular, fontSize: 16 } }); interface INotificationPreferencesView { navigation: StackNavigationProp; route: RouteProp< { NotificationPreferencesView: { rid: string; room: Model; }; }, 'NotificationPreferencesView' >; theme: string; } class NotificationPreferencesView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Notification_Preferences') }); private mounted: boolean; private rid: string | undefined; private roomObservable?: Observable; private subscription?: Subscription; constructor(props: INotificationPreferencesView) { super(props); this.mounted = false; this.rid = props.route.params?.rid; const room = props.route.params?.room; this.state = { room: room || {} }; if (room && room.observe) { this.roomObservable = room.observe(); this.subscription = this.roomObservable.subscribe((changes: any) => { if (this.mounted) { this.setState({ room: changes }); } else { // @ts-ignore this.state.room = changes; } }); } } componentDidMount() { this.mounted = true; } componentWillUnmount() { if (this.subscription && this.subscription.unsubscribe) { this.subscription.unsubscribe(); } } saveNotificationSettings = async (key: string, value: string | boolean, params: any) => { // @ts-ignore logEvent(events[`NP_${key.toUpperCase()}`]); const { room } = this.state; const db = database.active; try { await db.action(async () => { await room.update( protectedFunction((r: any) => { r[key] = value; }) ); }); try { const result = await RocketChat.saveNotificationSettings(this.rid, params); if (result.success) { return; } } catch { // do nothing } await db.action(async () => { await room.update( protectedFunction((r: any) => { r[key] = room[key]; }) ); }); } catch (e) { // @ts-ignore logEvent(events[`NP_${key.toUpperCase()}_F`]); log(e); } }; onValueChangeSwitch = (key: string, value: string | boolean) => this.saveNotificationSettings(key, value, { [key]: value ? '1' : '0' }); onValueChangePicker = (key: string, value: string) => this.saveNotificationSettings(key, value, { [key]: value.toString() }); pickerSelection = (title: string, key: string) => { const { room } = this.state; const { navigation } = this.props; navigation.navigate('PickerView', { title, data: OPTIONS[key], value: room[key], onChangeValue: (value: string) => this.onValueChangePicker(key, value) }); }; renderPickerOption = (key: string) => { const { room } = this.state; const { theme } = this.props; const text = room[key] ? OPTIONS[key].find((option: any) => option.value === room[key]) : OPTIONS[key][0]; return ( {I18n.t(text?.label, { defaultValue: text?.label, second: text?.second })} ); }; renderSwitch = (key: string) => { const { room } = this.state; return ( this.onValueChangeSwitch(key, !value)} /> ); }; render() { const { room } = this.state; return ( this.renderSwitch('disableNotifications')} /> this.renderSwitch('muteGroupMentions')} /> this.renderSwitch('hideUnreadStatus')} /> this.pickerSelection(title, 'desktopNotifications')} right={() => this.renderPickerOption('desktopNotifications')} /> this.pickerSelection(title, 'mobilePushNotifications')} right={() => this.renderPickerOption('mobilePushNotifications')} /> this.pickerSelection(title, 'audioNotifications')} right={() => this.renderPickerOption('audioNotifications')} /> this.pickerSelection(title, 'audioNotificationValue')} right={() => this.renderPickerOption('audioNotificationValue')} /> this.pickerSelection(title, 'desktopNotificationDuration')} right={() => this.renderPickerOption('desktopNotificationDuration')} /> this.pickerSelection(title, 'emailNotifications')} right={() => this.renderPickerOption('emailNotifications')} /> ); } } export default withTheme(NotificationPreferencesView);