2015-07-20 02:51:58 +02: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';
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
|
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
2015-07-20 12:37:48 +02:00
|
|
|
var MemberInfoController = require("../../../../src/controllers/molecules/MemberInfo");
|
2015-07-20 02:51:58 +02:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MemberInfo',
|
2015-07-20 12:37:48 +02:00
|
|
|
mixins: [MemberInfoController],
|
|
|
|
|
|
|
|
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 ";
|
|
|
|
},
|
2015-07-20 02:51:58 +02:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
var power;
|
|
|
|
if (this.props.member) {
|
|
|
|
var img = "img/p/p" + Math.floor(20 * this.props.member.powerLevelNorm / 100) + ".png";
|
|
|
|
power = <img src={ img } className="mx_MemberTile_power" width="48" height="48" alt=""/>;
|
|
|
|
}
|
2015-07-20 12:37:48 +02:00
|
|
|
var activeAgo = "unknown";
|
|
|
|
if (this.state.active >= 0) {
|
|
|
|
activeAgo = this.getDuration(this.state.active);
|
|
|
|
}
|
2015-07-20 02:51:58 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="mx_MemberInfo">
|
|
|
|
<img className="mx_MemberInfo_chevron" src="img/chevron-right.png" width="9" height="16" />
|
|
|
|
<div className="mx_MemberInfo_avatar">
|
|
|
|
<img className="mx_MemberInfo_avatarImg"
|
|
|
|
src={ this.props.member ? MatrixClientPeg.get().getAvatarUrlForMember(this.props.member, 128, 128, "crop") : null }
|
|
|
|
width="128" height="128" alt=""/>
|
|
|
|
</div>
|
|
|
|
<div className="mx_MemberInfo_field">{this.props.member.userId}</div>
|
2015-07-20 12:37:48 +02:00
|
|
|
<div className="mx_MemberInfo_field">Presence: {this.state.presence}</div>
|
|
|
|
<div className="mx_MemberInfo_field">Last active: {activeAgo}</div>
|
2015-07-20 02:51:58 +02:00
|
|
|
<div className="mx_MemberInfo_button">Start chat</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|