2015-09-17 20:23:38 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-09-17 20:23:38 +03:00
|
|
|
|
|
|
|
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');
|
2015-11-26 16:49:39 +03:00
|
|
|
var Avatar = require('../../../Avatar');
|
|
|
|
var MatrixClientPeg = require('../../../MatrixClientPeg');
|
2015-09-17 20:23:38 +03:00
|
|
|
|
2015-11-26 15:02:31 +03:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MemberAvatar',
|
|
|
|
|
2015-09-17 20:23:38 +03:00
|
|
|
propTypes: {
|
2016-01-13 19:55:28 +03:00
|
|
|
member: React.PropTypes.object,
|
2015-09-17 20:23:38 +03:00
|
|
|
width: React.PropTypes.number,
|
|
|
|
height: React.PropTypes.number,
|
|
|
|
resizeMethod: React.PropTypes.string,
|
2016-01-13 19:55:28 +03:00
|
|
|
/**
|
|
|
|
* The custom display name to use for this member. This can serve as a
|
|
|
|
* drop in replacement for RoomMember objects, or as a clobber name on
|
|
|
|
* an existing RoomMember. Used for 3pid invites.
|
|
|
|
*/
|
|
|
|
customDisplayName: React.PropTypes.string
|
2015-09-17 20:23:38 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
width: 40,
|
|
|
|
height: 40,
|
|
|
|
resizeMethod: 'crop'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-01-13 19:55:28 +03:00
|
|
|
getInitialState: function() {
|
|
|
|
var defaultImageUrl = Avatar.defaultAvatarUrlForString(
|
|
|
|
this.props.customDisplayName || this.props.member.userId
|
|
|
|
)
|
|
|
|
return {
|
|
|
|
imageUrl: this._getMemberImageUrl() || defaultImageUrl,
|
|
|
|
defaultImageUrl: defaultImageUrl
|
|
|
|
};
|
2015-10-28 18:15:35 +03:00
|
|
|
},
|
|
|
|
|
2016-01-13 19:55:28 +03:00
|
|
|
componentWillReceiveProps: function(nextProps) {
|
|
|
|
this.refreshUrl();
|
2015-09-17 20:23:38 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onError: function(ev) {
|
|
|
|
// don't tightloop if the browser can't load a data url
|
2016-01-13 19:55:28 +03:00
|
|
|
if (ev.target.src == this.state.defaultImageUrl) {
|
2015-09-17 20:23:38 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({
|
2016-01-13 19:55:28 +03:00
|
|
|
imageUrl: this.state.defaultImageUrl
|
2015-09-17 20:23:38 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-01-13 19:55:28 +03:00
|
|
|
_getMemberImageUrl: function() {
|
|
|
|
if (!this.props.member) { return null; }
|
|
|
|
|
2015-11-30 17:39:29 +03:00
|
|
|
return Avatar.avatarUrlForMember(this.props.member,
|
|
|
|
this.props.width,
|
|
|
|
this.props.height,
|
|
|
|
this.props.resizeMethod);
|
2015-10-28 18:15:35 +03:00
|
|
|
},
|
|
|
|
|
2016-01-13 19:55:28 +03:00
|
|
|
_getInitialLetter: function() {
|
|
|
|
var name = this.props.customDisplayName || this.props.member.name;
|
|
|
|
var initial = name[0];
|
|
|
|
if (initial === '@' && name[1]) {
|
|
|
|
initial = name[1];
|
|
|
|
}
|
|
|
|
return initial.toUpperCase();
|
|
|
|
},
|
|
|
|
|
2015-10-28 18:15:35 +03:00
|
|
|
refreshUrl: function() {
|
2016-01-13 19:55:28 +03:00
|
|
|
var newUrl = this._getMemberImageUrl();
|
2015-10-28 18:15:35 +03:00
|
|
|
if (newUrl != this.currentUrl) {
|
|
|
|
this.currentUrl = newUrl;
|
|
|
|
this.setState({imageUrl: newUrl});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-11-26 15:02:31 +03:00
|
|
|
render: function() {
|
2016-01-13 19:55:28 +03:00
|
|
|
var name = this.props.customDisplayName || this.props.member.name;
|
|
|
|
|
|
|
|
if (this.state.imageUrl === this.state.defaultImageUrl) {
|
|
|
|
var initialLetter = this._getInitialLetter();
|
2015-11-26 15:02:31 +03:00
|
|
|
return (
|
|
|
|
<span className="mx_MemberAvatar" {...this.props}>
|
|
|
|
<span className="mx_MemberAvatar_initial" aria-hidden="true"
|
2015-11-30 20:15:02 +03:00
|
|
|
style={{ fontSize: (this.props.width * 0.65) + "px",
|
2015-11-26 15:02:31 +03:00
|
|
|
width: this.props.width + "px",
|
2016-01-13 19:55:28 +03:00
|
|
|
lineHeight: this.props.height + "px" }}>{ initialLetter }</span>
|
|
|
|
<img className="mx_MemberAvatar_image" src={this.state.imageUrl} title={name}
|
2015-11-26 15:02:31 +03:00
|
|
|
onError={this.onError} width={this.props.width} height={this.props.height} />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<img className="mx_MemberAvatar mx_MemberAvatar_image" src={this.state.imageUrl}
|
|
|
|
onError={this.onError}
|
|
|
|
width={this.props.width} height={this.props.height}
|
2016-01-13 19:55:28 +03:00
|
|
|
title={name}
|
|
|
|
{...this.props} />
|
2015-11-26 15:02:31 +03:00
|
|
|
);
|
2015-09-17 20:23:38 +03:00
|
|
|
}
|
2015-11-26 15:02:31 +03:00
|
|
|
});
|