/* 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'; import SettingsStore from "../../../settings/SettingsStore"; const React = require('react'); import PropTypes from 'prop-types'; const sdk = require('../../../index'); const dis = require('../../../dispatcher'); 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 EntityTile = sdk.getComponent('rooms.EntityTile'); const member = this.props.member; const name = this._getDisplayName(); const presenceState = member.user ? member.user.presence : null; let statusMessage = null; if (member.user && SettingsStore.isFeatureEnabled("feature_custom_status")) { statusMessage = member.user._unstable_statusMessage; } const av = ( ); 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 ( ); }, });