/* 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 PropTypes from 'prop-types'; import React from 'react'; import dis from '../../../dispatcher'; import Modal from '../../../Modal'; import sdk from '../../../index'; import { _t } from '../../../languageHandler'; import { GroupMemberType } from '../../../groups'; import { groupMemberFromApiObject } from '../../../groups'; import withMatrixClient from '../../../wrappers/withMatrixClient'; import AccessibleButton from '../elements/AccessibleButton'; import GeminiScrollbar from 'react-gemini-scrollbar'; module.exports = withMatrixClient(React.createClass({ displayName: 'GroupMemberInfo', propTypes: { matrixClient: PropTypes.object.isRequired, groupId: PropTypes.string, groupMember: GroupMemberType, }, getInitialState: function() { return { fetching: false, removingUser: false, groupMembers: null, }; }, componentWillMount: function() { this._fetchMembers(); }, _fetchMembers: function() { this.setState({fetching: true}); this.props.matrixClient.getGroupUsers(this.props.groupId).then((result) => { this.setState({ groupMembers: result.chunk.map((apiMember) => { return groupMemberFromApiObject(apiMember); }), fetching: false, }); }).catch((e) => { this.setState({fetching: false}); console.error("Failed to get group groupMember list: ", e); }); }, _onKick: function() { const ConfirmUserActionDialog = sdk.getComponent("dialogs.ConfirmUserActionDialog"); Modal.createDialog(ConfirmUserActionDialog, { groupMember: this.props.groupMember, action: _t('Remove from group'), danger: true, onFinished: (proceed) => { if (!proceed) return; this.setState({removingUser: true}); this.props.matrixClient.removeUserFromGroup(this.props.groupId, this.props.groupMember.userId).then(() => { // return to the user list dis.dispatch({ action: "view_user", groupMember: null, }); }).catch((e) => { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createTrackedDialog('Failed to remove user from group', '', ErrorDialog, { title: _t('Error'), description: _t('Failed to remove user from group'), }); }).finally(() => { this.setState({removingUser: false}); }); }, }); }, _onCancel: function(e) { // Go back to the user list dis.dispatch({ action: "view_user", groupMember: null, }); }, onRoomTileClick(roomId) { dis.dispatch({ action: 'view_room', room_id: roomId, }); }, render: function() { if (this.state.fetching || this.state.removingUser) { const Spinner = sdk.getComponent("elements.Spinner"); return ; } if (!this.state.groupMembers) return null; const targetIsInGroup = this.state.groupMembers.some((m) => { return m.userId == this.props.groupMember.userId; }); let kickButton; let adminButton; if (targetIsInGroup) { kickButton = ( {_t('Remove from group')} ); // No make/revoke admin API yet /*const opLabel = this.state.isTargetMod ? _t("Revoke Moderator") : _t("Make Moderator"); giveModButton = {giveOpLabel} ;*/ } let adminTools; if (kickButton || adminButton) { adminTools =

{_t("Admin Tools")}

{kickButton} {adminButton}
; } const BaseAvatar = sdk.getComponent('avatars.BaseAvatar'); const avatar = ( ); const groupMemberName = this.props.groupMember.userId; const EmojiText = sdk.getComponent('elements.EmojiText'); return (
{avatar}
{groupMemberName}
{ this.props.groupMember.userId }
{ adminTools }
); }, }));