mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 05:17:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Modal, Button } from 'antd';
 | 
						|
import { FC } from 'react';
 | 
						|
import dynamic from 'next/dynamic';
 | 
						|
import { USER_ENABLED_TOGGLE, fetchData } from '../../utils/apis';
 | 
						|
import { User } from '../../types/chat';
 | 
						|
 | 
						|
// Lazy loaded components
 | 
						|
 | 
						|
const ExclamationCircleFilled = dynamic(() => import('@ant-design/icons/ExclamationCircleFilled'), {
 | 
						|
  ssr: false,
 | 
						|
});
 | 
						|
 | 
						|
const QuestionCircleFilled = dynamic(() => import('@ant-design/icons/QuestionCircleFilled'), {
 | 
						|
  ssr: false,
 | 
						|
});
 | 
						|
 | 
						|
const StopTwoTone = dynamic(() => import('@ant-design/icons/StopTwoTone'), {
 | 
						|
  ssr: false,
 | 
						|
});
 | 
						|
 | 
						|
export type BanUserButtonProps = {
 | 
						|
  user: User;
 | 
						|
  isEnabled: Boolean; // = this user's current status
 | 
						|
  label?: string;
 | 
						|
  onClick?: () => void;
 | 
						|
};
 | 
						|
 | 
						|
export const BanUserButton: FC<BanUserButtonProps> = ({ user, isEnabled, label, onClick }) => {
 | 
						|
  async function buttonClicked({ id }): Promise<Boolean> {
 | 
						|
    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 ? (
 | 
						|
    <ExclamationCircleFilled style={{ color: 'var(--ant-error)' }} />
 | 
						|
  ) : (
 | 
						|
    <QuestionCircleFilled style={{ color: 'var(--ant-warning)' }} />
 | 
						|
  );
 | 
						|
 | 
						|
  const content = (
 | 
						|
    <>
 | 
						|
      Are you sure you want to {actionString} <strong>{user.displayName}</strong>
 | 
						|
      {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 (
 | 
						|
    <Button
 | 
						|
      type="primary"
 | 
						|
      onClick={confirmBlockAction}
 | 
						|
      size="small"
 | 
						|
      icon={isEnabled ? <StopTwoTone twoToneColor="#ff4d4f" /> : null}
 | 
						|
      className="block-user-button"
 | 
						|
    >
 | 
						|
      {label || actionString}
 | 
						|
    </Button>
 | 
						|
  );
 | 
						|
};
 | 
						|
BanUserButton.defaultProps = {
 | 
						|
  label: '',
 | 
						|
  onClick: null,
 | 
						|
};
 |