2016-11-16 16:20:52 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-09-23 18:23:26 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 16:20:52 +00:00
|
|
|
import DropdownMenu from '../../../components/dropdown_menu';
|
|
|
|
import { Link } from 'react-router';
|
2016-11-18 14:36:16 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage, FormattedNumber } from 'react-intl';
|
|
|
|
|
|
|
|
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-02-28 23:53:11 +00:00
|
|
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-02-28 23:53:11 +00:00
|
|
|
report: { id: 'account.report', defaultMessage: 'Report @{name}' }
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-10-27 19:59:56 +00:00
|
|
|
|
|
|
|
const outerDropdownStyle = {
|
|
|
|
padding: '10px',
|
|
|
|
flex: '1 1 auto'
|
|
|
|
};
|
|
|
|
|
|
|
|
const outerLinksStyle = {
|
|
|
|
flex: '1 1 auto',
|
|
|
|
display: 'flex',
|
|
|
|
lineHeight: '18px'
|
|
|
|
};
|
2016-09-23 18:23:26 +00:00
|
|
|
|
|
|
|
const ActionBar = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
me: React.PropTypes.number.isRequired,
|
2016-12-12 13:39:18 +00:00
|
|
|
onFollow: React.PropTypes.func,
|
2016-10-24 15:11:02 +00:00
|
|
|
onBlock: React.PropTypes.func.isRequired,
|
2017-02-14 19:59:26 +00:00
|
|
|
onMention: React.PropTypes.func.isRequired,
|
|
|
|
onReport: React.PropTypes.func.isRequired,
|
|
|
|
intl: React.PropTypes.object.isRequired
|
2016-09-23 18:23:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
render () {
|
2016-11-16 16:20:52 +00:00
|
|
|
const { account, me, intl } = this.props;
|
2016-10-02 13:14:26 +00:00
|
|
|
|
2016-10-09 20:19:15 +00:00
|
|
|
let menu = [];
|
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 });
|
|
|
|
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 if (account.getIn(['relationship', 'blocking'])) {
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.unblock, { name: account.get('username') }), action: this.props.onBlock });
|
2016-10-09 20:19:15 +00:00
|
|
|
} else if (account.getIn(['relationship', 'following'])) {
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.block, { name: account.get('username') }), action: this.props.onBlock });
|
2016-10-09 20:19:15 +00:00
|
|
|
} else {
|
2017-02-28 23:53:11 +00:00
|
|
|
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-14 19:59:26 +00:00
|
|
|
if (account.get('id') !== me) {
|
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
|
|
|
}
|
|
|
|
|
2016-09-23 18:23:26 +00:00
|
|
|
return (
|
2017-02-09 00:20:09 +00:00
|
|
|
<div className='account__action-bar'>
|
2016-10-27 19:59:56 +00:00
|
|
|
<div style={outerDropdownStyle}>
|
2017-01-08 11:32:37 +00:00
|
|
|
<DropdownMenu items={menu} icon='bars' size={24} direction="right" />
|
2016-10-24 15:11:02 +00:00
|
|
|
</div>
|
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
<div style={outerLinksStyle}>
|
2017-02-09 00:20:09 +00:00
|
|
|
<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>
|
2016-10-27 19:59:56 +00:00
|
|
|
</Link>
|
2016-10-09 20:19:15 +00:00
|
|
|
|
2017-02-09 00:20:09 +00:00
|
|
|
<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>
|
2016-10-27 19:59:56 +00:00
|
|
|
</Link>
|
2016-10-09 20:19:15 +00:00
|
|
|
|
2017-02-09 00:20:09 +00:00
|
|
|
<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>
|
2016-10-27 19:59:56 +00:00
|
|
|
</Link>
|
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
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 16:20:52 +00:00
|
|
|
export default injectIntl(ActionBar);
|