2020-03-27 13:59:38 -07:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import Permalink from '../../../components/permalink';
|
|
|
|
import Avatar from '../../../components/avatar';
|
|
|
|
import DisplayName from '../../../components/display_name';
|
|
|
|
import IconButton from '../../../components/icon_button';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
authorize: { id: 'follow_request.authorize', defaultMessage: 'Authorize' },
|
|
|
|
reject: { id: 'follow_request.reject', defaultMessage: 'Reject' },
|
|
|
|
});
|
|
|
|
|
|
|
|
export default @injectIntl
|
|
|
|
class AccountAuthorize extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
onAuthorize: PropTypes.func.isRequired,
|
|
|
|
onReject: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2020-04-14 14:47:35 -07:00
|
|
|
render() {
|
2020-03-27 13:59:38 -07:00
|
|
|
const { intl, account, onAuthorize, onReject } = this.props;
|
|
|
|
const content = { __html: account.get('note_emojified') };
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='account-authorize__wrapper'>
|
|
|
|
<div className='account-authorize'>
|
|
|
|
<Permalink href={`/@${account.get('acct')}`} to={`/@${account.get('acct')}`} className='detailed-status__display-name'>
|
|
|
|
<div className='account-authorize__avatar'><Avatar account={account} size={48} /></div>
|
|
|
|
<DisplayName account={account} />
|
|
|
|
</Permalink>
|
|
|
|
|
|
|
|
<div className='account__header__content' dangerouslySetInnerHTML={content} />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='account--panel'>
|
|
|
|
<div className='account--panel__button'><IconButton title={intl.formatMessage(messages.authorize)} icon='check' onClick={onAuthorize} /></div>
|
|
|
|
<div className='account--panel__button'><IconButton title={intl.formatMessage(messages.reject)} icon='times' onClick={onReject} /></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|