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