import { Avatar, Badge, Collapse, Divider, Dropdown, Menu, Tooltip, } from "antd"; import { useRouter } from "next/router"; import { useRef } from "react"; import { GlobalHotKeys, KeyMap } from "react-hotkeys"; import { FaAngleDown, FaAngleRight, FaAtlassian, FaCheck, FaCheckDouble, FaCircle, FaCode, FaDotCircle, FaGithub, FaGlobe, FaGoogleDrive, FaGripHorizontal, FaHeadphones, FaImage, FaImages, FaLayerGroup, FaMicrophone, FaMicrophoneAlt, FaPhoneSlash, FaPlay, FaPlus, FaRegArrowAltCircleDown, FaRegClock, FaRocket, FaSearch, FaStream, FaThumbtack, FaUser, FaWalking, } from "react-icons/fa"; import { HiSpeakerphone } from "react-icons/hi"; import MainLogo from "../components/MainLogo"; import UserStatusBubble from "../components/UserStatusBubble"; import { UserStatus } from "../models/user"; const { Panel } = Collapse; export default function Me() { return (
); } function Header() { const router = useRouter(); const UserMenu = ( router.push("/teams/profile")} icon={} > window.open("/teams", "_self")} key={"team hub"} icon={} > console.log("sign out")}> ); const inputRef = useRef(); const selectSearch = () => { inputRef.current.focus(); }; const keyMap: KeyMap = { SELECT_SEARCH: { name: "select search to start searching", sequence: "/", action: "keyup", }, }; const handlers = { SELECT_SEARCH: selectSearch, }; return (
{/* search bar */}
{/* controls */}
{/* profile section */}
); } function Sidebar() { return (
{/* new button */} {/* navigation items */}
Todo 4 Priority new 3 Later 1 Done Drawer new Rooms new
{/* Live Rooms */}
{/* section title */} Live {/* list of current rooms */} K } /> } /> Cafeteria Chillin and Coding
{/* pinned items */}
{/* section title */} Pinned {/* pinned drawer items */} {/* list of pinned convos */} Josh engineer Mark architect 2 Sydney designer 3 Jessica recruiter 4 General 5 K } /> } /> } /> } /> Engineering 5
); } function Convos() { return (
{/* Today */} Today {/* engineering */} K } /> } /> } /> } /> Engineering {`Josh: "let's just figure out how to finish the rest of the "`} 9:00am {/* actions */} {/* general */} General You spoke 2 hours ago 7:22am {/* actions */} {/* one on one chat with sydney */} Sydney {`"Did you ever figure out that problem with the "`} 6:50am {/* actions */} Last 7 Days Justin {`"Here's a quick github link for that library you were looking for"`} 6:50am {/* actions */} Steph and Lee {`"Let's hop into a room to discuss this sometime this afternoon..."`} 6:50am {/* actions */} Earlier This Month November 2021 {"That's all"}
); }