2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-08-07 13:44:55 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-12-13 06:14:03 -05:00
|
|
|
import { autoPlayGif } from '../initial_state';
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Avatar extends React.PureComponent {
|
2016-08-24 15:08:00 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-08-07 13:44:55 -04:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
size: PropTypes.number.isRequired,
|
|
|
|
style: PropTypes.object,
|
2017-05-20 11:31:47 -04:00
|
|
|
inline: PropTypes.bool,
|
2017-12-13 06:14:03 -05:00
|
|
|
animate: PropTypes.bool,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-12-13 06:14:03 -05:00
|
|
|
animate: autoPlayGif,
|
2017-05-12 08:44:10 -04:00
|
|
|
size: 20,
|
2017-05-20 11:31:47 -04:00
|
|
|
inline: false,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2017-05-24 21:08:05 -04:00
|
|
|
hovering: false,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleMouseEnter = () => {
|
2017-05-02 20:04:16 -04:00
|
|
|
if (this.props.animate) return;
|
2017-01-25 11:07:57 -05:00
|
|
|
this.setState({ hovering: true });
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-01-25 11:07:57 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleMouseLeave = () => {
|
2017-05-02 20:04:16 -04:00
|
|
|
if (this.props.animate) return;
|
2017-01-25 11:07:57 -05:00
|
|
|
this.setState({ hovering: false });
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-01-25 11:07:57 -05:00
|
|
|
|
2016-08-24 15:08:00 -04:00
|
|
|
render () {
|
2017-08-07 13:44:55 -04:00
|
|
|
const { account, size, animate, inline } = this.props;
|
2017-01-25 11:07:57 -05:00
|
|
|
const { hovering } = this.state;
|
|
|
|
|
2017-08-07 13:44:55 -04:00
|
|
|
const src = account.get('avatar');
|
|
|
|
const staticSrc = account.get('avatar_static');
|
|
|
|
|
2017-05-03 05:43:37 -04:00
|
|
|
let className = 'account__avatar';
|
|
|
|
|
|
|
|
if (inline) {
|
|
|
|
className = className + ' account__avatar-inline';
|
|
|
|
}
|
|
|
|
|
2017-04-10 18:38:58 -04:00
|
|
|
const style = {
|
|
|
|
...this.props.style,
|
|
|
|
width: `${size}px`,
|
|
|
|
height: `${size}px`,
|
2017-05-20 11:31:47 -04:00
|
|
|
backgroundSize: `${size}px ${size}px`,
|
2017-04-10 18:38:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
if (hovering || animate) {
|
|
|
|
style.backgroundImage = `url(${src})`;
|
|
|
|
} else {
|
|
|
|
style.backgroundImage = `url(${staticSrc})`;
|
2017-01-31 13:16:35 -05:00
|
|
|
}
|
|
|
|
|
2016-08-24 15:08:00 -04:00
|
|
|
return (
|
2017-04-10 18:38:58 -04:00
|
|
|
<div
|
2017-05-03 05:43:37 -04:00
|
|
|
className={className}
|
2017-04-10 18:38:58 -04:00
|
|
|
onMouseEnter={this.handleMouseEnter}
|
|
|
|
onMouseLeave={this.handleMouseLeave}
|
|
|
|
style={style}
|
2018-09-27 20:11:14 -04:00
|
|
|
/>
|
2016-08-24 15:08:00 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|