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