mirror of
https://github.com/owncast/owncast.git
synced 2025-01-03 07:07:37 +03:00
153 lines
3.6 KiB
TypeScript
153 lines
3.6 KiB
TypeScript
import {
|
|
CloseCircleOutlined,
|
|
ExclamationCircleOutlined,
|
|
EyeInvisibleOutlined,
|
|
SmallDashOutlined,
|
|
} from '@ant-design/icons';
|
|
import { Dropdown, Menu, MenuProps, Space, Modal } from 'antd';
|
|
import { useState } from 'react';
|
|
import ChatModerationDetailsModal from './ChatModerationDetailsModal';
|
|
import s from './ChatModerationActionMenu.module.scss';
|
|
|
|
const { confirm } = Modal;
|
|
|
|
const HIDE_MESSAGE_ENDPOINT = `/api/chat/messagevisibility`;
|
|
const BAN_USER_ENDPOINT = `/api/chat/users/setenabled`;
|
|
|
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
interface Props {
|
|
accessToken: string;
|
|
messageID: string;
|
|
userID: string;
|
|
userDisplayName: string;
|
|
}
|
|
|
|
export default function ChatModerationActionMenu(props: Props) {
|
|
const { messageID, userID, userDisplayName, accessToken } = props;
|
|
const [showUserDetailsModal, setShowUserDetailsModal] = useState(false);
|
|
|
|
const handleBanUser = async () => {
|
|
const url = new URL(BAN_USER_ENDPOINT);
|
|
url.searchParams.append('accessToken', accessToken);
|
|
const hideMessageUrl = url.toString();
|
|
|
|
const options = {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ userID }),
|
|
};
|
|
|
|
try {
|
|
await fetch(hideMessageUrl, options);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
};
|
|
|
|
const handleHideMessage = async () => {
|
|
const url = new URL(HIDE_MESSAGE_ENDPOINT);
|
|
url.searchParams.append('accessToken', accessToken);
|
|
const hideMessageUrl = url.toString();
|
|
|
|
const options = {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ idArray: [messageID] }),
|
|
};
|
|
|
|
try {
|
|
await fetch(hideMessageUrl, options);
|
|
} catch (e) {
|
|
console.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={s.icon}>
|
|
<EyeInvisibleOutlined />
|
|
</span>
|
|
Hide Message
|
|
</div>
|
|
),
|
|
key: 'hide-message',
|
|
},
|
|
{
|
|
label: (
|
|
<div>
|
|
<span className={s.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
|
|
visible={showUserDetailsModal}
|
|
footer={null}
|
|
onCancel={() => {
|
|
setShowUserDetailsModal(false);
|
|
}}
|
|
>
|
|
<ChatModerationDetailsModal />
|
|
</Modal>
|
|
</>
|
|
);
|
|
}
|