| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | // @flow
import React, { PureComponent } from 'react';
import { Text, View } from 'react-native';
import { ColorSchemeRegistry } from '../../../base/color-scheme';
import { CustomSubmitDialog } from '../../../base/dialog';
import { translate } from '../../../base/i18n';
import { connect } from '../../../base/redux';
import { StyleType } from '../../../base/styles';
import { toggleLobbyMode } from '../../actions';
import styles from './styles';
type Props = {
    /**
     * The color-schemed stylesheet of the feature.
     */
    _dialogStyles: StyleType,
    /**
     * The Redux Dispatch function.
     */
    dispatch: Function,
    /**
     * Function to be used to translate i18n labels.
     */
    t: Function
};
/**
 * Implements a dialog that lets the user enable the lobby mode.
 */
class EnableLobbyModeDialog extends PureComponent<Props> {
    /**
     * Instantiates a new component.
     *
     * @inheritdoc
     */
    constructor(props: Props) {
        super(props);
        this._onEnableLobbyMode = this._onEnableLobbyMode.bind(this);
    }
    /**
     * Implements {@code PureComponent#render}.
     *
     * @inheritdoc
     */
    render() {
        return (
            <CustomSubmitDialog
                okKey = 'lobby.enableDialogSubmit'
                onSubmit = { this._onEnableLobbyMode }
                titleKey = 'lobby.dialogTitle'>
                <View style = { styles.formWrapper }>
                    <Text style = { this.props._dialogStyles.text } >
                        { this.props.t('lobby.enableDialogText') }
                    </Text>
                </View>
            </CustomSubmitDialog>
        );
    }
    _onEnableLobbyMode: () => void;
    /**
     * Callback to be invoked when the user initiates the lobby mode enable flow.
     *
     * @returns {void}
     */
    _onEnableLobbyMode() {
        this.props.dispatch(toggleLobbyMode(true));
        return true;
    }
}
/**
 * Maps part of the Redux state to the props of this component.
 *
 * @param {Object} state - The Redux state.
 * @returns {Props}
 */
function _mapStateToProps(state: Object): Object {
    return {
        _dialogStyles: ColorSchemeRegistry.get(state, 'Dialog')
    };
}
export default translate(connect(_mapStateToProps)(EnableLobbyModeDialog));
 |