mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
6e54ec7695
* Fix antd Modal.visible warning by using updated attribute name 'open'. * Update more attributes (onVisibleChange => onOpenChange, defaultVisible => defaultOpen) to fix browser console warnings. * Update ModalProps property from 'visible' to 'open' to match the change in antd. * Update variable names to match the antd change from 'visible' to 'open'. * Inline this for the linter. * One more visible => open reference.
133 lines
3.2 KiB
TypeScript
133 lines
3.2 KiB
TypeScript
import {
|
|
CloseCircleOutlined,
|
|
ExclamationCircleOutlined,
|
|
EyeInvisibleOutlined,
|
|
SmallDashOutlined,
|
|
} from '@ant-design/icons';
|
|
import { Dropdown, Menu, MenuProps, Space, message, Modal as AntModal } from 'antd';
|
|
import { FC, useState } from 'react';
|
|
import { Modal } from '../../ui/Modal/Modal';
|
|
import { ChatModerationDetailsModal } from '../ChatModerationDetailsModal/ChatModerationDetailsModal';
|
|
import styles from './ChatModerationActionMenu.module.scss';
|
|
import ChatModeration from '../../../services/moderation-service';
|
|
|
|
const { confirm } = AntModal;
|
|
|
|
export type ChatModerationActionMenuProps = {
|
|
accessToken: string;
|
|
messageID: string;
|
|
userID: string;
|
|
userDisplayName: string;
|
|
};
|
|
|
|
export const ChatModerationActionMenu: FC<ChatModerationActionMenuProps> = ({
|
|
messageID,
|
|
userID,
|
|
userDisplayName,
|
|
accessToken,
|
|
}) => {
|
|
const [showUserDetailsModal, setShowUserDetailsModal] = useState(false);
|
|
|
|
const handleBanUser = async () => {
|
|
try {
|
|
await ChatModeration.banUser(userID, accessToken);
|
|
} catch (e) {
|
|
console.error(e);
|
|
message.error(e);
|
|
}
|
|
};
|
|
|
|
const handleHideMessage = async () => {
|
|
try {
|
|
await ChatModeration.removeMessage(messageID, accessToken);
|
|
} catch (e) {
|
|
console.error(e);
|
|
message.error(e);
|
|
}
|
|
};
|
|
|
|
const confirmHideMessage = async () => {
|
|
confirm({
|
|
icon: <ExclamationCircleOutlined />,
|
|
content: `Are you sure you want to remove this message from ${userDisplayName}?`,
|
|
onOk() {
|
|
handleHideMessage();
|
|
},
|
|
});
|
|
};
|
|
|
|
const confirmBanUser = async () => {
|
|
confirm({
|
|
icon: <ExclamationCircleOutlined />,
|
|
content: `Are you sure you want to ban ${userDisplayName} from chat?`,
|
|
onOk() {
|
|
handleBanUser();
|
|
},
|
|
});
|
|
};
|
|
|
|
const onMenuClick: MenuProps['onClick'] = ({ key }) => {
|
|
if (key === 'hide-message') {
|
|
confirmHideMessage();
|
|
} else if (key === 'ban-user') {
|
|
confirmBanUser();
|
|
} else if (key === 'more-info') {
|
|
setShowUserDetailsModal(true);
|
|
}
|
|
};
|
|
|
|
const menu = (
|
|
<Menu
|
|
onClick={onMenuClick}
|
|
items={[
|
|
{
|
|
label: (
|
|
<div>
|
|
<span className={styles.icon}>
|
|
<EyeInvisibleOutlined />
|
|
</span>
|
|
Hide Message
|
|
</div>
|
|
),
|
|
key: 'hide-message',
|
|
},
|
|
{
|
|
label: (
|
|
<div>
|
|
<span className={styles.icon}>
|
|
<CloseCircleOutlined />
|
|
</span>
|
|
Ban User
|
|
</div>
|
|
),
|
|
key: 'ban-user',
|
|
},
|
|
{
|
|
label: <div>More Info...</div>,
|
|
key: 'more-info',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Dropdown overlay={menu} trigger={['click']}>
|
|
<button type="button" onClick={e => e.preventDefault()}>
|
|
<Space>
|
|
<SmallDashOutlined />
|
|
</Space>
|
|
</button>
|
|
</Dropdown>
|
|
<Modal
|
|
title={userDisplayName}
|
|
open={showUserDetailsModal}
|
|
handleCancel={() => {
|
|
setShowUserDetailsModal(false);
|
|
}}
|
|
>
|
|
<ChatModerationDetailsModal userId={userID} accessToken={accessToken} />
|
|
</Modal>
|
|
</>
|
|
);
|
|
};
|