element-web/src/components/views/groups/GroupMemberInfo.js

206 lines
7.2 KiB
JavaScript
Raw Normal View History

2017-08-04 17:00:34 +03:00
/*
Copyright 2017 Vector Creations Ltd
2017-08-25 14:10:13 +03:00
Copyright 2017 New Vector Ltd
2017-08-04 17:00:34 +03:00
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';
2017-08-04 17:00:34 +03:00
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';
2017-08-04 17:00:34 +03:00
import AccessibleButton from '../elements/AccessibleButton';
module.exports = createReactClass({
2017-08-04 17:00:34 +03:00
displayName: 'GroupMemberInfo',
contextTypes: {
matrixClient: PropTypes.instanceOf(MatrixClient),
},
2017-08-04 17:00:34 +03:00
propTypes: {
groupId: PropTypes.string,
2017-08-25 14:10:13 +03:00
groupMember: GroupMemberType,
isInvited: PropTypes.bool,
2017-08-04 17:00:34 +03:00
},
getInitialState: function() {
return {
removingUser: false,
isUserPrivilegedInGroup: null,
2017-08-21 21:34:07 +03:00
};
},
2017-08-04 17:00:34 +03:00
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);
2017-08-04 17:00:34 +03:00
},
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),
2017-08-04 17:00:34 +03:00
});
},
_onKick: function() {
const ConfirmUserActionDialog = sdk.getComponent("dialogs.ConfirmUserActionDialog");
Modal.createDialog(ConfirmUserActionDialog, {
matrixClient: this.context.matrixClient,
2017-08-25 14:10:13 +03:00
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?'),
2017-08-04 17:00:34 +03:00
danger: true,
onFinished: (proceed) => {
if (!proceed) return;
this.setState({removingUser: true});
this.context.matrixClient.removeUserFromGroup(
2017-08-30 19:34:44 +03:00
this.props.groupId, this.props.groupMember.userId,
).then(() => {
2017-08-25 14:10:13 +03:00
// return to the user list
dis.dispatch({
action: "view_user",
2017-08-30 11:22:26 +03:00
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});
});
2017-08-04 17:00:34 +03:00
},
});
},
_onCancel: function(e) {
2017-08-25 14:10:13 +03:00
// Go back to the user list
2017-08-04 17:00:34 +03:00
dis.dispatch({
action: "view_user",
2017-08-30 11:22:26 +03:00
member: null,
2017-08-04 17:00:34 +03:00
});
},
onRoomTileClick(roomId) {
dis.dispatch({
action: 'view_room',
room_id: roomId,
});
},
render: function() {
if (this.state.removingUser) {
2017-08-25 14:10:13 +03:00
const Spinner = sdk.getComponent("elements.Spinner");
return <div className="mx_MemberInfo">
<Spinner />
</div>;
2017-08-04 17:00:34 +03:00
}
let adminTools;
if (this.state.isUserPrivilegedInGroup) {
const kickButton = (
2017-08-04 17:00:34 +03:00
<AccessibleButton className="mx_MemberInfo_field"
onClick={this._onKick}>
{ this.state.isUserInvited ? _t('Disinvite') : _t('Remove from community') }
2017-08-04 17:00:34 +03:00
</AccessibleButton>
);
// No make/revoke admin API yet
/*const opLabel = this.state.isTargetMod ? _t("Revoke Moderator") : _t("Make Moderator");
giveModButton = <AccessibleButton className="mx_MemberInfo_field" onClick={this.onModToggle}>
{giveOpLabel}
</AccessibleButton>;*/
if (kickButton) {
adminTools =
<div className="mx_MemberInfo_adminTools">
<h3>{ _t("Admin Tools") }</h3>
<div className="mx_MemberInfo_buttons">
{ kickButton }
</div>
</div>;
}
2017-08-04 17:00:34 +03:00
}
2017-09-25 16:51:21 +03:00
const avatarUrl = this.props.groupMember.avatarUrl;
let avatarElement;
if (avatarUrl) {
const httpUrl = this.context.matrixClient.mxcUrlToHttp(avatarUrl, 800, 800);
2019-01-30 20:53:15 +03:00
avatarElement = (<div className="mx_MemberInfo_avatar">
<img src={httpUrl} />
</div>);
}
2017-08-04 17:00:34 +03:00
const groupMemberName = (
this.props.groupMember.displayname || this.props.groupMember.userId
);
2017-08-04 17:00:34 +03:00
const GeminiScrollbarWrapper = sdk.getComponent('elements.GeminiScrollbarWrapper');
2017-08-04 17:00:34 +03:00
return (
<div className="mx_MemberInfo" role="tabpanel">
<GeminiScrollbarWrapper autoshow={true}>
<AccessibleButton className="mx_MemberInfo_cancel" onClick={this._onCancel}>
<img src={require("../../../../res/img/cancel.svg")} width="18" height="18" className="mx_filterFlipColor" />
2017-08-25 14:10:13 +03:00
</AccessibleButton>
{ avatarElement }
<h2>{ groupMemberName }</h2>
2017-08-04 17:00:34 +03:00
<div className="mx_MemberInfo_profile">
<div className="mx_MemberInfo_profileField">
2017-08-25 14:10:13 +03:00
{ this.props.groupMember.userId }
2017-08-04 17:00:34 +03:00
</div>
</div>
{ adminTools }
</GeminiScrollbarWrapper>
2017-08-04 17:00:34 +03:00
</div>
);
2017-08-21 21:34:07 +03:00
},
});