2017-05-03 01:04:16 +01:00
|
|
|
import React from 'react';
|
2017-04-21 19:05:35 +01:00
|
|
|
import PropTypes from 'prop-types';
|
2016-08-31 15:15:12 +01:00
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
class Avatar extends React.PureComponent {
|
2016-08-24 20:08:00 +01:00
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
this.state = {
|
2017-01-25 16:07:57 +00:00
|
|
|
hovering: false
|
|
|
|
};
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
this.handleMouseEnter = this.handleMouseEnter.bind(this);
|
|
|
|
this.handleMouseLeave = this.handleMouseLeave.bind(this);
|
|
|
|
}
|
2016-08-31 15:15:12 +01:00
|
|
|
|
2017-01-25 16:07:57 +00:00
|
|
|
handleMouseEnter () {
|
2017-05-03 01:04:16 +01:00
|
|
|
if (this.props.animate) return;
|
2017-01-25 16:07:57 +00:00
|
|
|
this.setState({ hovering: true });
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|
2017-01-25 16:07:57 +00:00
|
|
|
|
|
|
|
handleMouseLeave () {
|
2017-05-03 01:04:16 +01:00
|
|
|
if (this.props.animate) return;
|
2017-01-25 16:07:57 +00:00
|
|
|
this.setState({ hovering: false });
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|
2017-01-25 16:07:57 +00:00
|
|
|
|
2016-08-24 20:08:00 +01:00
|
|
|
render () {
|
2017-04-10 23:38:58 +01:00
|
|
|
const { src, size, staticSrc, animate } = this.props;
|
2017-01-25 16:07:57 +00:00
|
|
|
const { hovering } = this.state;
|
|
|
|
|
2017-04-10 23:38:58 +01:00
|
|
|
const style = {
|
|
|
|
...this.props.style,
|
|
|
|
width: `${size}px`,
|
|
|
|
height: `${size}px`,
|
|
|
|
backgroundSize: `${size}px ${size}px`
|
|
|
|
};
|
|
|
|
|
|
|
|
if (hovering || animate) {
|
|
|
|
style.backgroundImage = `url(${src})`;
|
|
|
|
} else {
|
|
|
|
style.backgroundImage = `url(${staticSrc})`;
|
2017-01-31 18:16:35 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 20:08:00 +01:00
|
|
|
return (
|
2017-04-10 23:38:58 +01:00
|
|
|
<div
|
2017-04-23 03:26:55 +01:00
|
|
|
className='account__avatar'
|
2017-04-10 23:38:58 +01:00
|
|
|
onMouseEnter={this.handleMouseEnter}
|
|
|
|
onMouseLeave={this.handleMouseLeave}
|
|
|
|
style={style}
|
|
|
|
/>
|
2016-08-24 20:08:00 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Avatar.propTypes = {
|
|
|
|
src: PropTypes.string.isRequired,
|
|
|
|
staticSrc: PropTypes.string,
|
|
|
|
size: PropTypes.number.isRequired,
|
|
|
|
style: PropTypes.object,
|
|
|
|
animate: PropTypes.bool
|
|
|
|
};
|
|
|
|
|
|
|
|
Avatar.defaultProps = {
|
|
|
|
animate: false
|
|
|
|
};
|
2016-08-24 20:08:00 +01:00
|
|
|
|
|
|
|
export default Avatar;
|