2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-09-23 14:23:26 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-07-27 16:31:59 -04:00
|
|
|
import DropdownMenuContainer from '../../../containers/dropdown_menu_container';
|
2017-06-20 14:40:03 -04:00
|
|
|
import Link from 'react-router-dom/Link';
|
2016-11-18 09:36:16 -05:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage, FormattedNumber } from 'react-intl';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-02-28 18:53:11 -05:00
|
|
|
mention: { id: 'account.mention', defaultMessage: 'Mention @{name}' },
|
2016-11-18 09:36:16 -05:00
|
|
|
edit_profile: { id: 'account.edit_profile', defaultMessage: 'Edit profile' },
|
2017-02-28 18:53:11 -05:00
|
|
|
unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
|
2016-11-18 09:36:16 -05:00
|
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
2017-03-02 12:49:32 -05:00
|
|
|
unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
|
2017-02-28 18:53:11 -05:00
|
|
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
2017-03-02 12:49:32 -05:00
|
|
|
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
|
2016-11-18 09:36:16 -05:00
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-02-28 19:18:34 -05:00
|
|
|
report: { id: 'account.report', defaultMessage: 'Report @{name}' },
|
2017-07-27 18:55:15 -04:00
|
|
|
share: { id: 'account.share', defaultMessage: 'Share @{name}\'s profile' },
|
2017-05-19 19:28:25 -04:00
|
|
|
media: { id: 'account.media', defaultMessage: 'Media' },
|
2017-05-19 15:05:32 -04:00
|
|
|
blockDomain: { id: 'account.block_domain', defaultMessage: 'Hide everything from {domain}' },
|
|
|
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
|
2016-11-18 09:36:16 -05:00
|
|
|
});
|
2016-10-27 15:59:56 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@injectIntl
|
|
|
|
export default class ActionBar extends React.PureComponent {
|
2016-09-23 14:23:26 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
me: PropTypes.number.isRequired,
|
|
|
|
onFollow: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func.isRequired,
|
|
|
|
onMention: PropTypes.func.isRequired,
|
|
|
|
onReport: PropTypes.func.isRequired,
|
|
|
|
onMute: PropTypes.func.isRequired,
|
2017-05-19 15:05:32 -04:00
|
|
|
onBlockDomain: PropTypes.func.isRequired,
|
|
|
|
onUnblockDomain: PropTypes.func.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-07-27 18:55:15 -04:00
|
|
|
handleShare = () => {
|
|
|
|
navigator.share({
|
|
|
|
url: this.props.account.get('url'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-09-23 14:23:26 -04:00
|
|
|
render () {
|
2016-11-16 11:20:52 -05:00
|
|
|
const { account, me, intl } = this.props;
|
2016-10-02 09:14:26 -04:00
|
|
|
|
2016-10-09 16:19:15 -04:00
|
|
|
let menu = [];
|
2017-02-28 19:18:34 -05:00
|
|
|
let extraInfo = '';
|
2016-09-23 14:23:26 -04:00
|
|
|
|
2017-02-28 18:53:11 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mention, { name: account.get('username') }), action: this.props.onMention });
|
2017-07-27 18:55:15 -04:00
|
|
|
if ('share' in navigator) {
|
|
|
|
menu.push({ text: intl.formatMessage(messages.share, { name: account.get('username') }), action: this.handleShare });
|
|
|
|
}
|
2017-02-28 18:53:11 -05:00
|
|
|
menu.push(null);
|
2017-05-19 19:28:25 -04:00
|
|
|
menu.push({ text: intl.formatMessage(messages.media), to: `/accounts/${account.get('id')}/media` });
|
|
|
|
menu.push(null);
|
2016-10-24 11:11:02 -04:00
|
|
|
|
2016-09-23 14:23:26 -04:00
|
|
|
if (account.get('id') === me) {
|
2016-11-18 09:36:16 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.edit_profile), href: '/settings/profile' });
|
2016-10-09 16:19:15 -04:00
|
|
|
} else {
|
2017-03-02 12:49:32 -05:00
|
|
|
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 });
|
|
|
|
}
|
2016-09-23 14:23:26 -04:00
|
|
|
|
2017-02-28 18:53:11 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.report, { name: account.get('username') }), action: this.props.onReport });
|
2017-02-14 14:59:26 -05:00
|
|
|
}
|
|
|
|
|
2017-02-28 20:00:21 -05:00
|
|
|
if (account.get('acct') !== account.get('username')) {
|
2017-05-19 15:05:32 -04:00
|
|
|
const domain = account.get('acct').split('@')[1];
|
2017-07-24 14:05:29 -04:00
|
|
|
|
|
|
|
extraInfo = (
|
|
|
|
<div className='account__disclaimer'>
|
|
|
|
<FormattedMessage
|
|
|
|
id='account.disclaimer_full'
|
|
|
|
defaultMessage="Information below may reflect the user's profile incompletely."
|
|
|
|
/>
|
|
|
|
{' '}
|
|
|
|
<a target='_blank' rel='noopener' href={account.get('url')}>
|
|
|
|
<FormattedMessage id='account.view_full_profile' defaultMessage='View full profile' />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
2017-05-19 15:05:32 -04:00
|
|
|
|
|
|
|
menu.push(null);
|
|
|
|
|
|
|
|
if (account.getIn(['relationship', 'domain_blocking'])) {
|
|
|
|
menu.push({ text: intl.formatMessage(messages.unblockDomain, { domain }), action: this.props.onUnblockDomain });
|
|
|
|
} else {
|
|
|
|
menu.push({ text: intl.formatMessage(messages.blockDomain, { domain }), action: this.props.onBlockDomain });
|
|
|
|
}
|
2017-02-28 19:18:34 -05:00
|
|
|
}
|
|
|
|
|
2016-09-23 14:23:26 -04:00
|
|
|
return (
|
2017-07-24 14:05:29 -04:00
|
|
|
<div>
|
|
|
|
{extraInfo}
|
|
|
|
|
|
|
|
<div className='account__action-bar'>
|
|
|
|
<div className='account__action-bar-dropdown'>
|
2017-07-27 16:31:59 -04:00
|
|
|
<DropdownMenuContainer items={menu} icon='bars' size={24} direction='right' />
|
2017-07-24 14:05:29 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='account__action-bar-links'>
|
|
|
|
<Link className='account__action-bar__tab' to={`/accounts/${account.get('id')}`}>
|
|
|
|
<span><FormattedMessage id='account.posts' defaultMessage='Posts' /></span>
|
|
|
|
<strong><FormattedNumber value={account.get('statuses_count')} /></strong>
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
<Link className='account__action-bar__tab' to={`/accounts/${account.get('id')}/following`}>
|
|
|
|
<span><FormattedMessage id='account.follows' defaultMessage='Follows' /></span>
|
|
|
|
<strong><FormattedNumber value={account.get('following_count')} /></strong>
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
<Link className='account__action-bar__tab' to={`/accounts/${account.get('id')}/followers`}>
|
|
|
|
<span><FormattedMessage id='account.followers' defaultMessage='Followers' /></span>
|
|
|
|
<strong><FormattedNumber value={account.get('followers_count')} /></strong>
|
|
|
|
</Link>
|
|
|
|
</div>
|
2016-10-09 16:19:15 -04:00
|
|
|
</div>
|
2016-09-23 14:23:26 -04:00
|
|
|
</div>
|
|
|
|
);
|
2016-11-16 11:20:52 -05:00
|
|
|
}
|
2016-09-23 14:23:26 -04:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|