123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- // @flow
-
- import React from 'react';
- import { Alert, NativeModules, SafeAreaView, ScrollView, Switch, Text, TextInput, View } from 'react-native';
-
- import { ColorSchemeRegistry } from '../../../base/color-scheme';
- import { translate } from '../../../base/i18n';
- import { HeaderWithNavigation, Modal } from '../../../base/react';
- import { connect } from '../../../base/redux';
-
- import {
- AbstractSettingsView,
- _mapStateToProps as _abstractMapStateToProps,
- type Props as AbstractProps
- } from '../AbstractSettingsView';
- import { setSettingsViewVisible } from '../../actions';
- import FormRow from './FormRow';
- import FormSectionHeader from './FormSectionHeader';
- import { normalizeUserInputURL } from '../../functions';
- import styles from './styles';
-
- /**
- * Application information module.
- */
- const { AppInfo } = NativeModules;
-
- type Props = AbstractProps & {
-
- /**
- * Color schemed style of the header component.
- */
- _headerStyles: Object
- }
-
- type State = {
-
- /**
- * State variable for the disable call integration switch.
- */
- disableCallIntegration: boolean,
-
- /**
- * State variable for the disable p2p switch.
- */
- disableP2P: 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,
-
- /**
- * Whether to show advanced settings or not.
- */
- showAdvanced: boolean,
-
- /**
- * State variable for the start with audio muted switch.
- */
- startWithAudioMuted: boolean,
-
- /**
- * State variable for the start with video muted switch.
- */
- startWithVideoMuted: boolean,
- }
-
- /**
- * The native container rendering the app settings page.
- *
- * @extends AbstractSettingsView
- */
- class SettingsView extends AbstractSettingsView<Props, State> {
- _urlField: Object;
-
- /**
- * Initializes a new {@code SettingsView} instance.
- *
- * @inheritdoc
- */
- constructor(props) {
- super(props);
- const {
- disableCallIntegration,
- disableP2P,
- displayName,
- email,
- serverURL,
- startWithAudioMuted,
- startWithVideoMuted
- } = props._settings || {};
-
- this.state = {
- disableCallIntegration,
- disableP2P,
- displayName,
- email,
- serverURL,
- showAdvanced: false,
- startWithAudioMuted,
- startWithVideoMuted
- };
-
- // Bind event handlers so they are only bound once per instance.
- this._onBlurServerURL = this._onBlurServerURL.bind(this);
- this._onDisableCallIntegration = this._onDisableCallIntegration.bind(this);
- this._onDisableP2P = this._onDisableP2P.bind(this);
- this._onRequestClose = this._onRequestClose.bind(this);
- this._onShowAdvanced = this._onShowAdvanced.bind(this);
- this._setURLFieldReference = this._setURLFieldReference.bind(this);
- this._showURLAlert = this._showURLAlert.bind(this);
- }
-
- /**
- * Implements React's {@link Component#render()}, renders the settings page.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- return (
- <Modal
- onRequestClose = { this._onRequestClose }
- presentationStyle = 'overFullScreen'
- visible = { this.props._visible }>
- <View style = { this.props._headerStyles.page }>
- { this._renderHeader() }
- { this._renderBody() }
- </View>
- </Modal>
- );
- }
-
- _onBlurServerURL: () => void;
-
- /**
- * 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 */);
- }
-
- /**
- * Callback to update the display name.
- *
- * @param {string} displayName - The new value to set.
- * @returns {void}
- */
- _onChangeDisplayName(displayName) {
- super._onChangeDisplayName(displayName);
- this.setState({
- displayName
- });
- }
-
- /**
- * Callback to update the email.
- *
- * @param {string} email - The new value to set.
- * @returns {void}
- */
- _onChangeEmail(email) {
- super._onChangeEmail(email);
- this.setState({
- email
- });
- }
-
- /**
- * Callback to update the server URL.
- *
- * @param {string} serverURL - The new value to set.
- * @returns {void}
- */
- _onChangeServerURL(serverURL) {
- super._onChangeServerURL(serverURL);
- this.setState({
- serverURL
- });
- }
-
- _onDisableCallIntegration: (boolean) => void;
-
- /**
- * Handles the disable call integration change event.
- *
- * @param {boolean} disableCallIntegration - The new value
- * option.
- * @private
- * @returns {void}
- */
- _onDisableCallIntegration(disableCallIntegration) {
- this._updateSettings({
- disableCallIntegration
- });
- this.setState({
- disableCallIntegration
- });
- }
-
- _onDisableP2P: (boolean) => void;
-
- /**
- * Handles the disable P2P change event.
- *
- * @param {boolean} disableP2P - The new value
- * option.
- * @private
- * @returns {void}
- */
- _onDisableP2P(disableP2P) {
- this._updateSettings({
- disableP2P
- });
- this.setState({
- disableP2P
- });
- }
-
- _onRequestClose: () => void;
-
- /**
- * Handles the back button. Also invokes normalizeUserInputURL to validate
- * the URL entered by the user.
- *
- * @returns {void}
- */
- _onRequestClose() {
- this.setState({ showAdvanced: false });
- this._processServerURL(true /* hideOnSuccess */);
- }
-
- _onShowAdvanced: () => void;
-
- /**
- * Handles the advanced settings button.
- *
- * @returns {void}
- */
- _onShowAdvanced() {
- this.setState({ showAdvanced: !this.state.showAdvanced });
- }
-
- /**
- * Callback to update the start with audio muted value.
- *
- * @param {boolean} startWithAudioMuted - The new value to set.
- * @returns {void}
- */
- _onStartAudioMutedChange(startWithAudioMuted) {
- super._onStartAudioMutedChange(startWithAudioMuted);
- this.setState({
- startWithAudioMuted
- });
- }
-
- /**
- * Callback to update the start with video muted value.
- *
- * @param {boolean} startWithVideoMuted - The new value to set.
- * @returns {void}
- */
- _onStartVideoMutedChange(startWithVideoMuted) {
- super._onStartVideoMutedChange(startWithVideoMuted);
- this.setState({
- 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) {
- const { serverURL } = this.props._settings;
- const normalizedURL = normalizeUserInputURL(serverURL);
-
- if (normalizedURL === null) {
- this._showURLAlert();
- } else {
- this._onChangeServerURL(normalizedURL);
- if (hideOnSuccess) {
- this.props.dispatch(setSettingsViewVisible(false));
- }
- }
- }
-
- /**
- * Renders the advanced settings options.
- *
- * @private
- * @returns {React$Element}
- */
- _renderAdvancedSettings() {
- const { disableCallIntegration, disableP2P, showAdvanced } = this.state;
-
- if (!showAdvanced) {
- return (
- <FormRow
- fieldSeparator = { true }
- label = 'settingsView.showAdvanced'>
- <Switch
- onValueChange = { this._onShowAdvanced }
- value = { showAdvanced } />
- </FormRow>
- );
- }
-
- return (
- <>
- <FormRow
- fieldSeparator = { true }
- label = 'settingsView.disableCallIntegration'>
- <Switch
- onValueChange = { this._onDisableCallIntegration }
- value = { disableCallIntegration } />
- </FormRow>
- <FormRow
- fieldSeparator = { true }
- label = 'settingsView.disableP2P'>
- <Switch
- onValueChange = { this._onDisableP2P }
- value = { disableP2P } />
- </FormRow>
- </>
- );
- }
-
- /**
- * Renders the body (under the header) of {@code SettingsView}.
- *
- * @private
- * @returns {React$Element}
- */
- _renderBody() {
- const { displayName, email, serverURL, startWithAudioMuted, startWithVideoMuted } = this.state;
-
- return (
- <SafeAreaView style = { styles.settingsForm }>
- <ScrollView>
- <FormSectionHeader
- label = 'settingsView.profileSection' />
- <FormRow
- fieldSeparator = { true }
- label = 'settingsView.displayName'
- layout = 'column'>
- <TextInput
- autoCorrect = { false }
- onChangeText = { this._onChangeDisplayName }
- placeholder = 'John Doe'
- value = { displayName } />
- </FormRow>
- <FormRow
- label = 'settingsView.email'
- layout = 'column'>
- <TextInput
- autoCapitalize = 'none'
- autoCorrect = { false }
- keyboardType = { 'email-address' }
- onChangeText = { this._onChangeEmail }
- placeholder = 'email@example.com'
- value = { email } />
- </FormRow>
- <FormSectionHeader
- label = 'settingsView.conferenceSection' />
- <FormRow
- fieldSeparator = { true }
- label = 'settingsView.serverURL'
- layout = 'column'>
- <TextInput
- autoCapitalize = 'none'
- autoCorrect = { false }
- onBlur = { this._onBlurServerURL }
- onChangeText = { this._onChangeServerURL }
- placeholder = { this.props._serverURL }
- value = { serverURL } />
- </FormRow>
- <FormRow
- fieldSeparator = { true }
- label = 'settingsView.startWithAudioMuted'>
- <Switch
- onValueChange = { this._onStartAudioMutedChange }
- value = { startWithAudioMuted } />
- </FormRow>
- <FormRow label = 'settingsView.startWithVideoMuted'>
- <Switch
- onValueChange = { this._onStartVideoMutedChange }
- value = { startWithVideoMuted } />
- </FormRow>
- <FormSectionHeader
- label = 'settingsView.buildInfoSection' />
- <FormRow
- label = 'settingsView.version'>
- <Text>
- { `${AppInfo.version} build ${AppInfo.buildNumber}` }
- </Text>
- </FormRow>
- <FormSectionHeader
- label = 'settingsView.advanced' />
- { this._renderAdvancedSettings() }
- </ScrollView>
- </SafeAreaView>
- );
- }
-
- /**
- * Renders the header of {@code SettingsView}.
- *
- * @private
- * @returns {React$Element}
- */
- _renderHeader() {
- return (
- <HeaderWithNavigation
- headerLabelKey = 'settingsView.header'
- onPressBack = { this._onRequestClose } />
- );
- }
-
- _setURLFieldReference: (React$ElementRef<*> | null) => void;
-
- /**
- * Stores a reference to the URL field for later use.
- *
- * @param {Object} component - The field component.
- * @protected
- * @returns {void}
- */
- _setURLFieldReference(component) {
- this._urlField = component;
- }
-
- _showURLAlert: () => void;
-
- /**
- * 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'),
- [
- {
- onPress: () => this._urlField.focus(),
- text: t('settingsView.alertOk')
- }
- ]
- );
- }
-
- _updateSettings: (Object) => void;
- }
-
- /**
- * Maps part of the Redux state to the props of this component.
- *
- * @param {Object} state - The Redux state.
- * @returns {{
- * _headerStyles: Object
- * }}
- */
- function _mapStateToProps(state) {
- return {
- ..._abstractMapStateToProps(state),
- _headerStyles: ColorSchemeRegistry.get(state, 'Header')
- };
- }
-
- export default translate(connect(_mapStateToProps)(SettingsView));
|