123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- import React, { Component } from 'react';
- import { connect } from 'react-redux';
-
- import { IReduxState, IStore } from '../../../app/types';
- import ConfirmDialog from '../../../base/dialog/components/native/ConfirmDialog';
- import { translate } from '../../../base/i18n/functions';
- import { cancelWaitForOwner, login } from '../../actions.native';
-
-
- /**
- * The type of the React {@code Component} props of {@link WaitForOwnerDialog}.
- */
- interface IProps {
-
- /**
- * Whether to show alternative cancel button text.
- */
- _alternativeCancelText?: boolean;
-
- /**
- * Is confirm button hidden?
- */
- _isConfirmHidden?: boolean;
-
- /**
- * Redux store dispatch function.
- */
- dispatch: IStore['dispatch'];
-
- /**
- * Invoked to obtain translated strings.
- */
- t: Function;
- }
-
- /**
- * The dialog is display in XMPP password + guest access configuration, after
- * user connects from anonymous domain and the conference does not exist yet.
- *
- * See {@link LoginDialog} description for more details.
- */
- class WaitForOwnerDialog extends Component<IProps> {
- /**
- * Initializes a new WaitForWonderDialog instance.
- *
- * @param {Object} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props: IProps) {
- super(props);
-
- // Bind event handlers so they are only bound once per instance.
- this._onCancel = this._onCancel.bind(this);
- this._onLogin = this._onLogin.bind(this);
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const { _isConfirmHidden } = this.props;
-
- return (
- <ConfirmDialog
- cancelLabel = { this.props._alternativeCancelText ? 'dialog.WaitingForHostButton' : 'dialog.Cancel' }
- confirmLabel = 'dialog.IamHost'
- descriptionKey = 'dialog.WaitForHostMsg'
- isConfirmHidden = { _isConfirmHidden }
- onCancel = { this._onCancel }
- onSubmit = { this._onLogin } />
- );
- }
-
- /**
- * Called when the cancel button is clicked.
- *
- * @private
- * @returns {void}
- */
- _onCancel() {
- this.props.dispatch(cancelWaitForOwner());
- }
-
- /**
- * Called when the OK button is clicked.
- *
- * @private
- * @returns {void}
- */
- _onLogin() {
- this.props.dispatch(login());
- }
- }
-
- /**
- * Maps (parts of) the redux state to the associated
- * {@code WaitForOwnerDialog}'s props.
- *
- * @param {Object} state - The redux state.
- * @private
- * @returns {IProps}
- */
- function mapStateToProps(state: IReduxState) {
- const { membersOnly, lobbyWaitingForHost } = state['features/base/conference'];
- const { locationURL } = state['features/base/connection'];
-
- return {
- _alternativeCancelText: membersOnly && lobbyWaitingForHost,
- _isConfirmHidden: locationURL?.hostname?.includes('8x8.vc')
- };
- }
-
- export default translate(connect(mapStateToProps)(WaitForOwnerDialog));
|