import Clipboard from '@react-native-clipboard/clipboard'; import CookieManager from '@react-native-cookies/cookies'; import { useNavigation } from '@react-navigation/native'; import React, { useLayoutEffect } from 'react'; import { Linking, Share } from 'react-native'; import FastImage from 'react-native-fast-image'; import { useDispatch } from 'react-redux'; import { StackNavigationProp } from '@react-navigation/stack'; import { appStart } from '../../actions/app'; import { logout } from '../../actions/login'; import { selectServerRequest } from '../../actions/server'; import * as HeaderButton from '../../containers/HeaderButton'; import * as List from '../../containers/List'; import SafeAreaView from '../../containers/SafeAreaView'; import StatusBar from '../../containers/StatusBar'; import { LISTENER } from '../../containers/Toast'; import { RootEnum } from '../../definitions'; import I18n from '../../i18n'; import { APP_STORE_LINK, FDROID_MARKET_LINK, isFDroidBuild, LICENSE_LINK, PLAY_MARKET_LINK } from '../../lib/constants'; import database from '../../lib/database'; import { useAppSelector } from '../../lib/hooks'; import { clearCache } from '../../lib/methods'; import { deleteAllAudioFiles } from '../../lib/methods/audioFile'; import { getDeviceModel, getReadableVersion, isAndroid } from '../../lib/methods/helpers'; import EventEmitter from '../../lib/methods/helpers/events'; import { showConfirmationAlert, showErrorAlert } from '../../lib/methods/helpers/info'; import { events, logEvent } from '../../lib/methods/helpers/log'; import openLink from '../../lib/methods/helpers/openLink'; import { onReviewPress } from '../../lib/methods/helpers/review'; import { Services } from '../../lib/services'; import { getUserSelector } from '../../selectors/login'; import { SettingsStackParamList } from '../../stacks/types'; import { useTheme } from '../../theme'; import SidebarView from '../SidebarView'; type TLogScreenName = 'SE_GO_LANGUAGE' | 'SE_GO_DEFAULTBROWSER' | 'SE_GO_THEME' | 'SE_GO_PROFILE' | 'SE_GO_SECURITYPRIVACY'; const SettingsView = (): React.ReactElement => { const { colors, theme } = useTheme(); const navigation = useNavigation>(); const dispatch = useDispatch(); const isMasterDetail = useAppSelector(state => state.app.isMasterDetail); const userId = useAppSelector(state => getUserSelector(state).id); const { server, version } = useAppSelector(state => state.server); useLayoutEffect(() => { navigation.setOptions({ headerLeft: () => isMasterDetail ? ( ) : ( ), title: I18n.t('Settings') }); }, [navigation, isMasterDetail]); const checkCookiesAndLogout = async () => { const db = database.servers; const usersCollection = db.get('users'); try { const userRecord = await usersCollection.find(userId); if (userRecord.isFromWebView) { showConfirmationAlert({ title: I18n.t('Clear_cookies_alert'), message: I18n.t('Clear_cookies_desc'), confirmationText: I18n.t('Clear_cookies_yes'), dismissText: I18n.t('Clear_cookies_no'), onPress: async () => { await CookieManager.clearAll(true); dispatch(logout()); }, onCancel: () => { dispatch(logout()); } }); } else { dispatch(logout()); } } catch { // Do nothing: user not found } }; const handleLogout = () => { logEvent(events.SE_LOG_OUT); showConfirmationAlert({ message: I18n.t('You_will_be_logged_out_of_this_application'), confirmationText: I18n.t('Logout'), onPress: checkCookiesAndLogout }); }; const handleClearCache = () => { logEvent(events.SE_CLEAR_LOCAL_SERVER_CACHE); showConfirmationAlert({ message: I18n.t('This_will_clear_all_your_offline_data'), confirmationText: I18n.t('Clear'), onPress: async () => { dispatch(appStart({ root: RootEnum.ROOT_LOADING, text: I18n.t('Clear_cache_loading') })); await deleteAllAudioFiles(server); await clearCache({ server }); await FastImage.clearMemoryCache(); await FastImage.clearDiskCache(); Services.disconnect(); dispatch(selectServerRequest(server)); } }); }; const navigateToScreen = (screen: keyof SettingsStackParamList) => { const screenName = screen.replace('View', '').toUpperCase(); logEvent(events[`SE_GO_${screenName}` as TLogScreenName]); navigation.navigate(screen); }; const sendEmail = async () => { logEvent(events.SE_CONTACT_US); const subject = encodeURI('Rocket.Chat Mobile App Support'); const email = encodeURI('support@rocket.chat'); const description = encodeURI(` version: ${getReadableVersion} device: ${getDeviceModel} `); try { await Linking.openURL(`mailto:${email}?subject=${subject}&body=${description}`); } catch (e) { logEvent(events.SE_CONTACT_US_F); showErrorAlert(I18n.t('error-email-send-failed', { message: 'support@rocket.chat' })); } }; const shareApp = () => { let message; if (isAndroid) { message = PLAY_MARKET_LINK; if (isFDroidBuild) { message = FDROID_MARKET_LINK; } } else { message = APP_STORE_LINK; } Share.share({ message }); }; const saveToClipboard = async (content: string) => { await Clipboard.setString(content); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); }; const copyServerVersion = () => { const vers = version as string; logEvent(events.SE_COPY_SERVER_VERSION, { serverVersion: vers }); saveToClipboard(vers); }; const copyAppVersion = () => { logEvent(events.SE_COPY_APP_VERSION, { appVersion: getReadableVersion }); saveToClipboard(getReadableVersion); }; const onPressLicense = () => { logEvent(events.SE_READ_LICENSE); openLink(LICENSE_LINK, theme); }; return ( {isMasterDetail ? ( <> navigateToScreen('DisplayPrefsView')} showActionIndicator /> navigateToScreen('ProfileView')} showActionIndicator testID='settings-profile' /> ) : null} navigateToScreen('LanguageView')} showActionIndicator testID='settings-view-language' /> {!isFDroidBuild ? ( <> ) : null} navigateToScreen('DefaultBrowserView')} testID='settings-view-default-browser' /> navigateToScreen('ThemeView')} testID='settings-view-theme' /> navigateToScreen('SecurityPrivacyView')} testID='settings-view-security-privacy' /> ); }; export default SettingsView;