/* Copyright 2017 Vector Creations Ltd Copyright 2017 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React from 'react'; import PropTypes from 'prop-types'; import createReactClass from 'create-react-class'; import { MatrixClient } from 'matrix-js-sdk'; import dis from '../../../dispatcher'; import Modal from '../../../Modal'; import sdk from '../../../index'; import { _t } from '../../../languageHandler'; import { GroupMemberType } from '../../../groups'; import GroupStore from '../../../stores/GroupStore'; import AccessibleButton from '../elements/AccessibleButton'; module.exports = createReactClass({ displayName: 'GroupMemberInfo', contextTypes: { matrixClient: PropTypes.instanceOf(MatrixClient), }, propTypes: { groupId: PropTypes.string, groupMember: GroupMemberType, isInvited: PropTypes.bool, }, getInitialState: function() { return { removingUser: false, isUserPrivilegedInGroup: null, }; }, componentWillMount: function() { this._unmounted = false; this._initGroupStore(this.props.groupId); }, componentWillReceiveProps(newProps) { if (newProps.groupId !== this.props.groupId) { this._unregisterGroupStore(this.props.groupId); this._initGroupStore(newProps.groupId); } }, componentWillUnmount() { this._unmounted = true; this._unregisterGroupStore(this.props.groupId); }, _initGroupStore(groupId) { GroupStore.registerListener(groupId, this.onGroupStoreUpdated); }, _unregisterGroupStore(groupId) { GroupStore.unregisterListener(this.onGroupStoreUpdated); }, onGroupStoreUpdated: function() { if (this._unmounted) return; this.setState({ isUserInvited: GroupStore.getGroupInvitedMembers(this.props.groupId).some( (m) => m.userId === this.props.groupMember.userId, ), isUserPrivilegedInGroup: GroupStore.isUserPrivileged(this.props.groupId), }); }, _onKick: function() { const ConfirmUserActionDialog = sdk.getComponent("dialogs.ConfirmUserActionDialog"); Modal.createDialog(ConfirmUserActionDialog, { matrixClient: this.context.matrixClient, groupMember: this.props.groupMember, action: this.state.isUserInvited ? _t('Disinvite') : _t('Remove from community'), title: this.state.isUserInvited ? _t('Disinvite this user from community?') : _t('Remove this user from community?'), danger: true, onFinished: (proceed) => { if (!proceed) return; this.setState({removingUser: true}); this.context.matrixClient.removeUserFromGroup( this.props.groupId, this.props.groupMember.userId, ).then(() => { // return to the user list dis.dispatch({ action: "view_user", member: null, }); }).catch((e) => { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createTrackedDialog('Failed to remove user from group', '', ErrorDialog, { title: _t('Error'), description: this.state.isUserInvited ? _t('Failed to withdraw invitation') : _t('Failed to remove user from community'), }); }).finally(() => { this.setState({removingUser: false}); }); }, }); }, _onCancel: function(e) { // Go back to the user list dis.dispatch({ action: "view_user", member: null, }); }, onRoomTileClick(roomId) { dis.dispatch({ action: 'view_room', room_id: roomId, }); }, render: function() { if (this.state.removingUser) { const Spinner = sdk.getComponent("elements.Spinner"); return