31b772997e
Adds a config option that disables showing presence for certain HS URLs, so we can disable it on matrix.org where the feature is turned off.
112 lines
3.6 KiB
JavaScript
112 lines
3.6 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 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';
|
|
|
|
const React = require('react');
|
|
import PropTypes from 'prop-types';
|
|
|
|
const MatrixClientPeg = require('../../../MatrixClientPeg');
|
|
const sdk = require('../../../index');
|
|
const dis = require('../../../dispatcher');
|
|
const Modal = require("../../../Modal");
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'MemberTile',
|
|
|
|
propTypes: {
|
|
member: PropTypes.any.isRequired, // RoomMember
|
|
showPresence: PropTypes.bool,
|
|
},
|
|
|
|
getDefaultProps: function() {
|
|
return {
|
|
showPresence: true,
|
|
};
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return {};
|
|
},
|
|
|
|
shouldComponentUpdate: function(nextProps, nextState) {
|
|
if (
|
|
this.member_last_modified_time === undefined ||
|
|
this.member_last_modified_time < nextProps.member.getLastModifiedTime()
|
|
) {
|
|
return true;
|
|
}
|
|
if (
|
|
nextProps.member.user &&
|
|
(this.user_last_modified_time === undefined ||
|
|
this.user_last_modified_time < nextProps.member.user.getLastModifiedTime())
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
|
|
onClick: function(e) {
|
|
dis.dispatch({
|
|
action: 'view_user',
|
|
member: this.props.member,
|
|
});
|
|
},
|
|
|
|
_getDisplayName: function() {
|
|
return this.props.member.name;
|
|
},
|
|
|
|
getPowerLabel: function() {
|
|
return _t("%(userName)s (power %(powerLevelNumber)s)", {userName: this.props.member.userId, powerLevelNumber: this.props.member.powerLevel});
|
|
},
|
|
|
|
render: function() {
|
|
const MemberAvatar = sdk.getComponent('avatars.MemberAvatar');
|
|
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
|
const EntityTile = sdk.getComponent('rooms.EntityTile');
|
|
|
|
const member = this.props.member;
|
|
const name = this._getDisplayName();
|
|
const active = -1;
|
|
const presenceState = member.user ? member.user.presence : null;
|
|
|
|
const av = (
|
|
<MemberAvatar member={member} width={36} height={36} />
|
|
);
|
|
|
|
if (member.user) {
|
|
this.user_last_modified_time = member.user.getLastModifiedTime();
|
|
}
|
|
this.member_last_modified_time = member.getLastModifiedTime();
|
|
|
|
// We deliberately leave power levels that are not 100 or 50 undefined
|
|
const powerStatus = {
|
|
100: EntityTile.POWER_STATUS_ADMIN,
|
|
50: EntityTile.POWER_STATUS_MODERATOR,
|
|
}[this.props.member.powerLevel];
|
|
|
|
return (
|
|
<EntityTile {...this.props} presenceState={presenceState}
|
|
presenceLastActiveAgo={member.user ? member.user.lastActiveAgo : 0}
|
|
presenceLastTs={member.user ? member.user.lastPresenceTs : 0}
|
|
presenceCurrentlyActive={member.user ? member.user.currentlyActive : false}
|
|
avatarJsx={av} title={this.getPowerLabel()} onClick={this.onClick}
|
|
name={name} powerStatus={powerStatus} showPresence={this.props.showPresence} />
|
|
);
|
|
},
|
|
});
|