2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-09-18 12:18:46 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-23 17:34:12 -05:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
import IconButton from '../../../components/icon_button';
|
2017-05-20 08:58:13 -04:00
|
|
|
import Motion from 'react-motion/lib/Motion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-04-17 06:14:03 -04:00
|
|
|
import { connect } from 'react-redux';
|
2017-05-02 20:04:16 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2016-11-23 17:34:12 -05:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-05-20 11:31:47 -04:00
|
|
|
requested: { id: 'account.requested', defaultMessage: 'Awaiting approval' },
|
2016-11-23 17:34:12 -05:00
|
|
|
});
|
2016-09-18 12:18:46 -04:00
|
|
|
|
2017-04-17 06:14:03 -04:00
|
|
|
const makeMapStateToProps = () => {
|
2017-06-23 10:05:04 -04:00
|
|
|
const mapStateToProps = state => ({
|
2017-05-20 11:31:47 -04:00
|
|
|
autoPlayGif: state.getIn(['meta', 'auto_play_gif']),
|
2017-04-17 06:14:03 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
class Avatar extends ImmutablePureComponent {
|
2017-03-31 08:23:44 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
autoPlayGif: PropTypes.bool.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
state = {
|
2017-05-20 11:31:47 -04:00
|
|
|
isHovered: false,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleMouseOver = () => {
|
2017-03-31 08:23:44 -04:00
|
|
|
if (this.state.isHovered) return;
|
|
|
|
this.setState({ isHovered: true });
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-03-31 08:23:44 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleMouseOut = () => {
|
2017-03-31 08:23:44 -04:00
|
|
|
if (!this.state.isHovered) return;
|
|
|
|
this.setState({ isHovered: false });
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-03-31 08:23:44 -04:00
|
|
|
|
|
|
|
render () {
|
2017-04-17 06:14:03 -04:00
|
|
|
const { account, autoPlayGif } = this.props;
|
2017-03-31 08:23:44 -04:00
|
|
|
const { isHovered } = this.state;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Motion defaultStyle={{ radius: 90 }} style={{ radius: spring(isHovered ? 30 : 90, { stiffness: 180, damping: 12 }) }}>
|
|
|
|
{({ radius }) =>
|
2017-07-27 18:54:48 -04:00
|
|
|
<a
|
2017-04-15 07:27:27 -04:00
|
|
|
href={account.get('url')}
|
|
|
|
className='account__header__avatar'
|
2017-07-27 18:54:48 -04:00
|
|
|
role='presentation'
|
2017-04-15 07:27:27 -04:00
|
|
|
target='_blank'
|
|
|
|
rel='noopener'
|
2017-04-22 22:26:55 -04:00
|
|
|
style={{ borderRadius: `${radius}px`, backgroundImage: `url(${autoPlayGif || isHovered ? account.get('avatar') : account.get('avatar_static')})` }}
|
2017-04-15 07:27:27 -04:00
|
|
|
onMouseOver={this.handleMouseOver}
|
|
|
|
onMouseOut={this.handleMouseOut}
|
|
|
|
onFocus={this.handleMouseOver}
|
2017-04-17 19:57:50 -04:00
|
|
|
onBlur={this.handleMouseOut}
|
2017-07-27 18:54:48 -04:00
|
|
|
>
|
|
|
|
<span style={{ display: 'none' }}>{account.get('acct')}</span>
|
|
|
|
</a>
|
2017-03-31 08:23:44 -04:00
|
|
|
}
|
|
|
|
</Motion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-03-31 08:23:44 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@connect(makeMapStateToProps)
|
|
|
|
@injectIntl
|
|
|
|
export default class Header extends ImmutablePureComponent {
|
2016-09-18 12:18:46 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map,
|
|
|
|
me: PropTypes.number.isRequired,
|
|
|
|
onFollow: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
autoPlayGif: PropTypes.bool.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2016-09-18 12:18:46 -04:00
|
|
|
render () {
|
2016-11-23 17:34:12 -05:00
|
|
|
const { account, me, intl } = this.props;
|
2016-09-18 12:18:46 -04:00
|
|
|
|
2017-02-20 18:10:49 -05:00
|
|
|
if (!account) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-11-15 12:38:57 -05:00
|
|
|
let info = '';
|
2016-11-23 17:34:12 -05:00
|
|
|
let actionBtn = '';
|
2016-12-22 18:04:52 -05:00
|
|
|
let lockedIcon = '';
|
2016-10-06 16:07:32 -04:00
|
|
|
|
2016-10-09 16:19:15 -04:00
|
|
|
if (me !== account.get('id') && account.getIn(['relationship', 'followed_by'])) {
|
2017-05-20 11:31:47 -04:00
|
|
|
info = <span className='account--follows-info'><FormattedMessage id='account.follows_you' defaultMessage='Follows you' /></span>;
|
2016-10-09 16:19:15 -04:00
|
|
|
}
|
|
|
|
|
2016-11-23 17:34:12 -05:00
|
|
|
if (me !== account.get('id')) {
|
2016-12-22 17:03:57 -05:00
|
|
|
if (account.getIn(['relationship', 'requested'])) {
|
|
|
|
actionBtn = (
|
2017-05-19 05:42:54 -04:00
|
|
|
<div className='account--action-button'>
|
2017-06-06 07:20:07 -04:00
|
|
|
<IconButton size={26} disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />
|
2016-12-22 17:03:57 -05:00
|
|
|
</div>
|
|
|
|
);
|
2017-02-05 14:58:09 -05:00
|
|
|
} else if (!account.getIn(['relationship', 'blocking'])) {
|
2016-12-22 17:03:57 -05:00
|
|
|
actionBtn = (
|
2017-05-19 05:42:54 -04:00
|
|
|
<div className='account--action-button'>
|
2016-12-22 17:03:57 -05:00
|
|
|
<IconButton size={26} icon={account.getIn(['relationship', 'following']) ? 'user-times' : 'user-plus'} active={account.getIn(['relationship', 'following'])} title={intl.formatMessage(account.getIn(['relationship', 'following']) ? messages.unfollow : messages.follow)} onClick={this.props.onFollow} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-11-23 17:34:12 -05:00
|
|
|
}
|
|
|
|
|
2016-12-22 18:04:52 -05:00
|
|
|
if (account.get('locked')) {
|
|
|
|
lockedIcon = <i className='fa fa-lock' />;
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:32:03 -04:00
|
|
|
const content = { __html: account.get('note_emojified') };
|
|
|
|
const displayNameHtml = { __html: account.get('display_name_html') };
|
2016-11-06 19:14:12 -05:00
|
|
|
|
2016-09-18 12:18:46 -04:00
|
|
|
return (
|
2017-02-08 19:20:09 -05:00
|
|
|
<div className='account__header' style={{ backgroundImage: `url(${account.get('header')})` }}>
|
2017-05-19 05:42:54 -04:00
|
|
|
<div>
|
2017-04-17 06:14:03 -04:00
|
|
|
<Avatar account={account} autoPlayGif={this.props.autoPlayGif} />
|
2016-09-18 12:18:46 -04:00
|
|
|
|
2017-08-07 14:32:03 -04:00
|
|
|
<span className='account__header__display-name' dangerouslySetInnerHTML={displayNameHtml} />
|
2017-05-19 05:42:54 -04:00
|
|
|
<span className='account__header__username'>@{account.get('acct')} {lockedIcon}</span>
|
|
|
|
<div className='account__header__content' dangerouslySetInnerHTML={content} />
|
2016-10-09 16:19:15 -04:00
|
|
|
|
|
|
|
{info}
|
2016-11-23 17:34:12 -05:00
|
|
|
{actionBtn}
|
2016-09-18 12:18:46 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|