2022-02-02 18:27:10 +00:00
|
|
|
import CookieManager from '@react-native-cookies/cookies';
|
|
|
|
import { StackNavigationOptions } from '@react-navigation/stack';
|
|
|
|
import FastImage from '@rocket.chat/react-native-fast-image';
|
2018-06-05 01:17:02 +00:00
|
|
|
import React from 'react';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { Clipboard, Linking, Share } from 'react-native';
|
2018-06-13 01:33:00 +00:00
|
|
|
import { connect } from 'react-redux';
|
2018-06-05 01:17:02 +00:00
|
|
|
|
2022-02-02 18:27:10 +00:00
|
|
|
import { appStart } from '../../actions/app';
|
|
|
|
import { logout } from '../../actions/login';
|
|
|
|
import { selectServerRequest } from '../../actions/server';
|
2020-10-30 18:31:04 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
2022-02-02 18:27:10 +00:00
|
|
|
import { isFDroidBuild } from '../../constants/environment';
|
|
|
|
import { APP_STORE_LINK, FDROID_MARKET_LINK, LICENSE_LINK, PLAY_MARKET_LINK } from '../../constants/links';
|
2020-10-30 16:15:58 +00:00
|
|
|
import * as HeaderButton from '../../containers/HeaderButton';
|
2020-10-30 13:59:44 +00:00
|
|
|
import * as List from '../../containers/List';
|
2022-02-02 18:27:10 +00:00
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
|
|
|
import StatusBar from '../../containers/StatusBar';
|
|
|
|
import { LISTENER } from '../../containers/Toast';
|
|
|
|
import { IApplicationState, IBaseScreen, RootEnum } from '../../definitions';
|
2019-06-11 14:01:40 +00:00
|
|
|
import I18n from '../../i18n';
|
2022-02-02 18:27:10 +00:00
|
|
|
import database from '../../lib/database';
|
2020-10-30 18:31:04 +00:00
|
|
|
import RocketChat from '../../lib/rocketchat';
|
2022-02-02 18:27:10 +00:00
|
|
|
import { IServer } from '../../reducers/server';
|
|
|
|
import { getUserSelector } from '../../selectors/login';
|
|
|
|
import { SettingsStackParamList } from '../../stacks/types';
|
|
|
|
import { withTheme } from '../../theme';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { getDeviceModel, getReadableVersion, isAndroid } from '../../utils/deviceInfo';
|
2022-02-02 18:27:10 +00:00
|
|
|
import EventEmitter from '../../utils/events';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { showConfirmationAlert, showErrorAlert } from '../../utils/info';
|
|
|
|
import { events, logEvent } from '../../utils/log';
|
2022-02-02 18:27:10 +00:00
|
|
|
import openLink from '../../utils/openLink';
|
2020-02-03 18:28:18 +00:00
|
|
|
import { onReviewPress } from '../../utils/review';
|
2022-02-02 18:27:10 +00:00
|
|
|
import SidebarView from '../SidebarView';
|
2020-08-24 12:24:10 +00:00
|
|
|
|
2022-02-02 18:27:10 +00:00
|
|
|
interface ISettingsViewProps extends IBaseScreen<SettingsStackParamList, 'SettingsView'> {
|
|
|
|
server: IServer;
|
2021-10-20 17:56:52 +00:00
|
|
|
isMasterDetail: boolean;
|
|
|
|
user: {
|
|
|
|
roles: [];
|
|
|
|
id: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
class SettingsView extends React.Component<ISettingsViewProps, any> {
|
2022-01-17 16:10:39 +00:00
|
|
|
static navigationOptions = ({ navigation, isMasterDetail }: ISettingsViewProps): StackNavigationOptions => ({
|
2021-09-13 20:41:05 +00:00
|
|
|
headerLeft: () =>
|
|
|
|
isMasterDetail ? (
|
|
|
|
<HeaderButton.CloseModal navigation={navigation} testID='settings-view-close' />
|
|
|
|
) : (
|
|
|
|
<HeaderButton.Drawer navigation={navigation} testID='settings-view-drawer' />
|
|
|
|
),
|
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
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
checkCookiesAndLogout = async () => {
|
2022-02-02 18:27:10 +00:00
|
|
|
const { dispatch, user } = this.props;
|
2020-08-25 20:04:18 +00:00
|
|
|
const db = database.servers;
|
2021-02-26 16:25:51 +00:00
|
|
|
const usersCollection = db.get('users');
|
2020-08-25 20:04:18 +00:00
|
|
|
try {
|
2021-10-20 17:56:52 +00:00
|
|
|
const userRecord: any = await usersCollection.find(user.id);
|
2021-07-05 18:21:15 +00:00
|
|
|
if (userRecord.isFromWebView) {
|
2020-08-25 20:04:18 +00:00
|
|
|
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'),
|
2021-09-13 20:41:05 +00:00
|
|
|
onPress: async () => {
|
2020-08-25 20:04:18 +00:00
|
|
|
await CookieManager.clearAll(true);
|
2022-02-02 18:27:10 +00:00
|
|
|
dispatch(logout());
|
2020-08-25 20:04:18 +00:00
|
|
|
},
|
|
|
|
onCancel: () => {
|
2022-02-02 18:27:10 +00:00
|
|
|
dispatch(logout());
|
2020-08-25 20:04:18 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2022-02-02 18:27:10 +00:00
|
|
|
dispatch(logout());
|
2020-08-25 20:04:18 +00:00
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
// Do nothing: user not found
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-08-25 20:04:18 +00:00
|
|
|
|
2020-02-10 14:53:42 +00:00
|
|
|
handleLogout = () => {
|
2020-07-30 19:51:13 +00:00
|
|
|
logEvent(events.SE_LOG_OUT);
|
2020-02-10 14:53:42 +00:00
|
|
|
showConfirmationAlert({
|
|
|
|
message: I18n.t('You_will_be_logged_out_of_this_application'),
|
2020-08-25 20:04:18 +00:00
|
|
|
confirmationText: I18n.t('Logout'),
|
|
|
|
onPress: this.checkCookiesAndLogout
|
2020-02-10 14:53:42 +00:00
|
|
|
});
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-06-13 01:33:00 +00:00
|
|
|
|
2020-02-10 14:53:42 +00:00
|
|
|
handleClearCache = () => {
|
2020-07-30 19:51:13 +00:00
|
|
|
logEvent(events.SE_CLEAR_LOCAL_SERVER_CACHE);
|
2020-02-10 14:53:42 +00:00
|
|
|
showConfirmationAlert({
|
|
|
|
message: I18n.t('This_will_clear_all_your_offline_data'),
|
2020-08-25 20:04:18 +00:00
|
|
|
confirmationText: I18n.t('Clear'),
|
2021-09-13 20:41:05 +00:00
|
|
|
onPress: async () => {
|
2020-02-10 14:53:42 +00:00
|
|
|
const {
|
2021-09-13 20:41:05 +00:00
|
|
|
server: { server },
|
2022-02-02 18:27:10 +00:00
|
|
|
dispatch
|
2020-02-10 14:53:42 +00:00
|
|
|
} = this.props;
|
2022-02-02 18:27:10 +00:00
|
|
|
dispatch(appStart({ root: RootEnum.ROOT_LOADING, text: I18n.t('Clear_cache_loading') }));
|
2020-02-10 14:53:42 +00:00
|
|
|
await RocketChat.clearCache({ server });
|
2020-07-17 17:39:06 +00:00
|
|
|
await FastImage.clearMemoryCache();
|
|
|
|
await FastImage.clearDiskCache();
|
2021-04-01 12:58:20 +00:00
|
|
|
RocketChat.disconnect();
|
2022-02-02 18:27:10 +00:00
|
|
|
dispatch(selectServerRequest(server));
|
2020-02-10 14:53:42 +00:00
|
|
|
}
|
|
|
|
});
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-02-05 15:12:40 +00:00
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
navigateToScreen = (screen: keyof SettingsStackParamList) => {
|
2021-10-20 17:56:52 +00:00
|
|
|
/* @ts-ignore */
|
2021-09-13 20:41:05 +00:00
|
|
|
logEvent(events[`SE_GO_${screen.replace('View', '').toUpperCase()}`]);
|
2019-06-11 14:01:40 +00:00
|
|
|
const { navigation } = this.props;
|
2020-02-19 20:52:05 +00:00
|
|
|
navigation.navigate(screen);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-06-13 01:33:00 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
sendEmail = async () => {
|
2020-07-30 19:51:13 +00:00
|
|
|
logEvent(events.SE_CONTACT_US);
|
2019-06-11 14:01:40 +00:00
|
|
|
const subject = encodeURI('React Native App Support');
|
|
|
|
const email = encodeURI('support@rocket.chat');
|
|
|
|
const description = encodeURI(`
|
2021-09-13 20:41:05 +00:00
|
|
|
version: ${getReadableVersion}
|
|
|
|
device: ${getDeviceModel}
|
2019-06-11 14:01:40 +00:00
|
|
|
`);
|
2018-06-13 01:33:00 +00:00
|
|
|
try {
|
2021-09-13 20:41:05 +00:00
|
|
|
await Linking.openURL(`mailto:${email}?subject=${subject}&body=${description}`);
|
2018-06-13 01:33:00 +00:00
|
|
|
} catch (e) {
|
2020-07-30 19:51:13 +00:00
|
|
|
logEvent(events.SE_CONTACT_US_F);
|
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
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-06-05 01:17:02 +00:00
|
|
|
|
2019-08-08 18:28:51 +00:00
|
|
|
shareApp = () => {
|
2020-08-24 12:24:10 +00:00
|
|
|
let message;
|
|
|
|
if (isAndroid) {
|
|
|
|
message = PLAY_MARKET_LINK;
|
|
|
|
if (isFDroidBuild) {
|
|
|
|
message = FDROID_MARKET_LINK;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
message = APP_STORE_LINK;
|
|
|
|
}
|
|
|
|
Share.share({ message });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-08-08 18:28:51 +00:00
|
|
|
|
2019-12-17 14:12:55 +00:00
|
|
|
copyServerVersion = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
const {
|
|
|
|
server: { version }
|
|
|
|
} = this.props;
|
2022-02-02 18:27:10 +00:00
|
|
|
const vers = version as string;
|
|
|
|
logEvent(events.SE_COPY_SERVER_VERSION, { serverVersion: vers });
|
|
|
|
this.saveToClipboard(vers);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-12-17 14:12:55 +00:00
|
|
|
|
|
|
|
copyAppVersion = () => {
|
2020-07-30 19:51:13 +00:00
|
|
|
logEvent(events.SE_COPY_APP_VERSION, { appVersion: getReadableVersion });
|
2019-12-17 14:12:55 +00:00
|
|
|
this.saveToClipboard(getReadableVersion);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-12-17 14:12:55 +00:00
|
|
|
|
2021-10-20 17:56:52 +00:00
|
|
|
saveToClipboard = async (content: string) => {
|
2019-12-17 14:12:55 +00:00
|
|
|
await Clipboard.setString(content);
|
|
|
|
EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-12-17 14:12:55 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
onPressLicense = () => {
|
2020-07-30 19:51:13 +00:00
|
|
|
logEvent(events.SE_READ_LICENSE);
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
|
|
|
openLink(LICENSE_LINK, theme);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-11 14:01:40 +00:00
|
|
|
|
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-10-30 13:59:44 +00:00
|
|
|
<SafeAreaView testID='settings-view'>
|
|
|
|
<StatusBar />
|
2022-01-17 16:10:39 +00:00
|
|
|
<List.Container>
|
2020-06-15 14:00:46 +00:00
|
|
|
{isMasterDetail ? (
|
2019-11-25 20:01:17 +00:00
|
|
|
<>
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Section>
|
|
|
|
<List.Separator />
|
|
|
|
<SidebarView />
|
|
|
|
<List.Separator />
|
|
|
|
</List.Section>
|
|
|
|
<List.Section>
|
2021-10-06 20:30:10 +00:00
|
|
|
<List.Separator />
|
|
|
|
<List.Item title='Display' onPress={() => this.navigateToScreen('DisplayPrefsView')} showActionIndicator />
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title='Profile'
|
|
|
|
onPress={() => this.navigateToScreen('ProfileView')}
|
|
|
|
showActionIndicator
|
|
|
|
testID='settings-profile'
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
</List.Section>
|
2019-11-25 20:01:17 +00:00
|
|
|
</>
|
|
|
|
) : null}
|
|
|
|
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Section>
|
|
|
|
<List.Separator />
|
2021-09-13 20:41:05 +00:00
|
|
|
<List.Item title='Contact_us' onPress={this.sendEmail} showActionIndicator testID='settings-view-contact' />
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title='Language'
|
|
|
|
onPress={() => this.navigateToScreen('LanguageView')}
|
|
|
|
showActionIndicator
|
|
|
|
testID='settings-view-language'
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
{!isFDroidBuild ? (
|
|
|
|
<>
|
|
|
|
<List.Item
|
|
|
|
title='Review_this_app'
|
|
|
|
showActionIndicator
|
|
|
|
onPress={onReviewPress}
|
|
|
|
testID='settings-view-review-app'
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
) : null}
|
|
|
|
<List.Separator />
|
2021-09-13 20:41:05 +00:00
|
|
|
<List.Item title='Share_this_app' showActionIndicator onPress={this.shareApp} testID='settings-view-share-app' />
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title='Default_browser'
|
|
|
|
showActionIndicator
|
|
|
|
onPress={() => this.navigateToScreen('DefaultBrowserView')}
|
|
|
|
testID='settings-view-default-browser'
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title='Theme'
|
|
|
|
showActionIndicator
|
|
|
|
onPress={() => this.navigateToScreen('ThemeView')}
|
|
|
|
testID='settings-view-theme'
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
2020-10-30 18:31:04 +00:00
|
|
|
title='Security_and_privacy'
|
2020-10-30 13:59:44 +00:00
|
|
|
showActionIndicator
|
2020-10-30 18:31:04 +00:00
|
|
|
onPress={() => this.navigateToScreen('SecurityPrivacyView')}
|
|
|
|
testID='settings-view-security-privacy'
|
2020-10-30 13:59:44 +00:00
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
</List.Section>
|
|
|
|
|
|
|
|
<List.Section>
|
|
|
|
<List.Separator />
|
2021-09-13 20:41:05 +00:00
|
|
|
<List.Item title='License' onPress={this.onPressLicense} showActionIndicator testID='settings-view-license' />
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title={I18n.t('Version_no', { version: getReadableVersion })}
|
|
|
|
onPress={this.copyAppVersion}
|
|
|
|
testID='settings-view-version'
|
|
|
|
translateTitle={false}
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title={I18n.t('Server_version', { version: server.version })}
|
|
|
|
onPress={this.copyServerVersion}
|
2021-09-13 20:41:05 +00:00
|
|
|
subtitle={`${server.server.split('//')[1]}`}
|
2020-10-30 13:59:44 +00:00
|
|
|
testID='settings-view-server-version'
|
|
|
|
translateTitle={false}
|
|
|
|
translateSubtitle={false}
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
</List.Section>
|
2019-06-11 14:01:40 +00:00
|
|
|
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Section>
|
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title='Clear_cache'
|
2021-04-01 12:58:20 +00:00
|
|
|
testID='settings-view-clear-cache'
|
2020-10-30 13:59:44 +00:00
|
|
|
onPress={this.handleClearCache}
|
|
|
|
showActionIndicator
|
|
|
|
color={themes[theme].dangerColor}
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
<List.Item
|
|
|
|
title='Logout'
|
|
|
|
testID='settings-logout'
|
|
|
|
onPress={this.handleLogout}
|
|
|
|
showActionIndicator
|
|
|
|
color={themes[theme].dangerColor}
|
|
|
|
/>
|
|
|
|
<List.Separator />
|
|
|
|
</List.Section>
|
|
|
|
</List.Container>
|
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
|
|
|
|
2022-02-02 18:27:10 +00:00
|
|
|
const mapStateToProps = (state: IApplicationState) => ({
|
2019-08-07 13:51:34 +00:00
|
|
|
server: state.server,
|
2020-08-25 20:04:18 +00:00
|
|
|
user: getUserSelector(state),
|
2020-06-15 14:00:46 +00:00
|
|
|
isMasterDetail: state.app.isMasterDetail
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2022-02-02 18:27:10 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(SettingsView));
|