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: {
|
|
|
|
member: React.PropTypes.object.isRequired,
|
|
|
|
width: React.PropTypes.number,
|
|
|
|
height: React.PropTypes.number,
|
|
|
|
resizeMethod: React.PropTypes.string,
|
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
width: 40,
|
|
|
|
height: 40,
|
|
|
|
resizeMethod: 'crop'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-28 18:15:35 +03:00
|
|
|
componentWillReceiveProps: function(nextProps) {
|
|
|
|
this.refreshUrl();
|
|
|
|
},
|
|
|
|
|
2015-09-28 19:06:13 +03:00
|
|
|
defaultAvatarUrl: function(member, width, height, resizeMethod) {
|
2015-11-30 17:39:29 +03:00
|
|
|
return Avatar.defaultAvatarUrlForString(member.userId);
|
2015-09-17 20:23:38 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onError: function(ev) {
|
|
|
|
// don't tightloop if the browser can't load a data url
|
|
|
|
if (ev.target.src == this.defaultAvatarUrl(this.props.member)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
imageUrl: this.defaultAvatarUrl(this.props.member)
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-10-28 18:15:35 +03:00
|
|
|
_computeUrl: function() {
|
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
|
|
|
},
|
|
|
|
|
|
|
|
refreshUrl: function() {
|
|
|
|
var newUrl = this._computeUrl();
|
|
|
|
if (newUrl != this.currentUrl) {
|
|
|
|
this.currentUrl = newUrl;
|
|
|
|
this.setState({imageUrl: newUrl});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
2015-09-28 19:06:13 +03:00
|
|
|
return {
|
2015-10-28 18:15:35 +03:00
|
|
|
imageUrl: this._computeUrl()
|
2015-09-17 20:23:38 +03:00
|
|
|
};
|
2015-11-26 15:02:31 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
///////////////
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
// XXX: recalculates default avatar url constantly
|
|
|
|
if (this.state.imageUrl === this.defaultAvatarUrl(this.props.member)) {
|
|
|
|
var initial;
|
|
|
|
if (this.props.member.name[0])
|
|
|
|
initial = this.props.member.name[0].toUpperCase();
|
|
|
|
if (initial === '@' && this.props.member.name[1])
|
|
|
|
initial = this.props.member.name[1].toUpperCase();
|
|
|
|
|
|
|
|
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",
|
2015-11-30 20:15:02 +03:00
|
|
|
lineHeight: this.props.height + "px" }}>{ initial }</span>
|
2015-11-26 15:02:31 +03:00
|
|
|
<img className="mx_MemberAvatar_image" src={this.state.imageUrl} title={this.props.member.name}
|
|
|
|
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}
|
|
|
|
title={this.props.member.name}
|
|
|
|
{...this.props}
|
|
|
|
/>
|
|
|
|
);
|
2015-09-17 20:23:38 +03:00
|
|
|
}
|
2015-11-26 15:02:31 +03:00
|
|
|
});
|