forked from rDrama/rDrama
1
0
Fork 0

Merge branch 'frost' of https://github.com/Aevann1/rDrama into frost

master
Aevann1 2022-09-25 05:23:52 +02:00
commit 1f6d3341fc
2 changed files with 24 additions and 13 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "chat", "name": "chat",
"version": "0.0.20", "version": "0.0.21",
"main": "./src/index.tsx", "main": "./src/index.tsx",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -4,27 +4,38 @@ import { UserList } from "./UserList";
import "./ChatHeading.css"; import "./ChatHeading.css";
export function ChatHeading() { export function ChatHeading() {
const { reveal } = useDrawer(); const { open, hide, reveal } = useDrawer();
const { online } = useChat(); const { online } = useChat();
const handleOpenUserListDrawer = useCallback( const handleToggleUserListDrawer = useCallback(() => {
() => if (open) {
hide();
} else {
reveal({ reveal({
title: "Users in chat", title: "Users in chat",
content: <UserList fluid={true} />, content: <UserList fluid={true} />,
}), });
[] }
); }, [open]);
return ( return (
<div className="ChatHeading"> <div className="ChatHeading">
<div /> <div />
<div> <div>
<i {open ? (
role="button" <button
className="far fa-user" className="btn btn-secondary"
onClick={handleOpenUserListDrawer} onClick={handleToggleUserListDrawer}
/> >Close</button>
<em>{online.length} users online</em> ) : (
<>
<i
role="button"
className="far fa-user"
onClick={handleToggleUserListDrawer}
/>
<em>{online.length} users online</em>
</>
)}
</div> </div>
</div> </div>
); );