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');
|
|
|
|
var MatrixClientPeg = require('../../MatrixClientPeg');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
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-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)
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: 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
|
|
|
);
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
imageUrl: url
|
2015-09-17 20:23:38 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|