8 changed files with 202 additions and 16 deletions
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */ |
||||
interface Props {} |
||||
|
||||
export default function ChatModerationActionMenu(props: Props) { |
||||
return <div>Moderation popup menu goes here</div>; |
||||
} |
||||
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
.icon { |
||||
padding-right: 10px; |
||||
} |
||||
@ -0,0 +1,153 @@
@@ -0,0 +1,153 @@
|
||||
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> |
||||
</> |
||||
); |
||||
} |
||||
@ -0,0 +1,10 @@
@@ -0,0 +1,10 @@
|
||||
.modalContainer { |
||||
padding: 10px; |
||||
} |
||||
|
||||
.chatHistory { |
||||
margin: 10px; |
||||
padding: 15px; |
||||
border: 1px solid #ccc; |
||||
border-radius: 5px; |
||||
} |
||||
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
import { Col, Row } from 'antd'; |
||||
import s from './ChatModerationDetailsModal.module.scss'; |
||||
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */ |
||||
interface Props { |
||||
// userID: string;
|
||||
} |
||||
|
||||
export default function ChatModerationDetailsModal(props: Props) { |
||||
return ( |
||||
<div className={s.modalContainer}> |
||||
<Row justify="space-around" align="middle"> |
||||
<Col span={12}>User created</Col> |
||||
<Col span={12}>xxxx</Col> |
||||
</Row> |
||||
|
||||
<Row justify="space-around" align="middle"> |
||||
<Col span={12}>Previous names</Col> |
||||
<Col span={12}>xxxx</Col> |
||||
</Row> |
||||
|
||||
<h1>Recent Chat Messages</h1> |
||||
|
||||
<div className={s.chatHistory} /> |
||||
</div> |
||||
); |
||||
} |
||||
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */ |
||||
interface Props {} |
||||
|
||||
export default function ChatModerationDetailsModal(props: Props) { |
||||
return <div>Moderation details modal goes here</div>; |
||||
} |
||||
Loading…
Reference in new issue