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