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';
|
2018-09-13 09:20:21 +00:00
|
|
|
import { NavLink } from 'react-router-dom';
|
2019-03-25 23:36:25 +00:00
|
|
|
import { injectIntl, FormattedMessage, FormattedNumber } from 'react-intl';
|
2018-08-31 10:33:32 +00:00
|
|
|
import { me, isStaff } from 'flavours/glitch/util/initial_state';
|
2018-09-25 12:46:14 +00:00
|
|
|
import { profileLink, accountAdminLink } from 'flavours/glitch/util/backend_links';
|
2019-03-28 16:07:40 +00:00
|
|
|
import Icon from 'flavours/glitch/components/icon';
|
2016-11-18 14:36:16 +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,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2018-09-21 05:17:44 +00:00
|
|
|
isStatusesPageActive = (match, location) => {
|
|
|
|
if (!match) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return !location.pathname.match(/\/(followers|following)\/?$/);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-03-01 00:18:34 +00:00
|
|
|
let extraInfo = '';
|
2016-09-23 18:23:26 +00:00
|
|
|
|
2017-03-01 01:00:21 +00:00
|
|
|
if (account.get('acct') !== account.get('username')) {
|
2017-07-24 18:05:29 +00:00
|
|
|
extraInfo = (
|
|
|
|
<div className='account__disclaimer'>
|
2019-03-28 16:07:40 +00:00
|
|
|
<Icon icon='info-circle' fixedWidth /> <FormattedMessage
|
2017-07-24 18:05:29 +00:00
|
|
|
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>
|
|
|
|
);
|
2018-08-31 10:33:32 +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-links'>
|
2018-09-21 05:17:44 +00:00
|
|
|
<NavLink isActive={this.isStatusesPageActive} activeClassName='active' className='account__action-bar__tab' to={`/accounts/${account.get('id')}`}>
|
2018-07-30 11:21:48 +00:00
|
|
|
<FormattedMessage id='account.posts' defaultMessage='Posts' />
|
2017-07-24 18:05:29 +00:00
|
|
|
<strong><FormattedNumber value={account.get('statuses_count')} /></strong>
|
2018-09-13 09:20:21 +00:00
|
|
|
</NavLink>
|
2017-07-24 18:05:29 +00:00
|
|
|
|
2018-09-13 09:20:21 +00:00
|
|
|
<NavLink exact activeClassName='active' className='account__action-bar__tab' to={`/accounts/${account.get('id')}/following`}>
|
2018-07-30 11:21:48 +00:00
|
|
|
<FormattedMessage id='account.follows' defaultMessage='Follows' />
|
2017-07-24 18:05:29 +00:00
|
|
|
<strong><FormattedNumber value={account.get('following_count')} /></strong>
|
2018-09-13 09:20:21 +00:00
|
|
|
</NavLink>
|
2017-07-24 18:05:29 +00:00
|
|
|
|
2018-09-13 09:20:21 +00:00
|
|
|
<NavLink exact activeClassName='active' className='account__action-bar__tab' to={`/accounts/${account.get('id')}/followers`}>
|
2018-07-30 11:21:48 +00:00
|
|
|
<FormattedMessage id='account.followers' defaultMessage='Followers' />
|
2018-12-17 20:23:44 +00:00
|
|
|
<strong>{ account.get('followers_count') < 0 ? '-' : <FormattedNumber value={account.get('followers_count')} /> }</strong>
|
2018-09-13 09:20:21 +00:00
|
|
|
</NavLink>
|
2017-07-24 18:05:29 +00:00
|
|
|
</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
|
|
|
}
|