2015-09-17 20:23:38 +03: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');
|
2015-11-26 16:45:04 +03:00
|
|
|
var Avatar = require('../../Avatar');
|
2015-09-17 20:23:38 +03:00
|
|
|
var MatrixClientPeg = require('../../MatrixClientPeg');
|
|
|
|
|
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) {
|
|
|
|
if (this.skinnedDefaultAvatarUrl) {
|
|
|
|
return this.skinnedDefaultAvatarUrl(member, width, height, resizeMethod);
|
|
|
|
}
|
2015-09-17 20:23:38 +03:00
|
|
|
return "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAIAAAADnC86AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADRJREFUeNrszQENADAIACB9QjNbxSKP4eagAFnTseHFErFYLBaLxWKxWCwWi8Vi8cX4CzAABSwCRWJw31gAAAAASUVORK5CYII=";
|
|
|
|
},
|
|
|
|
|
|
|
|
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-10-20 12:30:58 +03:00
|
|
|
var url = this.props.member.getAvatarUrl(
|
|
|
|
MatrixClientPeg.get().getHomeserverUrl(),
|
2015-09-28 19:06:13 +03:00
|
|
|
this.props.width,
|
|
|
|
this.props.height,
|
|
|
|
this.props.resizeMethod,
|
|
|
|
false
|
|
|
|
);
|
|
|
|
if (!url) {
|
|
|
|
url = this.defaultAvatarUrl(
|
2015-09-17 20:23:38 +03:00
|
|
|
this.props.member,
|
|
|
|
this.props.width,
|
|
|
|
this.props.height,
|
|
|
|
this.props.resizeMethod
|
2015-09-28 19:06:13 +03:00
|
|
|
);
|
|
|
|
}
|
2015-10-28 18:15:35 +03:00
|
|
|
return url;
|
|
|
|
},
|
|
|
|
|
|
|
|
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
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
///////////////
|
|
|
|
|
|
|
|
|
|
|
|
avatarUrlForMember: function(member) {
|
|
|
|
return Avatar.avatarUrlForMember(
|
|
|
|
member,
|
|
|
|
this.props.member,
|
|
|
|
this.props.width,
|
|
|
|
this.props.height,
|
|
|
|
this.props.resizeMethod
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
skinnedDefaultAvatarUrl: function(member, width, height, resizeMethod) {
|
|
|
|
return Avatar.defaultAvatarUrlForString(member.userId);
|
|
|
|
},
|
|
|
|
|
|
|
|
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"
|
|
|
|
style={{ fontSize: (this.props.width * 0.75) + "px",
|
|
|
|
width: this.props.width + "px",
|
|
|
|
lineHeight: this.props.height*1.2 + "px" }}>{ initial }</span>
|
|
|
|
<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
|
|
|
});
|