2023-03-20 15:45:52 -07:00
|
|
|
import React, { useState } from 'react';
|
2023-03-20 16:49:41 -07:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2023-03-20 15:45:52 -07:00
|
|
|
|
2023-03-20 16:49:41 -07:00
|
|
|
import { HStack, IconButton, Text } from 'soapbox/components/ui';
|
2023-03-20 15:45:52 -07:00
|
|
|
|
|
|
|
interface IAuthorizeRejectButtons {
|
|
|
|
id: string
|
|
|
|
onAuthorize(id: string): Promise<unknown>
|
|
|
|
onReject(id: string): Promise<unknown>
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Buttons to approve or reject a pending item, usually an account. */
|
|
|
|
const AuthorizeRejectButtons: React.FC<IAuthorizeRejectButtons> = ({ id, onAuthorize, onReject }) => {
|
|
|
|
const [state, setState] = useState<'authorized' | 'rejected' | 'pending'>('pending');
|
|
|
|
|
|
|
|
function handleAuthorize() {
|
|
|
|
onAuthorize(id)
|
|
|
|
.then(() => setState('authorized'))
|
|
|
|
.catch(console.error);
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleReject() {
|
|
|
|
onReject(id)
|
|
|
|
.then(() => setState('rejected'))
|
|
|
|
.catch(console.error);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case 'pending':
|
|
|
|
return (
|
2023-03-20 16:26:27 -07:00
|
|
|
<HStack space={3} alignItems='center'>
|
|
|
|
<IconButton
|
|
|
|
src={require('@tabler/icons/x.svg')}
|
2023-03-20 15:45:52 -07:00
|
|
|
onClick={handleReject}
|
2023-03-20 16:26:27 -07:00
|
|
|
theme='outlined'
|
|
|
|
className='h-10 w-10 items-center justify-center border-2 border-danger-600/10 hover:border-danger-600 dark:border-danger-600/10 dark:hover:border-danger-600'
|
|
|
|
iconClassName='h-6 w-6 text-danger-600'
|
|
|
|
/>
|
|
|
|
<IconButton
|
|
|
|
src={require('@tabler/icons/check.svg')}
|
|
|
|
onClick={handleAuthorize}
|
|
|
|
theme='outlined'
|
|
|
|
className='h-10 w-10 items-center justify-center border-2 border-primary-500/10 hover:border-primary-500 dark:border-primary-500/10 dark:hover:border-primary-500'
|
|
|
|
iconClassName='h-6 w-6 text-primary-500'
|
2023-03-20 15:45:52 -07:00
|
|
|
/>
|
|
|
|
</HStack>
|
|
|
|
);
|
|
|
|
case 'authorized':
|
|
|
|
return (
|
2023-03-20 16:49:41 -07:00
|
|
|
<div className='rounded-full bg-gray-100 px-4 py-2 dark:bg-gray-800'>
|
|
|
|
<Text theme='muted' size='sm'>
|
|
|
|
<FormattedMessage id='authorize.success' defaultMessage='Authorized' />
|
|
|
|
</Text>
|
|
|
|
</div>
|
2023-03-20 15:45:52 -07:00
|
|
|
);
|
|
|
|
case 'rejected':
|
|
|
|
return (
|
2023-03-20 16:49:41 -07:00
|
|
|
<div className='rounded-full bg-gray-100 px-4 py-2 dark:bg-gray-800'>
|
|
|
|
<Text theme='muted' size='sm'>
|
|
|
|
<FormattedMessage id='reject.success' defaultMessage='Rejected' />
|
|
|
|
</Text>
|
|
|
|
</div>
|
2023-03-20 15:45:52 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export { AuthorizeRejectButtons };
|