2017-07-12 10:02:51 +02:00
|
|
|
// Package imports //
|
2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2016-09-18 18:18:46 +02:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2017-02-26 01:34:56 +01:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2016-11-23 23:34:12 +01:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2017-05-03 02:04:16 +02:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-07-12 10:02:51 +02:00
|
|
|
|
|
|
|
// Mastodon imports //
|
|
|
|
import emojify from '../../../mastodon/emoji';
|
|
|
|
import IconButton from '../../../mastodon/components/icon_button';
|
|
|
|
import Avatar from '../../../mastodon/components/avatar';
|
|
|
|
|
|
|
|
// Our imports //
|
|
|
|
import { processBio } from '../../util/bio_metadata';
|
2016-11-23 23:34:12 +01:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-05-20 17:31:47 +02:00
|
|
|
requested: { id: 'account.requested', defaultMessage: 'Awaiting approval' },
|
2016-11-23 23:34:12 +01:00
|
|
|
});
|
2016-09-18 18:18:46 +02:00
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
@injectIntl
|
|
|
|
export default class Header extends ImmutablePureComponent {
|
2016-09-18 18:18:46 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map,
|
|
|
|
me: PropTypes.number.isRequired,
|
|
|
|
onFollow: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2016-09-18 18:18:46 +02:00
|
|
|
render () {
|
2016-11-23 23:34:12 +01:00
|
|
|
const { account, me, intl } = this.props;
|
2016-09-18 18:18:46 +02:00
|
|
|
|
2017-02-21 00:10:49 +01:00
|
|
|
if (!account) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-10-06 22:07:32 +02:00
|
|
|
let displayName = account.get('display_name');
|
2016-11-15 18:38:57 +01:00
|
|
|
let info = '';
|
2016-11-23 23:34:12 +01:00
|
|
|
let actionBtn = '';
|
2016-12-23 00:04:52 +01:00
|
|
|
let lockedIcon = '';
|
2016-10-06 22:07:32 +02:00
|
|
|
|
|
|
|
if (displayName.length === 0) {
|
|
|
|
displayName = account.get('username');
|
|
|
|
}
|
|
|
|
|
2016-10-09 22:19:15 +02:00
|
|
|
if (me !== account.get('id') && account.getIn(['relationship', 'followed_by'])) {
|
2017-05-20 17:31:47 +02:00
|
|
|
info = <span className='account--follows-info'><FormattedMessage id='account.follows_you' defaultMessage='Follows you' /></span>;
|
2016-10-09 22:19:15 +02:00
|
|
|
}
|
|
|
|
|
2016-11-23 23:34:12 +01:00
|
|
|
if (me !== account.get('id')) {
|
2016-12-22 23:03:57 +01:00
|
|
|
if (account.getIn(['relationship', 'requested'])) {
|
|
|
|
actionBtn = (
|
2017-05-19 11:42:54 +02:00
|
|
|
<div className='account--action-button'>
|
2017-06-06 13:20:07 +02:00
|
|
|
<IconButton size={26} disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />
|
2016-12-22 23:03:57 +01:00
|
|
|
</div>
|
|
|
|
);
|
2017-02-05 20:58:09 +01:00
|
|
|
} else if (!account.getIn(['relationship', 'blocking'])) {
|
2016-12-22 23:03:57 +01:00
|
|
|
actionBtn = (
|
2017-05-19 11:42:54 +02:00
|
|
|
<div className='account--action-button'>
|
2016-12-22 23:03:57 +01: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 23:34:12 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:04:52 +01:00
|
|
|
if (account.get('locked')) {
|
|
|
|
lockedIcon = <i className='fa fa-lock' />;
|
|
|
|
}
|
|
|
|
|
2017-06-21 04:44:43 +02:00
|
|
|
const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
|
|
|
|
const { text, metadata } = processBio(account.get('note'));
|
2016-11-07 01:14:12 +01:00
|
|
|
|
2016-09-18 18:18:46 +02:00
|
|
|
return (
|
2017-06-21 04:44:43 +02:00
|
|
|
<div className='account__header__wrapper'>
|
|
|
|
<div className='account__header' style={{ backgroundImage: `url(${account.get('header')})` }}>
|
|
|
|
<div>
|
2017-06-19 00:09:03 +02:00
|
|
|
<a href={account.get('url')} target='_blank' rel='noopener'>
|
2017-07-09 09:34:25 +02:00
|
|
|
<span className='account__header__avatar'><Avatar src={account.get('avatar')} staticSrc={account.get('avatar_static')} size={90} /></span>
|
2017-06-19 00:09:03 +02:00
|
|
|
<span className='account__header__display-name' dangerouslySetInnerHTML={displayNameHTML} />
|
|
|
|
</a>
|
2017-06-21 04:44:43 +02:00
|
|
|
<span className='account__header__username'>@{account.get('acct')} {lockedIcon}</span>
|
2017-06-24 03:43:30 +02:00
|
|
|
<div className='account__header__content' dangerouslySetInnerHTML={{ __html: emojify(text) }} />
|
2016-10-09 22:19:15 +02:00
|
|
|
|
2017-06-21 04:44:43 +02:00
|
|
|
{info}
|
|
|
|
{actionBtn}
|
|
|
|
</div>
|
2016-09-18 18:18:46 +02:00
|
|
|
</div>
|
2017-06-21 04:44:43 +02:00
|
|
|
|
|
|
|
{metadata.length && (
|
2017-06-27 14:48:26 +02:00
|
|
|
<table className='account__metadata'>
|
2017-06-21 04:44:43 +02:00
|
|
|
{(() => {
|
|
|
|
let data = [];
|
|
|
|
for (let i = 0; i < metadata.length; i++) {
|
|
|
|
data.push(
|
2017-06-27 14:48:26 +02:00
|
|
|
<tr key={i}>
|
|
|
|
<th scope='row'><div dangerouslySetInnerHTML={{ __html: emojify(metadata[i][0]) }} /></th>
|
|
|
|
<td><div dangerouslySetInnerHTML={{ __html: emojify(metadata[i][1]) }} /></td>
|
|
|
|
</tr>
|
2017-06-21 04:44:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
})()}
|
2017-06-27 14:48:26 +02:00
|
|
|
</table>
|
2017-06-21 04:44:43 +02:00
|
|
|
) || null}
|
2016-09-18 18:18:46 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|