2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-09-18 16:18:46 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-23 22:34:12 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
import IconButton from '../../../components/icon_button';
|
2017-10-16 07:36:15 +00:00
|
|
|
import Motion from '../../ui/util/optional_motion';
|
2017-05-20 12:58:13 +00:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-10-31 02:27:48 +00:00
|
|
|
import { autoPlayGif, me } from '../../../initial_state';
|
2017-11-18 18:39:02 +00:00
|
|
|
import classNames from 'classnames';
|
2016-11-23 22:34:12 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-09-02 18:44:41 +00:00
|
|
|
requested: { id: 'account.requested', defaultMessage: 'Awaiting approval. Click to cancel follow request' },
|
2018-03-05 04:09:35 +00:00
|
|
|
unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
|
2016-11-23 22:34:12 +00:00
|
|
|
});
|
2016-09-18 16:18:46 +00:00
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
class Avatar extends ImmutablePureComponent {
|
2017-03-31 12:23:44 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
};
|
2017-04-23 02:26:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
state = {
|
2017-05-20 15:31:47 +00:00
|
|
|
isHovered: false,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2017-04-23 02:26:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleMouseOver = () => {
|
2017-03-31 12:23:44 +00:00
|
|
|
if (this.state.isHovered) return;
|
|
|
|
this.setState({ isHovered: true });
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-31 12:23:44 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleMouseOut = () => {
|
2017-03-31 12:23:44 +00:00
|
|
|
if (!this.state.isHovered) return;
|
|
|
|
this.setState({ isHovered: false });
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-31 12:23:44 +00:00
|
|
|
|
|
|
|
render () {
|
2017-10-27 15:04:44 +00:00
|
|
|
const { account } = this.props;
|
2017-03-31 12:23:44 +00:00
|
|
|
const { isHovered } = this.state;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Motion defaultStyle={{ radius: 90 }} style={{ radius: spring(isHovered ? 30 : 90, { stiffness: 180, damping: 12 }) }}>
|
2018-01-17 15:57:15 +00:00
|
|
|
{({ radius }) => (
|
2017-07-27 22:54:48 +00:00
|
|
|
<a
|
2017-04-15 11:27:27 +00:00
|
|
|
href={account.get('url')}
|
|
|
|
className='account__header__avatar'
|
2017-07-27 22:54:48 +00:00
|
|
|
role='presentation'
|
2017-04-15 11:27:27 +00:00
|
|
|
target='_blank'
|
|
|
|
rel='noopener'
|
2017-04-23 02:26:55 +00:00
|
|
|
style={{ borderRadius: `${radius}px`, backgroundImage: `url(${autoPlayGif || isHovered ? account.get('avatar') : account.get('avatar_static')})` }}
|
2017-04-15 11:27:27 +00:00
|
|
|
onMouseOver={this.handleMouseOver}
|
|
|
|
onMouseOut={this.handleMouseOut}
|
|
|
|
onFocus={this.handleMouseOver}
|
2017-04-17 23:57:50 +00:00
|
|
|
onBlur={this.handleMouseOut}
|
2017-07-27 22:54:48 +00:00
|
|
|
>
|
|
|
|
<span style={{ display: 'none' }}>{account.get('acct')}</span>
|
|
|
|
</a>
|
2018-01-17 15:57:15 +00:00
|
|
|
)}
|
2017-03-31 12:23:44 +00:00
|
|
|
</Motion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-31 12:23:44 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@injectIntl
|
|
|
|
export default class Header extends ImmutablePureComponent {
|
2016-09-18 16:18:46 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map,
|
|
|
|
onFollow: PropTypes.func.isRequired,
|
2018-03-05 04:09:35 +00:00
|
|
|
onBlock: PropTypes.func.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2016-09-18 16:18:46 +00:00
|
|
|
render () {
|
2017-10-31 02:27:48 +00:00
|
|
|
const { account, intl } = this.props;
|
2016-09-18 16:18:46 +00:00
|
|
|
|
2017-02-20 23:10:49 +00:00
|
|
|
if (!account) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-11-15 17:38:57 +00:00
|
|
|
let info = '';
|
2018-03-05 04:09:35 +00:00
|
|
|
let mutingInfo = '';
|
2016-11-23 22:34:12 +00:00
|
|
|
let actionBtn = '';
|
2016-12-22 23:04:52 +00:00
|
|
|
let lockedIcon = '';
|
2016-10-06 20:07:32 +00:00
|
|
|
|
2016-10-09 20:19:15 +00:00
|
|
|
if (me !== account.get('id') && account.getIn(['relationship', 'followed_by'])) {
|
2017-05-20 15:31:47 +00:00
|
|
|
info = <span className='account--follows-info'><FormattedMessage id='account.follows_you' defaultMessage='Follows you' /></span>;
|
2018-03-05 04:09:35 +00:00
|
|
|
} else if (me !== account.get('id') && account.getIn(['relationship', 'blocking'])) {
|
|
|
|
info = <span className='account--follows-info'><FormattedMessage id='account.blocked' defaultMessage='Blocked' /></span>;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (me !== account.get('id') && account.getIn(['relationship', 'muting'])) {
|
|
|
|
mutingInfo = <span className='account--muting-info'><FormattedMessage id='account.muted' defaultMessage='Muted' /></span>;
|
2018-03-05 15:45:36 +00:00
|
|
|
} else if (me !== account.get('id') && account.getIn(['relationship', 'domain_blocking'])) {
|
|
|
|
mutingInfo = <span className='account--muting-info'><FormattedMessage id='account.domain_blocked' defaultMessage='Domain hidden' /></span>;
|
2016-10-09 20:19:15 +00:00
|
|
|
}
|
|
|
|
|
2016-11-23 22:34:12 +00:00
|
|
|
if (me !== account.get('id')) {
|
2016-12-22 22:03:57 +00:00
|
|
|
if (account.getIn(['relationship', 'requested'])) {
|
|
|
|
actionBtn = (
|
2017-05-19 09:42:54 +00:00
|
|
|
<div className='account--action-button'>
|
2017-09-02 18:44:41 +00:00
|
|
|
<IconButton size={26} active icon='hourglass' title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />
|
2016-12-22 22:03:57 +00:00
|
|
|
</div>
|
|
|
|
);
|
2017-02-05 19:58:09 +00:00
|
|
|
} else if (!account.getIn(['relationship', 'blocking'])) {
|
2016-12-22 22:03:57 +00:00
|
|
|
actionBtn = (
|
2017-05-19 09:42:54 +00:00
|
|
|
<div className='account--action-button'>
|
2016-12-22 22:03:57 +00: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>
|
|
|
|
);
|
2018-03-05 04:09:35 +00:00
|
|
|
} else if (account.getIn(['relationship', 'blocking'])) {
|
|
|
|
actionBtn = (
|
|
|
|
<div className='account--action-button'>
|
|
|
|
<IconButton size={26} icon='unlock-alt' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} />
|
|
|
|
</div>
|
|
|
|
);
|
2016-12-22 22:03:57 +00:00
|
|
|
}
|
2016-11-23 22:34:12 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 17:42:15 +00:00
|
|
|
if (account.get('moved') && !account.getIn(['relationship', 'following'])) {
|
2017-11-18 18:39:02 +00:00
|
|
|
actionBtn = '';
|
|
|
|
}
|
|
|
|
|
2016-12-22 23:04:52 +00:00
|
|
|
if (account.get('locked')) {
|
|
|
|
lockedIcon = <i className='fa fa-lock' />;
|
|
|
|
}
|
|
|
|
|
2017-08-07 18:32:03 +00:00
|
|
|
const content = { __html: account.get('note_emojified') };
|
|
|
|
const displayNameHtml = { __html: account.get('display_name_html') };
|
2018-04-14 10:41:08 +00:00
|
|
|
const fields = account.get('fields');
|
2018-05-07 07:31:07 +00:00
|
|
|
const badge = account.get('bot') ? (<div className='roles'><div className='account-role bot'><FormattedMessage id='account.badges.bot' defaultMessage='Bot' /></div></div>) : null;
|
2016-11-07 00:14:12 +00:00
|
|
|
|
2016-09-18 16:18:46 +00:00
|
|
|
return (
|
2017-11-18 18:39:02 +00:00
|
|
|
<div className={classNames('account__header', { inactive: !!account.get('moved') })} style={{ backgroundImage: `url(${account.get('header')})` }}>
|
2017-05-19 09:42:54 +00:00
|
|
|
<div>
|
2017-10-27 15:04:44 +00:00
|
|
|
<Avatar account={account} />
|
2016-09-18 16:18:46 +00:00
|
|
|
|
2017-08-07 18:32:03 +00:00
|
|
|
<span className='account__header__display-name' dangerouslySetInnerHTML={displayNameHtml} />
|
2017-05-19 09:42:54 +00:00
|
|
|
<span className='account__header__username'>@{account.get('acct')} {lockedIcon}</span>
|
2018-05-07 07:31:07 +00:00
|
|
|
|
|
|
|
{badge}
|
|
|
|
|
2017-05-19 09:42:54 +00:00
|
|
|
<div className='account__header__content' dangerouslySetInnerHTML={content} />
|
2016-10-09 20:19:15 +00:00
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
{fields.size > 0 && (
|
2018-05-04 22:55:09 +00:00
|
|
|
<div className='account__header__fields'>
|
|
|
|
{fields.map((pair, i) => (
|
|
|
|
<dl key={i}>
|
|
|
|
<dt dangerouslySetInnerHTML={{ __html: pair.get('name_emojified') }} title={pair.get('name')} />
|
2018-05-07 07:30:38 +00:00
|
|
|
<dd dangerouslySetInnerHTML={{ __html: pair.get('value_emojified') }} title={pair.get('value_plain')} />
|
2018-05-04 22:55:09 +00:00
|
|
|
</dl>
|
|
|
|
))}
|
|
|
|
</div>
|
2018-04-14 10:41:08 +00:00
|
|
|
)}
|
|
|
|
|
2016-10-09 20:19:15 +00:00
|
|
|
{info}
|
2018-03-05 04:09:35 +00:00
|
|
|
{mutingInfo}
|
2016-11-23 22:34:12 +00:00
|
|
|
{actionBtn}
|
2016-09-18 16:18:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|