2015-09-18 16:34:36 +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 MatrixClientPeg = require('../../MatrixClientPeg');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
2015-10-11 04:08:39 +03:00
|
|
|
width: 36,
|
|
|
|
height: 36,
|
2015-09-18 16:34:36 +03:00
|
|
|
resizeMethod: 'crop'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
avatarUrlForRoom: function(room) {
|
|
|
|
var url = MatrixClientPeg.get().getAvatarUrlForRoom(
|
|
|
|
room,
|
|
|
|
this.props.width, this.props.height, this.props.resizeMethod,
|
|
|
|
false
|
|
|
|
);
|
|
|
|
if (url === null) {
|
|
|
|
url = this.defaultAvatarUrl(room);
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
},
|
|
|
|
|
|
|
|
defaultAvatarUrl: function(member) {
|
|
|
|
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.room)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
imageUrl: this.defaultAvatarUrl(this.props.room)
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
imageUrl: this.avatarUrlForRoom(this.props.room)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|