2023-05-28 05:18:23 -07:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 07:38:10 -07:00
|
|
|
|
2023-05-07 12:43:25 -07:00
|
|
|
import { FormattedMessage, FormattedNumber } from 'react-intl';
|
2023-05-28 07:38:10 -07:00
|
|
|
|
|
|
|
import { NavLink } from 'react-router-dom';
|
|
|
|
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
|
2023-05-08 18:11:56 -07:00
|
|
|
import { Icon } from 'flavours/glitch/components/icon';
|
2016-11-18 06:36:16 -08:00
|
|
|
|
2023-05-28 05:18:23 -07:00
|
|
|
class ActionBar extends PureComponent {
|
2016-09-23 11:23:26 -07:00
|
|
|
|
2017-05-12 05:44:10 -07:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
};
|
|
|
|
|
2018-09-20 22:17:44 -07:00
|
|
|
isStatusesPageActive = (match, location) => {
|
|
|
|
if (!match) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return !location.pathname.match(/\/(followers|following)\/?$/);
|
2023-02-03 11:52:07 -08:00
|
|
|
};
|
2018-09-20 22:17:44 -07:00
|
|
|
|
2016-09-23 11:23:26 -07:00
|
|
|
render () {
|
2023-05-07 12:43:25 -07:00
|
|
|
const { account } = this.props;
|
2016-10-02 06:14:26 -07:00
|
|
|
|
2020-09-28 09:00:49 -07:00
|
|
|
if (account.get('suspended')) {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div className='account__disclaimer'>
|
|
|
|
<Icon id='info-circle' fixedWidth /> <FormattedMessage
|
|
|
|
id='account.suspended_disclaimer_full'
|
2023-02-03 11:52:07 -08:00
|
|
|
defaultMessage='This user has been suspended by a moderator.'
|
2020-09-28 09:00:49 -07:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-02-28 16:18:34 -08:00
|
|
|
let extraInfo = '';
|
2016-09-23 11:23:26 -07:00
|
|
|
|
2017-02-28 17:00:21 -08:00
|
|
|
if (account.get('acct') !== account.get('username')) {
|
2017-07-24 11:05:29 -07:00
|
|
|
extraInfo = (
|
|
|
|
<div className='account__disclaimer'>
|
2019-09-09 06:28:45 -07:00
|
|
|
<Icon id='info-circle' fixedWidth /> <FormattedMessage
|
2017-07-24 11:05:29 -07: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 03:33:32 -07:00
|
|
|
}
|
|
|
|
|
2016-09-23 11:23:26 -07:00
|
|
|
return (
|
2017-07-24 11:05:29 -07:00
|
|
|
<div>
|
|
|
|
{extraInfo}
|
|
|
|
|
|
|
|
<div className='account__action-bar'>
|
|
|
|
<div className='account__action-bar-links'>
|
2021-09-25 20:46:13 -07:00
|
|
|
<NavLink isActive={this.isStatusesPageActive} activeClassName='active' className='account__action-bar__tab' to={`/@${account.get('acct')}`}>
|
2018-07-30 04:21:48 -07:00
|
|
|
<FormattedMessage id='account.posts' defaultMessage='Posts' />
|
2017-07-24 11:05:29 -07:00
|
|
|
<strong><FormattedNumber value={account.get('statuses_count')} /></strong>
|
2018-09-13 02:20:21 -07:00
|
|
|
</NavLink>
|
2017-07-24 11:05:29 -07:00
|
|
|
|
2021-09-25 20:46:13 -07:00
|
|
|
<NavLink exact activeClassName='active' className='account__action-bar__tab' to={`/@${account.get('acct')}/following`}>
|
2018-07-30 04:21:48 -07:00
|
|
|
<FormattedMessage id='account.follows' defaultMessage='Follows' />
|
2017-07-24 11:05:29 -07:00
|
|
|
<strong><FormattedNumber value={account.get('following_count')} /></strong>
|
2018-09-13 02:20:21 -07:00
|
|
|
</NavLink>
|
2017-07-24 11:05:29 -07:00
|
|
|
|
2021-09-25 20:46:13 -07:00
|
|
|
<NavLink exact activeClassName='active' className='account__action-bar__tab' to={`/@${account.get('acct')}/followers`}>
|
2018-07-30 04:21:48 -07:00
|
|
|
<FormattedMessage id='account.followers' defaultMessage='Followers' />
|
2018-12-17 12:23:44 -08:00
|
|
|
<strong>{ account.get('followers_count') < 0 ? '-' : <FormattedNumber value={account.get('followers_count')} /> }</strong>
|
2018-09-13 02:20:21 -07:00
|
|
|
</NavLink>
|
2017-07-24 11:05:29 -07:00
|
|
|
</div>
|
2016-10-09 13:19:15 -07:00
|
|
|
</div>
|
2016-09-23 11:23:26 -07:00
|
|
|
</div>
|
|
|
|
);
|
2016-11-16 08:20:52 -08:00
|
|
|
}
|
2016-09-23 11:23:26 -07:00
|
|
|
|
2017-04-21 11:05:35 -07:00
|
|
|
}
|
2023-03-24 15:15:25 -07:00
|
|
|
|
2023-05-07 12:43:25 -07:00
|
|
|
export default ActionBar;
|