407 lines
20 KiB
JavaScript
407 lines
20 KiB
JavaScript
import React from 'react';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import PropTypes from 'prop-types';
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import { autoPlayGif, me, domain } from 'flavours/glitch/initial_state';
|
|
import { preferencesLink, profileLink, accountAdminLink } from 'flavours/glitch/utils/backend_links';
|
|
import classNames from 'classnames';
|
|
import Icon from 'flavours/glitch/components/icon';
|
|
import IconButton from 'flavours/glitch/components/icon_button';
|
|
import Avatar from 'flavours/glitch/components/avatar';
|
|
import Button from 'flavours/glitch/components/button';
|
|
import { NavLink } from 'react-router-dom';
|
|
import DropdownMenuContainer from 'flavours/glitch/containers/dropdown_menu_container';
|
|
import AccountNoteContainer from '../containers/account_note_container';
|
|
import FollowRequestNoteContainer from '../containers/follow_request_note_container';
|
|
import { PERMISSION_MANAGE_USERS, PERMISSION_MANAGE_FEDERATION } from 'flavours/glitch/permissions';
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
const messages = defineMessages({
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
|
cancel_follow_request: { id: 'account.cancel_follow_request', defaultMessage: 'Withdraw follow request' },
|
|
requested: { id: 'account.requested', defaultMessage: 'Awaiting approval. Click to cancel follow request' },
|
|
unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
|
|
edit_profile: { id: 'account.edit_profile', defaultMessage: 'Edit profile' },
|
|
linkVerifiedOn: { id: 'account.link_verified_on', defaultMessage: 'Ownership of this link was checked on {date}' },
|
|
account_locked: { id: 'account.locked_info', defaultMessage: 'This account privacy status is set to locked. The owner manually reviews who can follow them.' },
|
|
mention: { id: 'account.mention', defaultMessage: 'Mention @{name}' },
|
|
direct: { id: 'account.direct', defaultMessage: 'Direct message @{name}' },
|
|
unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
|
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
|
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
|
|
report: { id: 'account.report', defaultMessage: 'Report @{name}' },
|
|
share: { id: 'account.share', defaultMessage: 'Share @{name}\'s profile' },
|
|
media: { id: 'account.media', defaultMessage: 'Media' },
|
|
blockDomain: { id: 'account.block_domain', defaultMessage: 'Block domain {domain}' },
|
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unblock domain {domain}' },
|
|
hideReblogs: { id: 'account.hide_reblogs', defaultMessage: 'Hide boosts from @{name}' },
|
|
showReblogs: { id: 'account.show_reblogs', defaultMessage: 'Show boosts from @{name}' },
|
|
enableNotifications: { id: 'account.enable_notifications', defaultMessage: 'Notify me when @{name} posts' },
|
|
disableNotifications: { id: 'account.disable_notifications', defaultMessage: 'Stop notifying me when @{name} posts' },
|
|
pins: { id: 'navigation_bar.pins', defaultMessage: 'Pinned posts' },
|
|
preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
|
|
follow_requests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' },
|
|
favourites: { id: 'navigation_bar.favourites', defaultMessage: 'Favourites' },
|
|
lists: { id: 'navigation_bar.lists', defaultMessage: 'Lists' },
|
|
followed_tags: { id: 'navigation_bar.followed_tags', defaultMessage: 'Followed hashtags' },
|
|
blocks: { id: 'navigation_bar.blocks', defaultMessage: 'Blocked users' },
|
|
domain_blocks: { id: 'navigation_bar.domain_blocks', defaultMessage: 'Blocked domains' },
|
|
mutes: { id: 'navigation_bar.mutes', defaultMessage: 'Muted users' },
|
|
endorse: { id: 'account.endorse', defaultMessage: 'Feature on profile' },
|
|
unendorse: { id: 'account.unendorse', defaultMessage: 'Don\'t feature on profile' },
|
|
add_or_remove_from_list: { id: 'account.add_or_remove_from_list', defaultMessage: 'Add or Remove from lists' },
|
|
admin_account: { id: 'status.admin_account', defaultMessage: 'Open moderation interface for @{name}' },
|
|
admin_domain: { id: 'status.admin_domain', defaultMessage: 'Open moderation interface for {domain}' },
|
|
add_account_note: { id: 'account.add_account_note', defaultMessage: 'Add note for @{name}' },
|
|
languages: { id: 'account.languages', defaultMessage: 'Change subscribed languages' },
|
|
openOriginalPage: { id: 'account.open_original_page', defaultMessage: 'Open original page' },
|
|
});
|
|
|
|
const titleFromAccount = account => {
|
|
const displayName = account.get('display_name');
|
|
const acct = account.get('acct') === account.get('username') ? `${account.get('username')}@${domain}` : account.get('acct');
|
|
const prefix = displayName.trim().length === 0 ? account.get('username') : displayName;
|
|
|
|
return `${prefix} (@${acct})`;
|
|
};
|
|
|
|
const dateFormatOptions = {
|
|
month: 'short',
|
|
day: 'numeric',
|
|
year: 'numeric',
|
|
hour12: false,
|
|
hour: '2-digit',
|
|
minute: '2-digit',
|
|
};
|
|
|
|
class Header extends ImmutablePureComponent {
|
|
|
|
static contextTypes = {
|
|
identity: PropTypes.object,
|
|
};
|
|
|
|
static propTypes = {
|
|
account: ImmutablePropTypes.map,
|
|
identity_props: ImmutablePropTypes.list,
|
|
onFollow: PropTypes.func.isRequired,
|
|
onBlock: PropTypes.func.isRequired,
|
|
onMention: PropTypes.func.isRequired,
|
|
onDirect: PropTypes.func.isRequired,
|
|
onReblogToggle: PropTypes.func.isRequired,
|
|
onNotifyToggle: PropTypes.func.isRequired,
|
|
onReport: PropTypes.func.isRequired,
|
|
onMute: PropTypes.func.isRequired,
|
|
onBlockDomain: PropTypes.func.isRequired,
|
|
onUnblockDomain: PropTypes.func.isRequired,
|
|
onEndorseToggle: PropTypes.func.isRequired,
|
|
onAddToList: PropTypes.func.isRequired,
|
|
onEditAccountNote: PropTypes.func.isRequired,
|
|
onChangeLanguages: PropTypes.func.isRequired,
|
|
onInteractionModal: PropTypes.func.isRequired,
|
|
onOpenAvatar: PropTypes.func.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
domain: PropTypes.string.isRequired,
|
|
hidden: PropTypes.bool,
|
|
};
|
|
|
|
openEditProfile = () => {
|
|
window.open(profileLink, '_blank');
|
|
};
|
|
|
|
handleMouseEnter = ({ currentTarget }) => {
|
|
if (autoPlayGif) {
|
|
return;
|
|
}
|
|
|
|
const emojis = currentTarget.querySelectorAll('.custom-emoji');
|
|
|
|
for (var i = 0; i < emojis.length; i++) {
|
|
let emoji = emojis[i];
|
|
emoji.src = emoji.getAttribute('data-original');
|
|
}
|
|
};
|
|
|
|
handleMouseLeave = ({ currentTarget }) => {
|
|
if (autoPlayGif) {
|
|
return;
|
|
}
|
|
|
|
const emojis = currentTarget.querySelectorAll('.custom-emoji');
|
|
|
|
for (var i = 0; i < emojis.length; i++) {
|
|
let emoji = emojis[i];
|
|
emoji.src = emoji.getAttribute('data-static');
|
|
}
|
|
};
|
|
|
|
handleAvatarClick = e => {
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
|
e.preventDefault();
|
|
this.props.onOpenAvatar();
|
|
}
|
|
};
|
|
|
|
handleShare = () => {
|
|
const { account } = this.props;
|
|
|
|
navigator.share({
|
|
text: `${titleFromAccount(account)}\n${account.get('note_plain')}`,
|
|
url: account.get('url'),
|
|
}).catch((e) => {
|
|
if (e.name !== 'AbortError') console.error(e);
|
|
});
|
|
};
|
|
|
|
render () {
|
|
const { account, hidden, intl, domain } = this.props;
|
|
const { signedIn, permissions } = this.context.identity;
|
|
|
|
if (!account) {
|
|
return null;
|
|
}
|
|
|
|
const accountNote = account.getIn(['relationship', 'note']);
|
|
|
|
const suspended = account.get('suspended');
|
|
const isRemote = account.get('acct') !== account.get('username');
|
|
const remoteDomain = isRemote ? account.get('acct').split('@')[1] : null;
|
|
|
|
let info = [];
|
|
let actionBtn = '';
|
|
let bellBtn = '';
|
|
let lockedIcon = '';
|
|
let menu = [];
|
|
|
|
if (me !== account.get('id') && account.getIn(['relationship', 'followed_by'])) {
|
|
info.push(<span className='relationship-tag'><FormattedMessage id='account.follows_you' defaultMessage='Follows you' /></span>);
|
|
} else if (me !== account.get('id') && account.getIn(['relationship', 'blocking'])) {
|
|
info.push(<span className='relationship-tag'><FormattedMessage id='account.blocked' defaultMessage='Blocked' /></span>);
|
|
}
|
|
|
|
if (me !== account.get('id') && account.getIn(['relationship', 'muting'])) {
|
|
info.push(<span className='relationship-tag'><FormattedMessage id='account.muted' defaultMessage='Muted' /></span>);
|
|
} else if (me !== account.get('id') && account.getIn(['relationship', 'domain_blocking'])) {
|
|
info.push(<span className='relationship-tag'><FormattedMessage id='account.domain_blocked' defaultMessage='Domain blocked' /></span>);
|
|
}
|
|
|
|
if (account.getIn(['relationship', 'requested']) || account.getIn(['relationship', 'following'])) {
|
|
bellBtn = <IconButton icon={account.getIn(['relationship', 'notifying']) ? 'bell' : 'bell-o'} size={24} active={account.getIn(['relationship', 'notifying'])} title={intl.formatMessage(account.getIn(['relationship', 'notifying']) ? messages.disableNotifications : messages.enableNotifications, { name: account.get('username') })} onClick={this.props.onNotifyToggle} />;
|
|
}
|
|
|
|
if (me !== account.get('id')) {
|
|
if (signedIn && !account.get('relationship')) { // Wait until the relationship is loaded
|
|
actionBtn = '';
|
|
} else if (account.getIn(['relationship', 'requested'])) {
|
|
actionBtn = <Button className={classNames('logo-button', { 'button--with-bell': bellBtn !== '' })} text={intl.formatMessage(messages.cancel_follow_request)} title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />;
|
|
} else if (!account.getIn(['relationship', 'blocking'])) {
|
|
actionBtn = <Button className={classNames('logo-button', { 'button--destructive': account.getIn(['relationship', 'following']), 'button--with-bell': bellBtn !== '' })} text={intl.formatMessage(account.getIn(['relationship', 'following']) ? messages.unfollow : messages.follow)} onClick={signedIn ? this.props.onFollow : this.props.onInteractionModal} />;
|
|
} else if (account.getIn(['relationship', 'blocking'])) {
|
|
actionBtn = <Button className='logo-button' text={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} />;
|
|
}
|
|
} else if (profileLink) {
|
|
actionBtn = <Button className='logo-button' text={intl.formatMessage(messages.edit_profile)} onClick={this.openEditProfile} />;
|
|
}
|
|
|
|
if (account.get('moved') && !account.getIn(['relationship', 'following'])) {
|
|
actionBtn = '';
|
|
}
|
|
|
|
if (suspended && !account.getIn(['relationship', 'following'])) {
|
|
actionBtn = '';
|
|
}
|
|
|
|
if (account.get('locked')) {
|
|
lockedIcon = <Icon id='lock' title={intl.formatMessage(messages.account_locked)} />;
|
|
}
|
|
|
|
if (signedIn && account.get('id') !== me && !suspended) {
|
|
menu.push({ text: intl.formatMessage(messages.mention, { name: account.get('username') }), action: this.props.onMention });
|
|
menu.push({ text: intl.formatMessage(messages.direct, { name: account.get('username') }), action: this.props.onDirect });
|
|
menu.push(null);
|
|
}
|
|
|
|
if (isRemote) {
|
|
menu.push({ text: intl.formatMessage(messages.openOriginalPage), href: account.get('url') });
|
|
menu.push(null);
|
|
}
|
|
|
|
if ('share' in navigator && !suspended) {
|
|
menu.push({ text: intl.formatMessage(messages.share, { name: account.get('username') }), action: this.handleShare });
|
|
menu.push(null);
|
|
}
|
|
|
|
if (accountNote === null || accountNote === '') {
|
|
menu.push({ text: intl.formatMessage(messages.add_account_note, { name: account.get('username') }), action: this.props.onEditAccountNote });
|
|
}
|
|
|
|
if (account.get('id') === me) {
|
|
if (profileLink) menu.push({ text: intl.formatMessage(messages.edit_profile), href: profileLink });
|
|
if (preferencesLink) menu.push({ text: intl.formatMessage(messages.preferences), href: preferencesLink });
|
|
menu.push({ text: intl.formatMessage(messages.pins), to: '/pinned' });
|
|
menu.push(null);
|
|
menu.push({ text: intl.formatMessage(messages.follow_requests), to: '/follow_requests' });
|
|
menu.push({ text: intl.formatMessage(messages.favourites), to: '/favourites' });
|
|
menu.push({ text: intl.formatMessage(messages.lists), to: '/lists' });
|
|
menu.push({ text: intl.formatMessage(messages.followed_tags), to: '/followed_tags' });
|
|
menu.push(null);
|
|
menu.push({ text: intl.formatMessage(messages.mutes), to: '/mutes' });
|
|
menu.push({ text: intl.formatMessage(messages.blocks), to: '/blocks' });
|
|
menu.push({ text: intl.formatMessage(messages.domain_blocks), to: '/domain_blocks' });
|
|
} else if (signedIn) {
|
|
if (account.getIn(['relationship', 'following'])) {
|
|
if (!account.getIn(['relationship', 'muting'])) {
|
|
if (account.getIn(['relationship', 'showing_reblogs'])) {
|
|
menu.push({ text: intl.formatMessage(messages.hideReblogs, { name: account.get('username') }), action: this.props.onReblogToggle });
|
|
} else {
|
|
menu.push({ text: intl.formatMessage(messages.showReblogs, { name: account.get('username') }), action: this.props.onReblogToggle });
|
|
}
|
|
|
|
menu.push({ text: intl.formatMessage(messages.languages), action: this.props.onChangeLanguages });
|
|
menu.push(null);
|
|
}
|
|
|
|
menu.push({ text: intl.formatMessage(account.getIn(['relationship', 'endorsed']) ? messages.unendorse : messages.endorse), action: this.props.onEndorseToggle });
|
|
menu.push({ text: intl.formatMessage(messages.add_or_remove_from_list), action: this.props.onAddToList });
|
|
menu.push(null);
|
|
}
|
|
|
|
if (account.getIn(['relationship', 'muting'])) {
|
|
menu.push({ text: intl.formatMessage(messages.unmute, { name: account.get('username') }), action: this.props.onMute });
|
|
} else {
|
|
menu.push({ text: intl.formatMessage(messages.mute, { name: account.get('username') }), action: this.props.onMute });
|
|
}
|
|
|
|
if (account.getIn(['relationship', 'blocking'])) {
|
|
menu.push({ text: intl.formatMessage(messages.unblock, { name: account.get('username') }), action: this.props.onBlock });
|
|
} else {
|
|
menu.push({ text: intl.formatMessage(messages.block, { name: account.get('username') }), action: this.props.onBlock });
|
|
}
|
|
|
|
menu.push({ text: intl.formatMessage(messages.report, { name: account.get('username') }), action: this.props.onReport });
|
|
}
|
|
|
|
if (signedIn && isRemote) {
|
|
menu.push(null);
|
|
|
|
if (account.getIn(['relationship', 'domain_blocking'])) {
|
|
menu.push({ text: intl.formatMessage(messages.unblockDomain, { domain: remoteDomain }), action: this.props.onUnblockDomain });
|
|
} else {
|
|
menu.push({ text: intl.formatMessage(messages.blockDomain, { domain: remoteDomain }), action: this.props.onBlockDomain });
|
|
}
|
|
}
|
|
|
|
if (account.get('id') !== me && ((permissions & PERMISSION_MANAGE_USERS) === PERMISSION_MANAGE_USERS && accountAdminLink) || (isRemote && (permissions & PERMISSION_MANAGE_FEDERATION) === PERMISSION_MANAGE_FEDERATION)) {
|
|
menu.push(null);
|
|
if ((permissions & PERMISSION_MANAGE_USERS) === PERMISSION_MANAGE_USERS && accountAdminLink) {
|
|
menu.push({ text: intl.formatMessage(messages.admin_account, { name: account.get('username') }), href: accountAdminLink(account.get('id')) });
|
|
}
|
|
if (isRemote && (permissions & PERMISSION_MANAGE_FEDERATION) === PERMISSION_MANAGE_FEDERATION) {
|
|
menu.push({ text: intl.formatMessage(messages.admin_domain, { domain: remoteDomain }), href: `/admin/instances/${remoteDomain}` });
|
|
}
|
|
}
|
|
|
|
const content = { __html: account.get('note_emojified') };
|
|
const displayNameHtml = { __html: account.get('display_name_html') };
|
|
const fields = account.get('fields');
|
|
const isLocal = account.get('acct').indexOf('@') === -1;
|
|
const acct = isLocal && domain ? `${account.get('acct')}@${domain}` : account.get('acct');
|
|
const isIndexable = !account.get('noindex');
|
|
|
|
let badge;
|
|
|
|
if (account.get('bot')) {
|
|
badge = (<div className='account-role bot'><FormattedMessage id='account.badges.bot' defaultMessage='Bot' /></div>);
|
|
} else if (account.get('group')) {
|
|
badge = (<div className='account-role group'><FormattedMessage id='account.badges.group' defaultMessage='Group' /></div>);
|
|
} else {
|
|
badge = null;
|
|
}
|
|
|
|
let role = null;
|
|
if (account.getIn(['roles', 0])) {
|
|
role = (<div key='role' className={`account-role user-role-${account.getIn(['roles', 0, 'id'])}`}>{account.getIn(['roles', 0, 'name'])}</div>);
|
|
}
|
|
|
|
return (
|
|
<div className={classNames('account__header', { inactive: !!account.get('moved') })} onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave}>
|
|
{!(suspended || hidden || account.get('moved')) && account.getIn(['relationship', 'requested_by']) && <FollowRequestNoteContainer account={account} />}
|
|
|
|
<div className='account__header__image'>
|
|
<div className='account__header__info'>
|
|
{info}
|
|
</div>
|
|
|
|
{!(suspended || hidden) && <img src={autoPlayGif ? account.get('header') : account.get('header_static')} alt='' className='parallax' />}
|
|
</div>
|
|
|
|
<div className='account__header__bar'>
|
|
<div className='account__header__tabs'>
|
|
<a className='avatar' href={account.get('avatar')} rel='noopener noreferrer' target='_blank' onClick={this.handleAvatarClick}>
|
|
<Avatar account={suspended || hidden ? undefined : account} size={90} />
|
|
{role}
|
|
</a>
|
|
|
|
{!suspended && (
|
|
<div className='account__header__tabs__buttons'>
|
|
{!hidden && (
|
|
<React.Fragment>
|
|
{actionBtn}
|
|
{bellBtn}
|
|
</React.Fragment>
|
|
)}
|
|
|
|
<DropdownMenuContainer disabled={menu.length === 0} items={menu} icon='ellipsis-v' size={24} direction='right' />
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<div className='account__header__tabs__name'>
|
|
<h1>
|
|
<span dangerouslySetInnerHTML={displayNameHtml} /> {badge}
|
|
<small>
|
|
<span>@{acct}</span> {lockedIcon}
|
|
</small>
|
|
</h1>
|
|
</div>
|
|
|
|
{signedIn && <AccountNoteContainer account={account} />}
|
|
|
|
{!(suspended || hidden) && (
|
|
<div className='account__header__extra'>
|
|
<div className='account__header__bio'>
|
|
{ fields.size > 0 && (
|
|
<div className='account__header__fields'>
|
|
{fields.map((pair, i) => (
|
|
<dl key={i}>
|
|
<dt dangerouslySetInnerHTML={{ __html: pair.get('name_emojified') }} title={pair.get('name')} />
|
|
|
|
<dd className={pair.get('verified_at') && 'verified'} title={pair.get('value_plain')}>
|
|
{pair.get('verified_at') && <span title={intl.formatMessage(messages.linkVerifiedOn, { date: intl.formatDate(pair.get('verified_at'), dateFormatOptions) })}><Icon id='check' className='verified__mark' /></span>} <span dangerouslySetInnerHTML={{ __html: pair.get('value_emojified') }} className='translate' />
|
|
</dd>
|
|
</dl>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{account.get('note').length > 0 && account.get('note') !== '<p></p>' && <div className='account__header__content translate' dangerouslySetInnerHTML={content} />}
|
|
|
|
<div className='account__header__joined'><FormattedMessage id='account.joined' defaultMessage='Joined {date}' values={{ date: intl.formatDate(account.get('created_at'), { year: 'numeric', month: 'short', day: '2-digit' }) }} /></div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<Helmet>
|
|
<title>{titleFromAccount(account)}</title>
|
|
<meta name='robots' content={(isLocal && isIndexable) ? 'all' : 'noindex'} />
|
|
</Helmet>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default injectIntl(Header);
|