import { Modal, Button } from 'antd'; import { ExclamationCircleFilled, QuestionCircleFilled, StopTwoTone } from '@ant-design/icons'; import { FC } from 'react'; import { USER_ENABLED_TOGGLE, fetchData } from '../utils/apis'; import { User } from '../types/chat'; export type BanUserButtonProps = { user: User; isEnabled: Boolean; // = this user's current status label?: string; onClick?: () => void; }; export const BanUserButton: FC = ({ user, isEnabled, label, onClick }) => { async function buttonClicked({ id }): Promise { const data = { userId: id, enabled: !isEnabled, // set user to this value }; try { const result = await fetchData(USER_ENABLED_TOGGLE, { data, method: 'POST', auth: true, }); return result.success; } catch (e) { // eslint-disable-next-line no-console console.error(e); } return false; } const actionString = isEnabled ? 'ban' : 'unban'; const icon = isEnabled ? ( ) : ( ); const content = ( <> Are you sure you want to {actionString} {user.displayName} {isEnabled ? ' and remove their messages?' : '?'} ); const confirmBlockAction = () => { Modal.confirm({ title: `Confirm ${actionString}`, content, onCancel: () => {}, onOk: () => new Promise((resolve, reject) => { const result = buttonClicked(user); if (result) { // wait a bit before closing so the user/client tables repopulate // GW: TODO: put users/clients data in global app context instead, then call a function here to update that state. (current in another branch) setTimeout(() => { resolve(result); onClick?.(); }, 3000); } else { reject(); } }), okType: 'danger', okText: isEnabled ? 'Absolutely' : null, icon, }); }; return ( ); }; BanUserButton.defaultProps = { label: '', onClick: null, };