2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-09-23 18:23:26 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-12-04 07:26:40 +00:00
|
|
|
import DropdownMenuContainer from 'flavours/glitch/containers/dropdown_menu_container';
|
2017-10-08 00:55:58 +00:00
|
|
|
import { Link } from 'react-router-dom';
|
2016-11-18 14:36:16 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage, FormattedNumber } from 'react-intl';
|
2017-12-04 07:26:40 +00:00
|
|
|
import { me } from 'flavours/glitch/util/initial_state';
|
2016-11-18 14:36:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-02-28 23:53:11 +00:00
|
|
|
mention: { id: 'account.mention', defaultMessage: 'Mention @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
edit_profile: { id: 'account.edit_profile', defaultMessage: 'Edit profile' },
|
2017-02-28 23:53:11 +00:00
|
|
|
unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
2017-03-02 17:49:32 +00:00
|
|
|
unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
|
2017-02-28 23:53:11 +00:00
|
|
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
2017-03-02 17:49:32 +00:00
|
|
|
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-03-01 00:18:34 +00:00
|
|
|
report: { id: 'account.report', defaultMessage: 'Report @{name}' },
|
2017-07-27 22:55:15 +00:00
|
|
|
share: { id: 'account.share', defaultMessage: 'Share @{name}\'s profile' },
|
2017-05-19 23:28:25 +00:00
|
|
|
media: { id: 'account.media', defaultMessage: 'Media' },
|
2017-05-19 19:05:32 +00:00
|
|
|
blockDomain: { id: 'account.block_domain', defaultMessage: 'Hide everything from {domain}' },
|
|
|
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
|
2017-11-09 14:41:10 +00:00
|
|
|
hideReblogs: { id: 'account.hide_reblogs', defaultMessage: 'Hide boosts from @{name}' },
|
|
|
|
showReblogs: { id: 'account.show_reblogs', defaultMessage: 'Show boosts from @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-10-27 19:59:56 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@injectIntl
|
|
|
|
export default class ActionBar extends React.PureComponent {
|
2016-09-23 18:23:26 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
onFollow: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func.isRequired,
|
|
|
|
onMention: PropTypes.func.isRequired,
|
2017-11-09 14:41:10 +00:00
|
|
|
onReblogToggle: PropTypes.func.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
onReport: PropTypes.func.isRequired,
|
|
|
|
onMute: PropTypes.func.isRequired,
|
2017-05-19 19:05:32 +00:00
|
|
|
onBlockDomain: PropTypes.func.isRequired,
|
|
|
|
onUnblockDomain: PropTypes.func.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-07-27 22:55:15 +00:00
|
|
|
handleShare = () => {
|
|
|
|
navigator.share({
|
|
|
|
url: this.props.account.get('url'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-09-23 18:23:26 +00:00
|
|
|
render () {
|
2017-10-31 02:27:48 +00:00
|
|
|
const { account, intl } = this.props;
|
2016-10-02 13:14:26 +00:00
|
|
|
|
2016-10-09 20:19:15 +00:00
|
|
|
let menu = [];
|
2017-03-01 00:18:34 +00:00
|
|
|
let extraInfo = '';
|
2016-09-23 18:23:26 +00:00
|
|
|
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mention, { name: account.get('username') }), action: this.props.onMention });
|
2018-03-16 18:54:00 +00:00
|
|
|
|
2017-07-27 22:55:15 +00:00
|
|
|
if ('share' in navigator) {
|
|
|
|
menu.push({ text: intl.formatMessage(messages.share, { name: account.get('username') }), action: this.handleShare });
|
|
|
|
}
|
2018-03-16 18:54:00 +00:00
|
|
|
|
2017-05-19 23:28:25 +00:00
|
|
|
menu.push(null);
|
2016-10-24 15:11:02 +00:00
|
|
|
|
2016-09-23 18:23:26 +00:00
|
|
|
if (account.get('id') === me) {
|
2016-11-18 14:36:16 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.edit_profile), href: '/settings/profile' });
|
2016-10-09 20:19:15 +00:00
|
|
|
} else {
|
2017-12-07 00:23:28 +00:00
|
|
|
if (account.getIn(['relationship', 'following'])) {
|
|
|
|
if (account.getIn(['relationship', 'showing_reblogs'])) {
|
2017-11-09 14:41:10 +00:00
|
|
|
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 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-02 17:49:32 +00: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 18:23:26 +00:00
|
|
|
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.report, { name: account.get('username') }), action: this.props.onReport });
|
2017-02-14 19:59:26 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 01:00:21 +00:00
|
|
|
if (account.get('acct') !== account.get('username')) {
|
2017-05-19 19:05:32 +00:00
|
|
|
const domain = account.get('acct').split('@')[1];
|
2017-07-24 18:05:29 +00: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 19:05:32 +00: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-03-01 00:18:34 +00:00
|
|
|
}
|
|
|
|
|
2016-09-23 18:23:26 +00:00
|
|
|
return (
|
2017-07-24 18:05:29 +00:00
|
|
|
<div>
|
|
|
|
{extraInfo}
|
|
|
|
|
|
|
|
<div className='account__action-bar'>
|
|
|
|
<div className='account__action-bar-dropdown'>
|
2017-07-27 20:31:59 +00:00
|
|
|
<DropdownMenuContainer items={menu} icon='bars' size={24} direction='right' />
|
2017-07-24 18:05:29 +00: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 20:19:15 +00:00
|
|
|
</div>
|
2016-09-23 18:23:26 +00:00
|
|
|
</div>
|
|
|
|
);
|
2016-11-16 16:20:52 +00:00
|
|
|
}
|
2016-09-23 18:23:26 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|