mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
73 lines
2.5 KiB
JavaScript
73 lines
2.5 KiB
JavaScript
/*
|
|
Copyright 2015 OpenMarket 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.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var React = require('react');
|
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
|
var MemberInfoController = require("../../../../src/controllers/molecules/MemberInfo");
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
|
var MemberAvatar = ComponentBroker.get('atoms/MemberAvatar');
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'MemberInfo',
|
|
mixins: [MemberInfoController],
|
|
|
|
render: function() {
|
|
var interactButton, kickButton, banButton, muteButton, giveModButton;
|
|
if (this.props.member.userId === MatrixClientPeg.get().credentials.userId) {
|
|
interactButton = <div className="mx_ContextualMenu_field" onClick={this.onLeaveClick}>Leave room</div>;
|
|
}
|
|
else {
|
|
interactButton = <div className="mx_ContextualMenu_field" onClick={this.onChatClick}>Start chat</div>;
|
|
}
|
|
|
|
if (this.state.can.kick) {
|
|
kickButton = <div className="mx_ContextualMenu_field" onClick={this.onKick}>
|
|
Kick
|
|
</div>;
|
|
}
|
|
if (this.state.can.ban) {
|
|
banButton = <div className="mx_ContextualMenu_field" onClick={this.onBan}>
|
|
Ban
|
|
</div>;
|
|
}
|
|
if (this.state.can.mute) {
|
|
var muteLabel = this.state.muted ? "Unmute" : "Mute";
|
|
muteButton = <div className="mx_ContextualMenu_field" onClick={this.onMuteToggle}>
|
|
{muteLabel}
|
|
</div>;
|
|
}
|
|
if (this.state.can.modifyLevel) {
|
|
var giveOpLabel = this.state.isTargetMod ? "Revoke Mod" : "Make Mod";
|
|
giveModButton = <div className="mx_ContextualMenu_field" onClick={this.onModToggle}>
|
|
{giveOpLabel}
|
|
</div>
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
{interactButton}
|
|
{muteButton}
|
|
{kickButton}
|
|
{banButton}
|
|
{giveModButton}
|
|
</div>
|
|
);
|
|
}
|
|
});
|