2019-12-02 03:25:29 +11:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
|
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
2023-05-09 11:11:56 +10:00
|
|
|
import { Avatar } from 'mastodon/components/avatar';
|
2023-05-10 07:08:54 +10:00
|
|
|
import { DisplayName } from 'mastodon/components/display_name';
|
2023-05-09 11:11:56 +10:00
|
|
|
import { IconButton } from 'mastodon/components/icon_button';
|
2019-12-02 03:25:29 +11:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
authorize: { id: 'follow_request.authorize', defaultMessage: 'Authorize' },
|
|
|
|
reject: { id: 'follow_request.reject', defaultMessage: 'Reject' },
|
|
|
|
});
|
|
|
|
|
|
|
|
class FollowRequest extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
onAuthorize: PropTypes.func.isRequired,
|
|
|
|
onReject: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { intl, hidden, account, onAuthorize, onReject } = this.props;
|
|
|
|
|
|
|
|
if (!account) {
|
|
|
|
return <div />;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hidden) {
|
|
|
|
return (
|
2023-05-23 19:47:36 +10:00
|
|
|
<>
|
2019-12-02 03:25:29 +11:00
|
|
|
{account.get('display_name')}
|
|
|
|
{account.get('username')}
|
2023-05-23 19:47:36 +10:00
|
|
|
</>
|
2019-12-02 03:25:29 +11:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='account'>
|
|
|
|
<div className='account__wrapper'>
|
2022-11-14 07:10:20 +11:00
|
|
|
<Link key={account.get('id')} className='account__display-name' title={account.get('acct')} to={`/@${account.get('acct')}`}>
|
2019-12-02 03:25:29 +11:00
|
|
|
<div className='account__avatar-wrapper'><Avatar account={account} size={36} /></div>
|
|
|
|
<DisplayName account={account} />
|
2022-11-14 07:10:20 +11:00
|
|
|
</Link>
|
2019-12-02 03:25:29 +11:00
|
|
|
|
|
|
|
<div className='account__relationship'>
|
|
|
|
<IconButton title={intl.formatMessage(messages.authorize)} icon='check' onClick={onAuthorize} />
|
|
|
|
<IconButton title={intl.formatMessage(messages.reject)} icon='times' onClick={onReject} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 13:17:53 +11:00
|
|
|
|
|
|
|
export default injectIntl(FollowRequest);
|