/* Copyright 2017 Vector Creations 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 classNames from 'classnames'; import dis from '../../../dispatcher'; import Modal from '../../../Modal'; import sdk from '../../../index'; import { _t } from '../../../languageHandler'; import createRoom from '../../../createRoom'; import DMRoomMap from '../../../utils/DMRoomMap'; import Unread from '../../../Unread'; import { GroupMemberType } from '../../../groups'; import { findReadReceiptFromUserId } from '../../../utils/Receipt'; 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, member: GroupMemberType, }, getInitialState: function() { return { fetching: false, removingUser: false, members: null, } }, componentWillMount: function() { this._fetchMembers(); }, _fetchMembers: function() { this.setState({fetching: true}); this.props.matrixClient.getGroupUsers(this.props.groupId).then((result) => { this.setState({ members: result.chunk.map((apiMember) => { return groupMemberFromApiObject(apiMember); }), fetching: false, }); }).catch((e) => { this.setState({fetching: false}); console.error("Failed to get group member list: " + e); }); }, _onKick: function() { const ConfirmUserActionDialog = sdk.getComponent("dialogs.ConfirmUserActionDialog"); Modal.createDialog(ConfirmUserActionDialog, { groupMember: this.props.member, 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.member.userId).then(() => { 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: _t('Failed to remove user from group'), }); }).finally(() => { this.setState({removingUser: false}); }); }, }); }, _onCancel: function(e) { dis.dispatch({ action: "view_user", member: null }); }, onRoomTileClick(roomId) { dis.dispatch({ action: 'view_room', room_id: roomId, }); }, render: function() { if (this.state.fetching || this.state.removingUser) { const Loader = sdk.getComponent("elements.Spinner"); return ; } if (!this.state.members) return null; let targetIsInGroup = false; for (const m of this.state.members) { if (m.userId == this.props.member.userId) { targetIsInGroup = true; } } let kickButton, 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 memberName = this.props.member.userId; const EmojiText = sdk.getComponent('elements.EmojiText'); return (
{avatar}
{memberName}
{ this.props.member.userId }
{ adminTools }
); } }));