Handle error when loading avatar, show default
This commit is contained in:
@@ -1,10 +1,36 @@
|
||||
// @flow
|
||||
import React, { Component } from 'react';
|
||||
import styled from 'styled-components';
|
||||
import { observable } from 'mobx';
|
||||
import { observer } from 'mobx-react';
|
||||
import { color } from 'shared/styles/constants';
|
||||
import placeholder from './placeholder.png';
|
||||
|
||||
const Avatar = styled.img`
|
||||
@observer
|
||||
class Avatar extends Component {
|
||||
@observable error: boolean;
|
||||
|
||||
handleError = () => {
|
||||
this.error = true;
|
||||
};
|
||||
|
||||
render() {
|
||||
return (
|
||||
<CircleImg
|
||||
{...this.props}
|
||||
onError={this.handleError}
|
||||
src={this.error ? placeholder : this.props.src}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const CircleImg = styled.img`
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid ${color.white};
|
||||
flex-shrink: 0;
|
||||
`;
|
||||
|
||||
export default Avatar;
|
||||
|
||||
BIN
app/components/Avatar/placeholder.png
Normal file
BIN
app/components/Avatar/placeholder.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 976 B |
Reference in New Issue
Block a user