You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.1 KiB
65 lines
2.1 KiB
import PropTypes from 'prop-types'; |
|
|
|
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'; |
|
|
|
import CheckIcon from '@/material-icons/400-24px/check.svg?react'; |
|
import CloseIcon from '@/material-icons/400-24px/close.svg?react'; |
|
import { Avatar } from 'mastodon/components/avatar'; |
|
import { DisplayName } from 'mastodon/components/display_name'; |
|
import { IconButton } from 'mastodon/components/icon_button'; |
|
|
|
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.record.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 ( |
|
<> |
|
{account.get('display_name')} |
|
{account.get('username')} |
|
</> |
|
); |
|
} |
|
|
|
return ( |
|
<div className='account'> |
|
<div className='account__wrapper'> |
|
<Link key={account.get('id')} className='account__display-name' title={account.get('acct')} to={`/@${account.get('acct')}`}> |
|
<div className='account__avatar-wrapper'><Avatar account={account} size={36} /></div> |
|
<DisplayName account={account} /> |
|
</Link> |
|
|
|
<div className='account__relationship'> |
|
<IconButton title={intl.formatMessage(messages.authorize)} icon='check' iconComponent={CheckIcon} onClick={onAuthorize} /> |
|
<IconButton title={intl.formatMessage(messages.reject)} icon='times' iconComponent={CloseIcon} onClick={onReject} /> |
|
</div> |
|
</div> |
|
</div> |
|
); |
|
} |
|
|
|
} |
|
|
|
export default injectIntl(FollowRequest);
|
|
|