gab-social/app/javascript/gabsocial/components/avatar/index.js

70 lines
1.7 KiB
JavaScript
Raw Normal View History

2019-07-02 08:10:25 +01:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { Map as ImmutableMap } from 'immutable';
import classNames from 'classnames';
import { autoPlayGif } from '../../initial_state';
2019-07-02 08:10:25 +01:00
import './index.scss';
export default class Avatar extends ImmutablePureComponent {
2019-07-02 08:10:25 +01:00
static propTypes = {
account: ImmutablePropTypes.map,
size: PropTypes.number,
inline: PropTypes.bool,
animate: PropTypes.bool,
};
static defaultProps = {
account: ImmutableMap(),
2019-07-02 08:10:25 +01:00
animate: autoPlayGif,
inline: false,
};
state = {
hovering: false,
sameImg: this.props.account.get('avatar') === this.props.account.get('avatar_static'),
2019-07-02 08:10:25 +01:00
};
handleMouseEnter = () => {
if (this.props.animate || this.state.sameImg) return;
2019-07-02 08:10:25 +01:00
this.setState({ hovering: true });
}
handleMouseLeave = () => {
if (this.props.animate || this.state.sameImg) return;
2019-07-02 08:10:25 +01:00
this.setState({ hovering: false });
}
render () {
const { account, size, animate, inline } = this.props;
const { hovering } = this.state;
// : TODO : remove inline and change all avatars to be sized using css
const style = !size ? {} : {
width: `${size}px`,
height: `${size}px`,
};
const theSrc = account.get((hovering || animate) ? 'avatar' : 'avatar_static');
const className = classNames('account__avatar', {
'account__avatar--inline': inline,
});
2019-07-02 08:10:25 +01:00
return (
<img
2019-07-02 08:10:25 +01:00
className={className}
onMouseEnter={this.handleMouseEnter}
onMouseLeave={this.handleMouseLeave}
style={style}
src={theSrc}
alt={account.get('display_name')}
2019-07-02 08:10:25 +01:00
/>
);
}
}