41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { FormattedMessage } from 'react-intl';
 | |
| 
 | |
| 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 { Icon }  from 'mastodon/components/icon';
 | |
| 
 | |
| export default class FollowRequestNote extends ImmutablePureComponent {
 | |
| 
 | |
|   static propTypes = {
 | |
|     account: ImmutablePropTypes.record.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' icon={CheckIcon} />
 | |
|             <FormattedMessage id='follow_request.authorize' defaultMessage='Authorize' />
 | |
|           </button>
 | |
| 
 | |
|           <button type='button' className='button button-tertiary button--destructive' onClick={onReject}>
 | |
|             <Icon id='times' icon={CloseIcon} />
 | |
|             <FormattedMessage id='follow_request.reject' defaultMessage='Reject' />
 | |
|           </button>
 | |
|         </div>
 | |
|       </div>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 |