import React, { useEffect, useState } from "react"; import { FaAngleDown, FaBell, FaClock, FaPlus, FaLink } from "react-icons/fa"; import { IoTimer } from "react-icons/io5"; import { BsThreeDots } from "react-icons/bs"; import Image from "next/image"; import CreateRoom from "../Modals/CreateRoom"; enum RoomTypeFilter { all = "all", live = "live", scheduled = "scheduled", recurring = "recurring", expired = "expired", } enum RoomTimeFilter { today = "today", week = "week", month = "month", } export default function DashboardRoom() { // get rooms data realtime useEffect(() => { /** * QUERY: * all rooms in the past week * */ }); // on CTRL + Q, new tab to google meet // on CTRL + V, show modal to create meeting with the link return (
{/* modal for creating room */} {/* header */} ROOMS {/* tab pane */} All Live Scheduled Recurring Expired Week {/* all rooms */} {/* spontaneous bugs room */} {/* header */} {/* meeting details */} bug fixing were just fixing that jsx bug thats a paiiinnnn {/* badges and tags */} blockers engineering {/* room status */} live {/* room attachments */} {/* footer */} profile profile Arjun and Liam {" "} {/* live room - design meeting */} {/* header */} {/* meeting details */} Shopping Cart Experience lets finish the mockups @josh, @mark, and @arjun please step in for feedback {/* badges and tags */} design {/* room status */} live on and off all day {/* room attachments */} {/* footer */} profile Adriana {/* scheduled room - one on one */} {/* header */} {/* meeting details */} Arjun and Paul - One on one performance review {/* badges and tags */} private {/* room status */} scheduled 3ish? Ill ping you Arjun {/* footer */} {" "} {/* recurring room - dsu */} {/* header */} {/* meeting details */} Daily Standup {/* badges and tags */} scrum engineering {/* room status */} recurring 10am daily {/* footer */} {" "} {/* recurring room - demo */} {/* header */} {/* meeting details */} Sprint Demo all hands on deck...lets have fun :) {/* badges and tags */} scrum {/* room status */} recurring biweekly fridays! {/* footer */} {" "} {/* recurring room - wine wednesdays */} {/* header */} {/* meeting details */} Wine Wednesdays @JOSH YOU BETTER COME {/* badges and tags */} party 🎉 {/* room status */} recurring wednesdays 7-9pm {/* footer */}
); }