import React, { Component } from 'react'; import { connect } from 'react-redux'; import { IStore } from '../../../app/types'; import ConfirmDialog from '../../../base/dialog/components/native/ConfirmDialog'; import { translate } from '../../../base/i18n/functions'; import { cancelWaitForOwner, openLoginDialog } from '../../actions.native'; /** * The type of the React {@code Component} props of {@link WaitForOwnerDialog}. */ interface IProps { /** * 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 { /** * 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() { return ( ); } /** * 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(openLoginDialog()); } } export default translate(connect()(WaitForOwnerDialog));