2022-12-16 04:50:11 +11:00
import { FormattedMessage } from 'react-intl' ;
2023-05-24 01:15:17 +10:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2022-12-16 04:50:11 +11:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2023-05-24 01:15:17 +10:00
2023-05-09 11:11:56 +10:00
import { Icon } from 'mastodon/components/icon' ;
2022-12-16 04:50:11 +11:00
export default class FollowRequestNote extends ImmutablePureComponent {
static propTypes = {
account : ImmutablePropTypes . map . isRequired ,
} ;
render ( ) {
const { account , onAuthorize , onReject } = this . props ;
return (
< div className = 'follow-request-banner' >
< div className = 'follow-request-banner__message' >
< FormattedMessage id = 'account.requested_follow' defaultMessage = '{name} has requested to follow you' values = { { name : < bdi > < strong dangerouslySetInnerHTML = { { _ _html : account . get ( 'display_name_html' ) } } / > < / bdi > } } / >
< / div >
< div className = 'follow-request-banner__action' >
< button type = 'button' className = 'button button-tertiary button--confirmation' onClick = { onAuthorize } >
< Icon id = 'check' fixedWidth / >
< FormattedMessage id = 'follow_request.authorize' defaultMessage = 'Authorize' / >
< / button >
< button type = 'button' className = 'button button-tertiary button--destructive' onClick = { onReject } >
< Icon id = 'times' fixedWidth / >
< FormattedMessage id = 'follow_request.reject' defaultMessage = 'Reject' / >
< / button >
< / div >
< / div >
) ;
}
}