import React, { Component } from 'react'; import { Immutable } from 'nuclear-js'; import { connect } from 'react-redux'; import Avatar from '@atlaskit/avatar'; import InlineMessage from '@atlaskit/inline-message'; import { getInviteURL } from '../../base/connection'; import { Dialog, hideDialog } from '../../base/dialog'; import { translate } from '../../base/i18n'; import MultiSelectAutocomplete from '../../base/react/components/web/MultiSelectAutocomplete'; import { invitePeople, inviteRooms, searchPeople } from '../functions'; declare var interfaceConfig: Object; const { PropTypes } = React; /** * The dialog that allows to invite people to the call. */ class AddPeopleDialog extends Component { /** * {@code AddPeopleDialog}'s property types. * * @static */ static propTypes = { /** * The {@link JitsiMeetConference} which will be used to invite "room" * participants through the SIP Jibri (Video SIP gateway). */ _conference: PropTypes.object, /** * The URL pointing to the service allowing for people invite. */ _inviteServiceUrl: PropTypes.string, /** * The url of the conference to invite people to. */ _inviteUrl: PropTypes.string, /** * The JWT token. */ _jwt: PropTypes.string, /** * The query types used when searching people. */ _peopleSearchQueryTypes: PropTypes.arrayOf(PropTypes.string), /** * The URL pointing to the service allowing for people search. */ _peopleSearchUrl: PropTypes.string, /** * The function closing the dialog. */ hideDialog: PropTypes.func, /** * Invoked to obtain translated strings. */ t: PropTypes.func }; /** * Initializes a new {@code AddPeopleDialog} instance. * * @param {Object} props - The read-only properties with which the new * instance is to be initialized. */ constructor(props) { super(props); this.state = { /** * Indicating that an error occurred when adding people to the call. */ addToCallError: false, /** * Indicating that we're currently adding the new people to the * call. */ addToCallInProgress: false, /** * The list of invite items. */ inviteItems: new Immutable.List() }; this._multiselect = null; this._resourceClient = { makeQuery: text => { const { _jwt, _peopleSearchQueryTypes, _peopleSearchUrl } = this.props; return searchPeople( _peopleSearchUrl, _jwt, text, _peopleSearchQueryTypes ); }, parseResults: response => response.map(user => { const avatar = ( // eslint-disable-line no-extra-parens ); return { content: user.name, value: user.id, elemBefore: avatar, item: user }; }) }; this._isAddDisabled = this._isAddDisabled.bind(this); this._onSelectionChange = this._onSelectionChange.bind(this); this._onSubmit = this._onSubmit.bind(this); this._setMultiSelectElement = this._setMultiSelectElement.bind(this); } /** * React Component method that executes once component is updated. * * @param {Object} prevState - The state object before the update. * @returns {void} */ componentDidUpdate(prevState) { /** * Clears selected items from the multi select component on successful * invite. */ if (prevState.addToCallError && !this.state.addToCallInProgress && !this.state.addToCallError && this._multiselect) { this._multiselect.clear(); } } /** * Renders the content of this component. * * @returns {ReactElement} */ render() { return ( { this._renderUserInputForm() } ); } /** * Renders the input form. * * @returns {ReactElement} * @private */ _renderUserInputForm() { const { t } = this.props; return (
{ this._renderErrorMessage() }
); } /** * Indicates if the Add button should be disabled. * * @returns {boolean} - True to indicate that the Add button should * be disabled, false otherwise. * @private */ _isAddDisabled() { return !this.state.inviteItems.length || this.state.addToCallInProgress; } /** * Handles a selection change. * * @param {Map} selectedItems - The list of selected items. * @private * @returns {void} */ _onSelectionChange(selectedItems) { const selectedIds = selectedItems.map(o => o.item); this.setState({ inviteItems: selectedIds }); } /** * Handles the submit button action. * * @private * @returns {void} */ _onSubmit() { if (!this._isAddDisabled()) { this.setState({ addToCallInProgress: true }); this.props._conference && inviteRooms( this.props._conference, this.state.inviteItems.filter( i => i.type === 'videosipgw')); invitePeople( this.props._inviteServiceUrl, this.props._inviteUrl, this.props._jwt, this.state.inviteItems.filter(i => i.type === 'user')) .then(() => { this.setState({ addToCallInProgress: false }); this.props.hideDialog(); }) .catch(() => { this.setState({ addToCallInProgress: false, addToCallError: true }); }); } } /** * Renders the error message if the add doesn't succeed. * * @returns {ReactElement|null} * @private */ _renderErrorMessage() { if (!this.state.addToCallError) { return null; } const { t } = this.props; const supportString = t('inlineDialogFailure.supportMsg'); const supportLink = interfaceConfig.SUPPORT_URL; const supportLinkContent = ( // eslint-disable-line no-extra-parens { supportString.padEnd(supportString.length + 1) } { t('inlineDialogFailure.support') } . ); return (
{ supportLinkContent }
); } /** * Sets the instance variable for the multi select component * element so it can be accessed directly. * * @param {Object} element - The DOM element for the component's dialog. * @private * @returns {void} */ _setMultiSelectElement(element) { this._multiselect = element; } } /** * Maps (parts of) the Redux state to the associated * {@code AddPeopleDialog}'s props. * * @param {Object} state - The Redux state. * @private * @returns {{ * _peopleSearchUrl: React.PropTypes.string, * _jwt: React.PropTypes.string * }} */ function _mapStateToProps(state) { const { conference } = state['features/base/conference']; const { inviteServiceUrl, peopleSearchQueryTypes, peopleSearchUrl } = state['features/base/config']; return { _conference: conference, _jwt: state['features/jwt'].jwt, _inviteUrl: getInviteURL(state), _inviteServiceUrl: inviteServiceUrl, _peopleSearchQueryTypes: peopleSearchQueryTypes, _peopleSearchUrl: peopleSearchUrl }; } export default translate( connect(_mapStateToProps, { hideDialog })(AddPeopleDialog));