mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 04:21:32 +03:00
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
|
/*
|
||
|
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 {
|
||
|
width: 40,
|
||
|
height: 40,
|
||
|
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)
|
||
|
};
|
||
|
}
|
||
|
};
|