2015-06-23 11:41:25 -04:00
|
|
|
/*
|
|
|
|
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';
|
|
|
|
|
2015-06-22 06:42:09 -04:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-07-13 21:13:00 -04:00
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
2015-07-19 20:51:58 -04:00
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
2015-07-22 05:59:36 -04:00
|
|
|
var Modal = require("../../../../src/Modal");
|
2015-06-23 09:40:50 -04:00
|
|
|
var MemberTileController = require("../../../../src/controllers/molecules/MemberTile");
|
2015-07-19 20:51:58 -04:00
|
|
|
var MemberInfo = ComponentBroker.get('molecules/MemberInfo');
|
2015-07-22 05:59:36 -04:00
|
|
|
var ErrorDialog = ComponentBroker.get("organisms/ErrorDialog");
|
2015-08-13 14:30:02 -04:00
|
|
|
var MemberAvatar = ComponentBroker.get('atoms/MemberAvatar');
|
2015-06-22 06:42:09 -04:00
|
|
|
|
2015-07-29 19:48:20 -04:00
|
|
|
// The Lato WOFF doesn't include sensible combining diacritics, so Chrome chokes on rendering them.
|
|
|
|
// Revert to Arial when this happens, which on OSX works at least.
|
|
|
|
var zalgo = /[\u0300-\u036f\u1ab0-\u1aff\u1dc0-\u1dff\u20d0-\u20ff\ufe20-\ufe2f]/;
|
|
|
|
|
2015-06-22 06:42:09 -04:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MemberTile',
|
|
|
|
mixins: [MemberTileController],
|
2015-07-19 20:51:58 -04:00
|
|
|
|
|
|
|
mouseEnter: function(e) {
|
|
|
|
this.setState({ 'hover': true });
|
|
|
|
},
|
|
|
|
|
|
|
|
mouseLeave: function(e) {
|
|
|
|
this.setState({ 'hover': false });
|
|
|
|
},
|
|
|
|
|
2015-08-14 22:06:21 -04:00
|
|
|
onClick: function(e) {
|
|
|
|
this.setState({ 'menu': true });
|
|
|
|
this.setState(this._calculateOpsPermissions());
|
|
|
|
},
|
|
|
|
|
2015-08-14 14:15:41 -04:00
|
|
|
getDuration: function(time) {
|
|
|
|
if (!time) return;
|
|
|
|
var t = parseInt(time / 1000);
|
|
|
|
var s = t % 60;
|
|
|
|
var m = parseInt(t / 60) % 60;
|
|
|
|
var h = parseInt(t / (60 * 60)) % 24;
|
|
|
|
var d = parseInt(t / (60 * 60 * 24));
|
|
|
|
if (t < 60) {
|
|
|
|
if (t < 0) {
|
|
|
|
return "0s";
|
|
|
|
}
|
|
|
|
return s + "s";
|
|
|
|
}
|
|
|
|
if (t < 60 * 60) {
|
|
|
|
return m + "m";
|
|
|
|
}
|
|
|
|
if (t < 24 * 60 * 60) {
|
|
|
|
return h + "h";
|
|
|
|
}
|
|
|
|
return d + "d ";
|
|
|
|
},
|
|
|
|
|
|
|
|
getPrettyPresence: function(user) {
|
2015-08-14 16:14:05 -04:00
|
|
|
if (!user) return "Unknown";
|
2015-08-14 14:15:41 -04:00
|
|
|
var presence = user.presence;
|
2015-08-14 16:14:05 -04:00
|
|
|
if (presence === "online") return "Online";
|
|
|
|
if (presence === "unavailable") return "Idle"; // XXX: is this actually right?
|
|
|
|
if (presence === "offline") return "Offline";
|
|
|
|
return "Unknown";
|
2015-08-14 14:15:41 -04:00
|
|
|
},
|
|
|
|
|
2015-08-14 22:06:21 -04:00
|
|
|
getPowerLabel: function() {
|
|
|
|
var label = this.props.member.userId;
|
|
|
|
if (this.state.isTargetMod) {
|
|
|
|
label += " - Mod (" + this.props.member.powerLevelNorm + "%)";
|
|
|
|
}
|
|
|
|
return label;
|
|
|
|
},
|
|
|
|
|
2015-06-22 06:42:09 -04:00
|
|
|
render: function() {
|
2015-07-22 05:59:36 -04:00
|
|
|
var isMyUser = MatrixClientPeg.get().credentials.userId == this.props.member.userId;
|
|
|
|
|
2015-07-18 14:06:58 -04:00
|
|
|
var power;
|
2015-08-11 19:41:46 -04:00
|
|
|
if (this.props.member && this.props.member.powerLevelNorm > 0) {
|
2015-07-18 22:39:13 -04:00
|
|
|
var img = "img/p/p" + Math.floor(20 * this.props.member.powerLevelNorm / 100) + ".png";
|
2015-07-18 14:06:58 -04:00
|
|
|
power = <img src={ img } className="mx_MemberTile_power" width="48" height="48" alt=""/>;
|
|
|
|
}
|
2015-07-20 12:42:19 -04:00
|
|
|
var presenceClass = "mx_MemberTile_offline";
|
|
|
|
var mainClassName = "mx_MemberTile ";
|
|
|
|
if (this.props.member.user) {
|
|
|
|
if (this.props.member.user.presence === "online") {
|
|
|
|
presenceClass = "mx_MemberTile_online";
|
|
|
|
}
|
|
|
|
else if (this.props.member.user.presence === "unavailable") {
|
|
|
|
presenceClass = "mx_MemberTile_unavailable";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mainClassName += presenceClass;
|
2015-08-14 14:15:41 -04:00
|
|
|
if (this.state.hover) {
|
|
|
|
mainClassName += " mx_MemberTile_hover";
|
|
|
|
}
|
2015-07-18 14:06:58 -04:00
|
|
|
|
2015-07-22 05:59:36 -04:00
|
|
|
var name = this.props.member.name;
|
2015-08-14 22:06:21 -04:00
|
|
|
// if (isMyUser) name += " (me)"; // this does nothing other than introduce line wrapping and pain
|
2015-08-14 14:15:41 -04:00
|
|
|
var leave = isMyUser ? <img className="mx_MemberTile_leave" src="img/delete.png" width="10" height="10" onClick={this.onLeaveClick}/> : null;
|
2015-07-29 19:48:20 -04:00
|
|
|
|
2015-08-14 14:15:41 -04:00
|
|
|
var nameClass = "mx_MemberTile_name";
|
2015-07-29 19:48:20 -04:00
|
|
|
if (zalgo.test(name)) {
|
|
|
|
nameClass += " mx_MemberTile_zalgo";
|
|
|
|
}
|
|
|
|
|
2015-08-14 22:06:21 -04:00
|
|
|
var menu;
|
|
|
|
if (this.state.menu) {
|
|
|
|
var kickButton, banButton, muteButton, giveModButton;
|
|
|
|
if (this.state.can.kick) {
|
|
|
|
kickButton = <div className="mx_MemberTile_menuItem" onClick={this.onKick}>
|
|
|
|
Kick
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
if (this.state.can.ban) {
|
|
|
|
banButton = <div className="mx_MemberTile_menuItem" onClick={this.onBan}>
|
|
|
|
Ban
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
if (this.state.can.mute) {
|
|
|
|
var muteLabel = this.state.muted ? "Unmute" : "Mute";
|
|
|
|
muteButton = <div className="mx_MemberTile_menuItem" onClick={this.onMuteToggle}>
|
|
|
|
{muteLabel}
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
if (this.state.can.modifyLevel) {
|
|
|
|
var giveOpLabel = this.state.isTargetMod ? "Revoke Mod" : "Make Mod";
|
|
|
|
giveModButton = <div className="mx_MemberTile_menuItem" onClick={this.onModToggle}>
|
|
|
|
{giveOpLabel}
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
menu = <div className="mx_MemberTile_menu">
|
|
|
|
<img className="mx_MemberTile_chevron" src="img/chevron-right.png" width="9" height="16" />
|
|
|
|
<div className="mx_MemberTile_menuItem" onClick={this.onChatClick}>Chat</div>
|
|
|
|
{muteButton}
|
|
|
|
{kickButton}
|
|
|
|
{banButton}
|
|
|
|
{giveModButton}
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
|
2015-07-22 05:59:36 -04:00
|
|
|
var nameEl;
|
2015-07-21 14:03:01 -04:00
|
|
|
if (this.state.hover) {
|
2015-08-14 14:15:41 -04:00
|
|
|
var presence;
|
|
|
|
// FIXME: make presence data update whenever User.presence changes...
|
2015-08-14 16:14:05 -04:00
|
|
|
var active = this.props.member.user ? (this.props.member.user.lastActiveAgo || -1) : -1;
|
2015-08-14 14:15:41 -04:00
|
|
|
if (active >= 0) {
|
|
|
|
presence = <div className="mx_MemberTile_presence">{ this.getPrettyPresence(this.props.member.user) } for { this.getDuration(active) }</div>;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
presence = <div className="mx_MemberTile_presence">{ this.getPrettyPresence(this.props.member.user) }</div>;
|
|
|
|
}
|
|
|
|
|
2015-07-22 05:59:36 -04:00
|
|
|
nameEl =
|
2015-08-14 14:15:41 -04:00
|
|
|
<div className="mx_MemberTile_details">
|
|
|
|
{ leave }
|
2015-08-14 22:06:21 -04:00
|
|
|
<div className="mx_MemberTile_userId">{ this.props.member.userId }</div>
|
2015-08-14 16:14:05 -04:00
|
|
|
{ presence }
|
2015-07-21 14:03:01 -04:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
else {
|
2015-07-22 05:59:36 -04:00
|
|
|
nameEl =
|
2015-07-29 19:48:20 -04:00
|
|
|
<div className={nameClass}>
|
2015-08-14 14:15:41 -04:00
|
|
|
{ name }
|
2015-07-21 14:03:01 -04:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
|
2015-06-22 06:42:09 -04:00
|
|
|
return (
|
2015-09-15 10:18:39 -04:00
|
|
|
<div className={mainClassName} title={ this.getPowerLabel() } onClick={ this.onClick } onMouseEnter={ this.mouseEnter } onMouseLeave={ this.mouseLeave }>
|
2015-08-14 22:06:21 -04:00
|
|
|
{ menu }
|
2015-07-19 20:51:58 -04:00
|
|
|
<div className="mx_MemberTile_avatar">
|
2015-08-13 14:30:02 -04:00
|
|
|
<MemberAvatar member={this.props.member} />
|
|
|
|
{ power }
|
2015-07-19 20:51:58 -04:00
|
|
|
</div>
|
2015-07-22 05:59:36 -04:00
|
|
|
{ nameEl }
|
2015-06-22 06:42:09 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|