2020-03-27 13:59:38 -07:00
|
|
|
import React from 'react';
|
2020-04-17 15:00:25 -07:00
|
|
|
import { connect } from 'react-redux';
|
2020-03-27 13:59:38 -07:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
|
2020-04-17 15:00:25 -07:00
|
|
|
const mapStateToProps = state => ({
|
2020-04-18 11:58:51 -07:00
|
|
|
animate: state.getIn(['settings', 'autoPlayGif']),
|
2020-04-17 15:00:25 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
export default @connect(mapStateToProps)
|
|
|
|
class AvatarOverlay extends React.PureComponent {
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
friend: ImmutablePropTypes.map.isRequired,
|
|
|
|
animate: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { account, friend, animate } = this.props;
|
|
|
|
|
|
|
|
const baseStyle = {
|
|
|
|
backgroundImage: `url(${account.get(animate ? 'avatar' : 'avatar_static')})`,
|
|
|
|
};
|
|
|
|
|
|
|
|
const overlayStyle = {
|
|
|
|
backgroundImage: `url(${friend.get(animate ? 'avatar' : 'avatar_static')})`,
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='account__avatar-overlay'>
|
|
|
|
<div className='account__avatar-overlay-base' style={baseStyle} />
|
|
|
|
<div className='account__avatar-overlay-overlay' style={overlayStyle} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|