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