2018-06-05 01:17:02 +00:00
|
|
|
import React from 'react';
|
2019-05-21 12:12:15 +00:00
|
|
|
import {
|
2020-05-08 17:04:37 +00:00
|
|
|
View, Linking, ScrollView, Switch, Share, Clipboard
|
2019-05-21 12:12:15 +00:00
|
|
|
} from 'react-native';
|
2019-06-11 14:01:40 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2018-06-13 01:33:00 +00:00
|
|
|
import { connect } from 'react-redux';
|
2020-05-08 17:04:37 +00:00
|
|
|
import AsyncStorage from '@react-native-community/async-storage';
|
2018-06-05 01:17:02 +00:00
|
|
|
|
2020-03-10 11:49:54 +00:00
|
|
|
import { logout as logoutAction } from '../../actions/login';
|
|
|
|
import { selectServerRequest as selectServerRequestAction } from '../../actions/server';
|
2019-08-23 13:18:47 +00:00
|
|
|
import { toggleCrashReport as toggleCrashReportAction } from '../../actions/crashReport';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors';
|
2019-11-25 20:01:17 +00:00
|
|
|
import { DrawerButton, CloseModalButton } from '../../containers/HeaderButton';
|
2019-03-12 16:23:06 +00:00
|
|
|
import StatusBar from '../../containers/StatusBar';
|
2019-06-11 14:01:40 +00:00
|
|
|
import ListItem from '../../containers/ListItem';
|
2020-05-08 17:04:37 +00:00
|
|
|
import ItemInfo from '../../containers/ItemInfo';
|
2019-06-11 14:01:40 +00:00
|
|
|
import { DisclosureImage } from '../../containers/DisclosureIndicator';
|
|
|
|
import Separator from '../../containers/Separator';
|
|
|
|
import I18n from '../../i18n';
|
2020-02-27 18:34:20 +00:00
|
|
|
import RocketChat, { CRASH_REPORT_KEY } from '../../lib/rocketchat';
|
2019-11-25 20:01:17 +00:00
|
|
|
import {
|
|
|
|
getReadableVersion, getDeviceModel, isAndroid
|
|
|
|
} from '../../utils/deviceInfo';
|
2019-06-11 14:01:40 +00:00
|
|
|
import openLink from '../../utils/openLink';
|
|
|
|
import scrollPersistTaps from '../../utils/scrollPersistTaps';
|
2020-02-10 14:53:42 +00:00
|
|
|
import { showErrorAlert, showConfirmationAlert } from '../../utils/info';
|
2019-06-11 14:01:40 +00:00
|
|
|
import styles from './styles';
|
2019-08-23 13:18:47 +00:00
|
|
|
import { loggerConfig, analytics } from '../../utils/log';
|
2019-08-08 18:28:51 +00:00
|
|
|
import { PLAY_MARKET_LINK, APP_STORE_LINK, LICENSE_LINK } from '../../constants/links';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
2019-11-25 20:01:17 +00:00
|
|
|
import SidebarView from '../SidebarView';
|
2019-12-17 14:12:55 +00:00
|
|
|
import { LISTENER } from '../../containers/Toast';
|
|
|
|
import EventEmitter from '../../utils/events';
|
2020-06-15 14:00:46 +00:00
|
|
|
import { appStart as appStartAction, ROOT_LOADING } from '../../actions/app';
|
2020-02-03 18:28:18 +00:00
|
|
|
import { onReviewPress } from '../../utils/review';
|
2020-02-11 14:09:14 +00:00
|
|
|
import { getUserSelector } from '../../selectors/login';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
2019-05-21 12:12:15 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
const SectionSeparator = React.memo(({ theme }) => (
|
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
styles.sectionSeparatorBorder,
|
|
|
|
{
|
|
|
|
borderColor: themes[theme].separatorColor,
|
|
|
|
backgroundColor: themes[theme].auxiliaryBackground
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
));
|
|
|
|
SectionSeparator.propTypes = {
|
|
|
|
theme: PropTypes.string
|
|
|
|
};
|
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class SettingsView extends React.Component {
|
2020-06-15 14:00:46 +00:00
|
|
|
static navigationOptions = ({ navigation, isMasterDetail }) => ({
|
|
|
|
headerLeft: () => (isMasterDetail ? (
|
2019-11-25 20:01:17 +00:00
|
|
|
<CloseModalButton navigation={navigation} testID='settings-view-close' />
|
|
|
|
) : (
|
|
|
|
<DrawerButton navigation={navigation} />
|
2020-06-15 14:00:46 +00:00
|
|
|
)),
|
2019-03-12 16:23:06 +00:00
|
|
|
title: I18n.t('Settings')
|
2019-06-11 14:01:40 +00:00
|
|
|
});
|
2018-10-23 21:39:48 +00:00
|
|
|
|
2018-06-13 01:33:00 +00:00
|
|
|
static propTypes = {
|
2019-06-11 14:01:40 +00:00
|
|
|
navigation: PropTypes.object,
|
|
|
|
server: PropTypes.object,
|
2019-08-23 13:18:47 +00:00
|
|
|
allowCrashReport: PropTypes.bool,
|
2019-11-25 20:01:17 +00:00
|
|
|
toggleCrashReport: PropTypes.func,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string,
|
2020-06-15 14:00:46 +00:00
|
|
|
isMasterDetail: PropTypes.bool,
|
2020-02-05 15:12:40 +00:00
|
|
|
logout: PropTypes.func.isRequired,
|
2020-03-10 11:49:54 +00:00
|
|
|
selectServerRequest: PropTypes.func,
|
2020-02-05 15:12:40 +00:00
|
|
|
token: PropTypes.string,
|
|
|
|
appStart: PropTypes.func
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 14:53:42 +00:00
|
|
|
handleLogout = () => {
|
|
|
|
showConfirmationAlert({
|
|
|
|
message: I18n.t('You_will_be_logged_out_of_this_application'),
|
|
|
|
callToAction: I18n.t('Logout'),
|
|
|
|
onPress: () => {
|
2020-06-15 14:00:46 +00:00
|
|
|
const { logout } = this.props;
|
2020-02-10 14:53:42 +00:00
|
|
|
logout();
|
|
|
|
}
|
|
|
|
});
|
2018-07-10 13:40:32 +00:00
|
|
|
}
|
2018-06-13 01:33:00 +00:00
|
|
|
|
2020-02-10 14:53:42 +00:00
|
|
|
handleClearCache = () => {
|
|
|
|
showConfirmationAlert({
|
|
|
|
message: I18n.t('This_will_clear_all_your_offline_data'),
|
|
|
|
callToAction: I18n.t('Clear'),
|
|
|
|
onPress: async() => {
|
|
|
|
const {
|
2020-03-10 11:49:54 +00:00
|
|
|
server: { server }, appStart, selectServerRequest
|
2020-02-10 14:53:42 +00:00
|
|
|
} = this.props;
|
2020-06-15 14:00:46 +00:00
|
|
|
await appStart({ root: ROOT_LOADING, text: I18n.t('Clear_cache_loading') });
|
2020-02-10 14:53:42 +00:00
|
|
|
await RocketChat.clearCache({ server });
|
2020-03-10 11:49:54 +00:00
|
|
|
await selectServerRequest(server, null, true);
|
2020-02-10 14:53:42 +00:00
|
|
|
}
|
|
|
|
});
|
2020-02-05 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2019-08-23 13:18:47 +00:00
|
|
|
toggleCrashReport = (value) => {
|
|
|
|
AsyncStorage.setItem(CRASH_REPORT_KEY, JSON.stringify(value));
|
|
|
|
const { toggleCrashReport } = this.props;
|
|
|
|
toggleCrashReport(value);
|
|
|
|
loggerConfig.autoNotify = value;
|
|
|
|
analytics().setAnalyticsCollectionEnabled(value);
|
|
|
|
|
|
|
|
if (value) {
|
|
|
|
loggerConfig.clearBeforeSendCallbacks();
|
|
|
|
} else {
|
|
|
|
loggerConfig.registerBeforeSendCallback(() => false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-19 20:52:05 +00:00
|
|
|
navigateToScreen = (screen) => {
|
2019-06-11 14:01:40 +00:00
|
|
|
const { navigation } = this.props;
|
2020-02-19 20:52:05 +00:00
|
|
|
navigation.navigate(screen);
|
2018-06-13 01:33:00 +00:00
|
|
|
}
|
|
|
|
|
2019-06-11 14:01:40 +00:00
|
|
|
sendEmail = async() => {
|
|
|
|
const subject = encodeURI('React Native App Support');
|
|
|
|
const email = encodeURI('support@rocket.chat');
|
|
|
|
const description = encodeURI(`
|
|
|
|
version: ${ getReadableVersion }
|
|
|
|
device: ${ getDeviceModel }
|
|
|
|
`);
|
2018-06-13 01:33:00 +00:00
|
|
|
try {
|
2019-06-11 14:01:40 +00:00
|
|
|
await Linking.openURL(`mailto:${ email }?subject=${ subject }&body=${ description }`);
|
2018-06-13 01:33:00 +00:00
|
|
|
} catch (e) {
|
2019-06-11 14:01:40 +00:00
|
|
|
showErrorAlert(I18n.t('error-email-send-failed', { message: 'support@rocket.chat' }));
|
2018-06-13 01:33:00 +00:00
|
|
|
}
|
2018-06-05 01:17:02 +00:00
|
|
|
}
|
|
|
|
|
2019-08-08 18:28:51 +00:00
|
|
|
shareApp = () => {
|
|
|
|
Share.share({ message: isAndroid ? PLAY_MARKET_LINK : APP_STORE_LINK });
|
|
|
|
}
|
|
|
|
|
2019-12-17 14:12:55 +00:00
|
|
|
copyServerVersion = () => {
|
|
|
|
const { server } = this.props;
|
|
|
|
this.saveToClipboard(server.version);
|
|
|
|
}
|
|
|
|
|
|
|
|
copyAppVersion = () => {
|
|
|
|
this.saveToClipboard(getReadableVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
saveToClipboard = async(content) => {
|
|
|
|
await Clipboard.setString(content);
|
|
|
|
EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') });
|
|
|
|
}
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
onPressLicense = () => {
|
|
|
|
const { theme } = this.props;
|
|
|
|
openLink(LICENSE_LINK, theme);
|
|
|
|
}
|
2019-06-11 14:01:40 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
renderDisclosure = () => {
|
|
|
|
const { theme } = this.props;
|
|
|
|
return <DisclosureImage theme={theme} />;
|
|
|
|
}
|
|
|
|
|
2019-08-23 13:18:47 +00:00
|
|
|
renderCrashReportSwitch = () => {
|
|
|
|
const { allowCrashReport } = this.props;
|
|
|
|
return (
|
|
|
|
<Switch
|
|
|
|
value={allowCrashReport}
|
|
|
|
trackColor={SWITCH_TRACK_COLOR}
|
|
|
|
onValueChange={this.toggleCrashReport}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-06-05 01:17:02 +00:00
|
|
|
render() {
|
2020-06-15 14:00:46 +00:00
|
|
|
const { server, isMasterDetail, theme } = this.props;
|
2018-06-05 01:17:02 +00:00
|
|
|
return (
|
2020-06-15 14:00:46 +00:00
|
|
|
<SafeAreaView testID='settings-view' theme={theme}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<StatusBar theme={theme} />
|
2018-06-13 01:33:00 +00:00
|
|
|
<ScrollView
|
|
|
|
{...scrollPersistTaps}
|
2020-02-05 15:12:40 +00:00
|
|
|
contentContainerStyle={styles.listPadding}
|
2019-06-11 14:01:40 +00:00
|
|
|
showsVerticalScrollIndicator={false}
|
|
|
|
testID='settings-view-list'
|
2018-06-13 01:33:00 +00:00
|
|
|
>
|
2020-06-15 14:00:46 +00:00
|
|
|
{isMasterDetail ? (
|
2019-11-25 20:01:17 +00:00
|
|
|
<>
|
2020-02-05 15:12:40 +00:00
|
|
|
<Separator theme={theme} />
|
2019-12-04 16:39:53 +00:00
|
|
|
<SidebarView theme={theme} />
|
|
|
|
<SectionSeparator theme={theme} />
|
2019-11-25 20:01:17 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Profile')}
|
2020-02-19 20:52:05 +00:00
|
|
|
onPress={() => this.navigateToScreen('ProfileView')}
|
2019-11-25 20:01:17 +00:00
|
|
|
showActionIndicator
|
|
|
|
testID='settings-profile'
|
|
|
|
right={this.renderDisclosure}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-11-25 20:01:17 +00:00
|
|
|
/>
|
|
|
|
</>
|
|
|
|
) : null}
|
|
|
|
|
2020-02-05 15:12:40 +00:00
|
|
|
<Separator theme={theme} />
|
2019-06-11 14:01:40 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Contact_us')}
|
|
|
|
onPress={this.sendEmail}
|
|
|
|
showActionIndicator
|
|
|
|
testID='settings-view-contact'
|
|
|
|
right={this.renderDisclosure}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-06-11 14:01:40 +00:00
|
|
|
/>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Separator theme={theme} />
|
2019-06-11 14:01:40 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Language')}
|
2020-02-19 20:52:05 +00:00
|
|
|
onPress={() => this.navigateToScreen('LanguageView')}
|
2019-06-11 14:01:40 +00:00
|
|
|
showActionIndicator
|
|
|
|
testID='settings-view-language'
|
|
|
|
right={this.renderDisclosure}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-06-11 14:01:40 +00:00
|
|
|
/>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Separator theme={theme} />
|
2020-02-03 18:28:18 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Review_this_app')}
|
|
|
|
showActionIndicator
|
|
|
|
onPress={onReviewPress}
|
|
|
|
testID='settings-view-review-app'
|
|
|
|
right={this.renderDisclosure}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
<Separator theme={theme} />
|
2019-06-11 14:01:40 +00:00
|
|
|
<ListItem
|
2019-09-24 20:15:13 +00:00
|
|
|
title={I18n.t('Share_this_app')}
|
2019-06-11 14:01:40 +00:00
|
|
|
showActionIndicator
|
2019-09-24 20:15:13 +00:00
|
|
|
onPress={this.shareApp}
|
|
|
|
testID='settings-view-share-app'
|
|
|
|
right={this.renderDisclosure}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-06-11 14:01:40 +00:00
|
|
|
/>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Separator theme={theme} />
|
2020-02-19 20:52:05 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Default_browser')}
|
|
|
|
showActionIndicator
|
|
|
|
onPress={() => this.navigateToScreen('DefaultBrowserView')}
|
|
|
|
testID='settings-view-default-browser'
|
|
|
|
right={this.renderDisclosure}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
<Separator theme={theme} />
|
2019-06-11 14:01:40 +00:00
|
|
|
<ListItem
|
2019-09-24 20:15:13 +00:00
|
|
|
title={I18n.t('Theme')}
|
2019-06-11 14:01:40 +00:00
|
|
|
showActionIndicator
|
2020-02-19 20:52:05 +00:00
|
|
|
onPress={() => this.navigateToScreen('ThemeView')}
|
2019-09-24 20:15:13 +00:00
|
|
|
testID='settings-view-theme'
|
2019-12-04 16:39:53 +00:00
|
|
|
right={this.renderDisclosure}
|
|
|
|
theme={theme}
|
2019-06-11 14:01:40 +00:00
|
|
|
/>
|
2020-05-08 17:04:37 +00:00
|
|
|
<Separator theme={theme} />
|
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Screen_lock')}
|
|
|
|
showActionIndicator
|
|
|
|
onPress={() => this.navigateToScreen('ScreenLockConfigView')}
|
|
|
|
right={this.renderDisclosure}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
2019-06-11 14:01:40 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
<SectionSeparator theme={theme} />
|
2019-06-11 14:01:40 +00:00
|
|
|
|
|
|
|
<ListItem
|
|
|
|
title={I18n.t('License')}
|
|
|
|
onPress={this.onPressLicense}
|
|
|
|
showActionIndicator
|
|
|
|
testID='settings-view-license'
|
|
|
|
right={this.renderDisclosure}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-06-11 14:01:40 +00:00
|
|
|
/>
|
2019-12-17 14:12:55 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
<Separator theme={theme} />
|
2019-12-17 14:12:55 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Version_no', { version: getReadableVersion })}
|
|
|
|
onPress={this.copyAppVersion}
|
|
|
|
testID='settings-view-version'
|
|
|
|
theme={theme}
|
|
|
|
/>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Separator theme={theme} />
|
2019-12-17 14:12:55 +00:00
|
|
|
|
2019-06-11 14:01:40 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Server_version', { version: server.version })}
|
2019-12-17 14:12:55 +00:00
|
|
|
onPress={this.copyServerVersion}
|
2019-06-11 14:01:40 +00:00
|
|
|
subtitle={`${ server.server.split('//')[1] }`}
|
|
|
|
testID='settings-view-server-version'
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-06-11 14:01:40 +00:00
|
|
|
/>
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
<SectionSeparator theme={theme} />
|
2019-06-11 14:01:40 +00:00
|
|
|
|
2019-08-23 13:18:47 +00:00
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Send_crash_report')}
|
|
|
|
testID='settings-view-crash-report'
|
|
|
|
right={() => this.renderCrashReportSwitch()}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-08-23 13:18:47 +00:00
|
|
|
/>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Separator theme={theme} />
|
2019-08-23 13:18:47 +00:00
|
|
|
<ItemInfo
|
|
|
|
info={I18n.t('Crash_report_disclaimer')}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-08-23 13:18:47 +00:00
|
|
|
/>
|
2019-11-25 20:01:17 +00:00
|
|
|
|
2020-02-05 15:12:40 +00:00
|
|
|
<Separator theme={theme} />
|
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Clear_cache')}
|
|
|
|
testID='settings-clear-cache'
|
2020-02-10 14:53:42 +00:00
|
|
|
onPress={this.handleClearCache}
|
2020-02-05 15:12:40 +00:00
|
|
|
right={this.renderDisclosure}
|
|
|
|
color={themes[theme].dangerColor}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
<Separator theme={theme} />
|
|
|
|
<ListItem
|
|
|
|
title={I18n.t('Logout')}
|
|
|
|
testID='settings-logout'
|
2020-02-10 14:53:42 +00:00
|
|
|
onPress={this.handleLogout}
|
2020-02-05 15:12:40 +00:00
|
|
|
right={this.renderDisclosure}
|
|
|
|
color={themes[theme].dangerColor}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
<Separator theme={theme} />
|
2018-06-13 01:33:00 +00:00
|
|
|
</ScrollView>
|
2019-06-11 14:01:40 +00:00
|
|
|
</SafeAreaView>
|
2018-06-05 01:17:02 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
server: state.server,
|
2020-02-11 14:09:14 +00:00
|
|
|
token: getUserSelector(state).token,
|
2020-06-15 14:00:46 +00:00
|
|
|
allowCrashReport: state.crashReport.allowCrashReport,
|
|
|
|
isMasterDetail: state.app.isMasterDetail
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
2019-11-25 20:01:17 +00:00
|
|
|
logout: () => dispatch(logoutAction()),
|
2020-03-10 11:49:54 +00:00
|
|
|
selectServerRequest: params => dispatch(selectServerRequestAction(params)),
|
2020-02-05 15:12:40 +00:00
|
|
|
toggleCrashReport: params => dispatch(toggleCrashReportAction(params)),
|
2020-06-15 14:00:46 +00:00
|
|
|
appStart: params => dispatch(appStartAction(params))
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(withTheme(SettingsView));
|