123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797 |
- /* eslint-disable lines-around-comment */
-
- import _ from 'lodash';
- import React, { Component } from 'react';
- import { WithTranslation } from 'react-i18next';
- import {
- Alert,
- Linking,
- NativeModules,
- Platform,
- ScrollView,
- Text,
- View
- } from 'react-native';
- import { Divider } from 'react-native-paper';
-
-
- import { getDefaultURL } from '../../../app/functions.native';
- import { IReduxState } from '../../../app/types';
- // @ts-ignore
- import { Avatar } from '../../../base/avatar';
- import { getLegalUrls } from '../../../base/config/functions.native';
- import { translate } from '../../../base/i18n/functions';
- // @ts-ignore
- import JitsiScreen from '../../../base/modal/components/JitsiScreen';
- import { getLocalParticipant } from '../../../base/participants/functions';
- import { connect } from '../../../base/redux/functions';
- import { updateSettings } from '../../../base/settings/actions';
- import Button from '../../../base/ui/components/native/Button';
- import Input from '../../../base/ui/components/native/Input';
- import Switch from '../../../base/ui/components/native/Switch';
- // @ts-ignore
- import { BUTTON_TYPES } from '../../../base/ui/constants.any';
- // @ts-ignore
- import { AVATAR_SIZE } from '../../../welcome/components/styles';
- import { isServerURLChangeEnabled, normalizeUserInputURL } from '../../functions.native';
-
- // @ts-ignore
- import FormRow from './FormRow';
- // @ts-ignore
- import FormSection from './FormSection';
- // @ts-ignore
- import styles from './styles';
-
- /**
- * Application information module.
- */
- const { AppInfo } = NativeModules;
-
- interface IState {
-
- /**
- * State variable for the disable call integration switch.
- */
- disableCallIntegration: boolean;
-
- /**
- * State variable for the disable crash reporting switch.
- */
- disableCrashReporting: boolean;
-
- /**
- * State variable for the disable p2p switch.
- */
- disableP2P: boolean;
-
- /**
- * Whether the self view is disabled or not.
- */
- disableSelfView: boolean;
-
- /**
- * State variable for the display name field.
- */
- displayName: string;
-
- /**
- * State variable for the email field.
- */
- email: string;
-
- /**
- * State variable for the server URL field.
- */
- serverURL: string;
-
- /**
- * State variable for start car mode.
- */
- startCarMode: boolean;
-
- /**
- * State variable for the start with audio muted switch.
- */
- startWithAudioMuted: boolean;
-
- /**
- * State variable for the start with video muted switch.
- */
- startWithVideoMuted: boolean;
- }
-
- /**
- * The type of the React {@code Component} props of
- * {@link SettingsView}.
- */
- interface IProps extends WithTranslation {
-
- /**
- * The legal URL's.
- */
- _legalUrls: {
- helpCentre: string;
- privacy: string;
- terms: string;
- };
-
- /**
- * The ID of the local participant.
- */
- _localParticipantId: string;
-
- /**
- * The default URL for when there is no custom URL set in the settings.
- *
- * @protected
- */
- _serverURL: string;
-
- /**
- * Flag indicating if URL can be changed by user.
- *
- * @protected
- */
- _serverURLChangeEnabled: boolean;
-
- /**
- * The current settings object.
- */
- _settings: {
- disableCallIntegration: boolean;
- disableCrashReporting: boolean;
- disableP2P: boolean;
- disableSelfView: boolean;
- displayName: string;
- email: string;
- serverURL: string;
- startCarMode: boolean;
- startWithAudioMuted: boolean;
- startWithVideoMuted: boolean;
- };
-
- /**
- * Whether {@link SettingsView} is visible.
- *
- * @protected
- */
- _visible: boolean;
-
- /**
- * Add bottom padding to the screen.
- */
- addBottomInset?: boolean;
-
- /**
- * Redux store dispatch function.
- */
- dispatch: Function;
-
- /**
- * Default prop for navigating between screen components(React Navigation).
- */
- navigation: Object;
-
- /**
- * Bounce when scrolling.
- */
- scrollBounces?: boolean;
- }
-
- /**
- * The native container rendering the app settings page.
- */
- class SettingsView extends Component<IProps, IState> {
- _urlField: Object;
-
- /**
- *
- * Initializes a new {@code SettingsView} instance.
- *
- * @inheritdoc
- */
- constructor(props: IProps) {
- super(props);
-
- const {
- disableCallIntegration,
- disableCrashReporting,
- disableP2P,
- disableSelfView,
- displayName,
- email,
- serverURL,
- startCarMode,
- startWithAudioMuted,
- startWithVideoMuted
- } = props._settings || {};
-
- this.state = {
- disableCallIntegration,
- disableCrashReporting,
- disableP2P,
- disableSelfView,
- displayName: displayName || '',
- email: email || '',
- serverURL: serverURL || '',
- startCarMode,
- startWithAudioMuted,
- startWithVideoMuted
- };
-
- // Bind event handlers so they are only bound once per instance.
- this._onBlurServerURL = this._onBlurServerURL.bind(this);
- this._onChangeDisplayName = this._onChangeDisplayName.bind(this);
- this._onChangeEmail = this._onChangeEmail.bind(this);
- this._onChangeServerURL = this._onChangeServerURL.bind(this);
- this._onClose = this._onClose.bind(this);
- this._onDisableCallIntegration = this._onDisableCallIntegration.bind(this);
- this._onDisableCrashReporting = this._onDisableCrashReporting.bind(this);
- this._onDisableP2P = this._onDisableP2P.bind(this);
- this._onDisableSelfView = this._onDisableSelfView.bind(this);
- this._onStartAudioMutedChange
- = this._onStartAudioMutedChange.bind(this);
- this._onStartCarmodeInLowBandwidthMode
- = this._onStartCarmodeInLowBandwidthMode.bind(this);
- this._onStartVideoMutedChange
- = this._onStartVideoMutedChange.bind(this);
- this._setURLFieldReference = this._setURLFieldReference.bind(this);
- this._onShowHelpPressed = this._onShowHelpPressed.bind(this);
- this._onShowPrivacyPressed = this._onShowPrivacyPressed.bind(this);
- this._onShowTermsPressed = this._onShowTermsPressed.bind(this);
- this._showURLAlert = this._showURLAlert.bind(this);
- }
-
- /**
- * Updates and syncs settings.
- *
- * @inheritdoc
- * @returns {void}
- */
- componentDidUpdate(prevProps: IProps) {
- const { _settings } = this.props;
-
- if (!_.isEqual(prevProps._settings, _settings)) {
- // @ts-ignore
- // eslint-disable-next-line react/no-did-update-set-state
- this.setState(_settings);
- }
- }
-
- /**
- * Implements React's {@link Component#render()}, renders the settings page.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const {
- disableCallIntegration,
- disableCrashReporting,
- disableP2P,
- disableSelfView,
- displayName,
- email,
- serverURL,
- startCarMode,
- startWithAudioMuted,
- startWithVideoMuted
- } = this.state;
-
- const {
- addBottomInset = false,
- scrollBounces = false,
- t
- } = this.props;
-
- return (
- <JitsiScreen
- disableForcedKeyboardDismiss = { true }
- safeAreaInsets = { [ addBottomInset && 'bottom', 'left', 'right' ].filter(Boolean) }
- style = { styles.settingsViewContainer }>
- <ScrollView bounces = { scrollBounces }>
- <View style = { styles.avatarContainer }>
- <Avatar
- participantId = { this.props._localParticipantId }
- size = { AVATAR_SIZE } />
- </View>
- {/* @ts-ignore */}
- <FormSection
- label = 'settingsView.profileSection'>
- <Input
- // @ts-ignore
- customStyles = {{ container: styles.customContainer }}
- label = { t('settingsView.displayName') }
- onChange = { this._onChangeDisplayName }
- placeholder = { t('settingsView.displayNamePlaceholderText') }
- textContentType = { 'name' } // iOS only
- value = { displayName } />
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- <Input
- // @ts-ignore
- autoCapitalize = 'none'
- customStyles = {{ container: styles.customContainer }}
- keyboardType = { 'email-address' }
- label = { t('settingsView.email') }
- onChange = { this._onChangeEmail }
- placeholder = { t('settingsView.emailPlaceholderText') }
- textContentType = { 'emailAddress' } // iOS only
- value = { email } />
- </FormSection>
- {/* @ts-ignore */}
- <FormSection
- label = 'settingsView.conferenceSection'>
- <Input
- // @ts-ignore
- autoCapitalize = 'none'
- customStyles = {{ container: styles.customContainer }}
- editable = { this.props._serverURLChangeEnabled }
- keyboardType = { 'url' }
- label = { t('settingsView.serverURL') }
- onBlur = { this._onBlurServerURL }
- onChange = { this._onChangeServerURL }
- placeholder = { this.props._serverURL }
- textContentType = { 'URL' } // iOS only
- value = { serverURL } />
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- <FormRow label = 'settingsView.startCarModeInLowBandwidthMode'>
- <Switch
- checked = { startCarMode }
- // @ts-ignore
- onChange = { this._onStartCarmodeInLowBandwidthMode } />
- </FormRow>
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- <FormRow
- label = 'settingsView.startWithAudioMuted'>
- <Switch
- checked = { startWithAudioMuted }
- // @ts-ignore
- onChange = { this._onStartAudioMutedChange } />
- </FormRow>
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- <FormRow label = 'settingsView.startWithVideoMuted'>
- <Switch
- checked = { startWithVideoMuted }
- // @ts-ignore
- onChange = { this._onStartVideoMutedChange } />
- </FormRow>
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- <FormRow label = 'videothumbnail.hideSelfView'>
- <Switch
- checked = { disableSelfView }
- // @ts-ignore
- onChange = { this._onDisableSelfView } />
- </FormRow>
- </FormSection>
- {/* @ts-ignore */}
- <FormSection
- label = 'settingsView.links'>
- <Button
- accessibilityLabel = 'settingsView.help'
- labelKey = 'settingsView.help'
- onClick = { this._onShowHelpPressed }
- type = { BUTTON_TYPES.TERTIARY } />
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- <Button
- accessibilityLabel = 'settingsView.terms'
- labelKey = 'settingsView.terms'
- onClick = { this._onShowTermsPressed }
- type = { BUTTON_TYPES.TERTIARY } />
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- <Button
- accessibilityLabel = 'settingsView.privacy'
- labelKey = 'settingsView.privacy'
- onClick = { this._onShowPrivacyPressed }
- type = { BUTTON_TYPES.TERTIARY } />
- </FormSection>
- {/* @ts-ignore */}
- <FormSection
- label = 'settingsView.buildInfoSection'>
- {/* @ts-ignore */}
- <FormRow
- label = 'settingsView.version'>
- <Text style = { styles.text }>
- {`${AppInfo.version} build ${AppInfo.buildNumber}`}
- </Text>
- </FormRow>
- </FormSection>
- {/* @ts-ignore */}
- <FormSection
- label = 'settingsView.advanced'>
- { Platform.OS === 'android' && (
- <>
- <FormRow
- label = 'settingsView.disableCallIntegration'>
- <Switch
- checked = { disableCallIntegration }
- // @ts-ignore
- onChange = { this._onDisableCallIntegration } />
- </FormRow>
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- </>
- )}
- <FormRow
- label = 'settingsView.disableP2P'>
- <Switch
- checked = { disableP2P }
- // @ts-ignore
- onChange = { this._onDisableP2P } />
- </FormRow>
- {/* @ts-ignore */}
- <Divider style = { styles.fieldSeparator } />
- {AppInfo.GOOGLE_SERVICES_ENABLED && (
- <FormRow
- fieldSeparator = { true }
- label = 'settingsView.disableCrashReporting'>
- <Switch
- checked = { disableCrashReporting }
- // @ts-ignore
- onChange = { this._onDisableCrashReporting } />
- </FormRow>
- )}
- </FormSection>
- </ScrollView>
- </JitsiScreen>
- );
- }
-
- /**
- * Handler the server URL lose focus event. Here we validate the server URL
- * and update it to the normalized version, or show an error if incorrect.
- *
- * @private
- * @returns {void}
- */
- _onBlurServerURL() {
- this._processServerURL(false /* hideOnSuccess */);
- }
-
- /**
- * Handles the display name field value change.
- *
- * @param {string} displayName - The value typed in the name field.
- * @protected
- * @returns {void}
- */
- _onChangeDisplayName(displayName: string) {
- this.setState({
- displayName
- });
-
- this._updateSettings({
- displayName
- });
- }
-
- /**
- * Handles the email field value change.
- *
- * @param {string} email - The value typed in the email field.
- * @protected
- * @returns {void}
- */
- _onChangeEmail(email: string) {
- this.setState({
- email
- });
-
- this._updateSettings({
- email
- });
- }
-
- /**
- * Handles the server name field value change.
- *
- * @param {string} serverURL - The server URL typed in the server field.
- * @protected
- * @returns {void}
- */
- _onChangeServerURL(serverURL: string) {
- this.setState({
- serverURL
- });
-
- this._updateSettings({
- serverURL
- });
- }
-
- /**
- * Handles the disable call integration change event.
- *
- * @param {boolean} disableCallIntegration - The new value
- * option.
- * @private
- * @returns {void}
- */
- _onDisableCallIntegration(disableCallIntegration: boolean) {
- this.setState({
- disableCallIntegration
- });
-
- this._updateSettings({
- disableCallIntegration
- });
- }
-
- /**
- * Handles the disable P2P change event.
- *
- * @param {boolean} disableP2P - The new value
- * option.
- * @private
- * @returns {void}
- */
- _onDisableP2P(disableP2P: boolean) {
- this.setState({
- disableP2P
- });
-
- this._updateSettings({
- disableP2P
- });
- }
-
- /** .
- * Handles the disable self view change event.
- *
- * @param {boolean} disableSelfView - The new value.
- * @private
- * @returns {void}
- */
- _onDisableSelfView(disableSelfView: boolean) {
- this.setState({
- disableSelfView
- });
-
- this._updateSettings({
- disableSelfView
- });
- }
-
- /** .
- * Handles car mode in low bandwidth mode.
- *
- * @param {boolean} startCarMode - The new value.
- * @private
- * @returns {void}
- */
- _onStartCarmodeInLowBandwidthMode(startCarMode: boolean) {
- this.setState({
- startCarMode
- });
-
- this._updateSettings({
- startCarMode
- });
- }
-
- /**
- * Handles the disable crash reporting change event.
- *
- * @param {boolean} disableCrashReporting - The new value
- * option.
- * @private
- * @returns {void}
- */
- _onDisableCrashReporting(disableCrashReporting: boolean) {
- if (disableCrashReporting) {
- this._showCrashReportingDisableAlert();
- } else {
- this._disableCrashReporting(disableCrashReporting);
- }
- }
-
- /**
- * Callback to be invoked on closing the modal. Also invokes normalizeUserInputURL to validate
- * the URL entered by the user.
- *
- * @returns {boolean} - True if the modal can be closed.
- */
- _onClose() {
- return this._processServerURL(true /* hideOnSuccess */);
- }
-
- /**
- * Handles the start audio muted change event.
- *
- * @param {boolean} startWithAudioMuted - The new value for the start audio muted
- * option.
- * @protected
- * @returns {void}
- */
- _onStartAudioMutedChange(startWithAudioMuted: boolean) {
- this.setState({
- startWithAudioMuted
- });
-
- this._updateSettings({
- startWithAudioMuted
- });
- }
-
- /**
- * Handles the start video muted change event.
- *
- * @param {boolean} startWithVideoMuted - The new value for the start video muted
- * option.
- * @protected
- * @returns {void}
- */
- _onStartVideoMutedChange(startWithVideoMuted: boolean) {
- this.setState({
- startWithVideoMuted
- });
-
- this._updateSettings({
- startWithVideoMuted
- });
- }
-
- /**
- * Processes the server URL. It normalizes it and an error alert is
- * displayed in case it's incorrect.
- *
- * @param {boolean} hideOnSuccess - True if the dialog should be hidden if
- * normalization / validation succeeds, false otherwise.
- * @private
- * @returns {void}
- */
- _processServerURL(hideOnSuccess: boolean) {
- // @ts-ignore
- const { serverURL } = this.props._settings;
- const normalizedURL = normalizeUserInputURL(serverURL);
-
- if (normalizedURL === null) {
- this._showURLAlert();
-
- return false;
- }
-
- this._onChangeServerURL(normalizedURL);
-
- return hideOnSuccess;
- }
-
- /**
- * Stores a reference to the URL field for later use.
- *
- * @param {Object} component - The field component.
- * @protected
- * @returns {void}
- */
- _setURLFieldReference(component: object) {
- this._urlField = component;
- }
-
- /**
- * Shows an alert telling the user that the URL he/she entered was invalid.
- *
- * @returns {void}
- */
- _showURLAlert() {
- const { t } = this.props;
-
- Alert.alert(
- t('settingsView.alertTitle'),
- t('settingsView.alertURLText'),
- [
- {
- // @ts-ignore
- onPress: () => this._urlField.focus(),
- text: t('settingsView.alertOk')
- }
- ]
- );
- }
-
- /**
- * Opens the help url into the browser.
- *
- * @returns {void}
- */
- _onShowHelpPressed() {
- Linking.openURL(this.props._legalUrls.helpCentre);
- }
-
- /**
- * Opens the privacy url into the browser.
- *
- * @returns {void}
- */
- _onShowPrivacyPressed() {
- Linking.openURL(this.props._legalUrls.privacy);
- }
-
- /**
- * Opens the terms url into the browser.
- *
- * @returns {void}
- */
- _onShowTermsPressed() {
- Linking.openURL(this.props._legalUrls.terms);
- }
-
- /**
- * Shows an alert warning the user about disabling crash reporting.
- *
- * @returns {void}
- */
- _showCrashReportingDisableAlert() {
- const { t } = this.props;
-
- Alert.alert(
- t('settingsView.alertTitle'),
- t('settingsView.disableCrashReportingWarning'),
- [
- {
- onPress: () => this._disableCrashReporting(true),
- text: t('settingsView.alertOk')
- },
- {
- text: t('settingsView.alertCancel')
- }
- ]
- );
- }
-
- /**
- * Updates the settings and sets state for disableCrashReporting.
- *
- * @param {boolean} disableCrashReporting - Whether crash reporting is disabled or not.
- * @returns {void}
- */
- _disableCrashReporting(disableCrashReporting: boolean) {
- this.setState({
- disableCrashReporting
- });
-
- this._updateSettings({
- disableCrashReporting
- });
- }
-
- /**
- * Updates the persisted settings on any change.
- *
- * @param {Object} updateObject - The partial update object for the
- * settings.
- * @private
- * @returns {void}
- */
- _updateSettings(updateObject: Object) {
- const { dispatch } = this.props;
-
- dispatch(updateSettings(updateObject));
- }
- }
-
- /**
- * Maps part of the Redux state to the props of this component.
- *
- * @param {Object} state - The Redux state.
- * @returns {IProps}
- */
- function _mapStateToProps(state: IReduxState) {
- const localParticipant = getLocalParticipant(state);
-
- return {
- _legalUrls: getLegalUrls(state),
- _localParticipantId: localParticipant?.id,
- _serverURL: getDefaultURL(state),
- _serverURLChangeEnabled: isServerURLChangeEnabled(state),
- _settings: state['features/base/settings'],
- _visible: state['features/settings'].visible
- };
- }
-
- export default translate(connect(_mapStateToProps)(SettingsView));
|