Update Rooms.tsx

This commit is contained in:
Arjun Patel
2022-01-17 15:59:02 -08:00
parent 7c2f3c1061
commit 95ee81458a
+7 -5
View File
@@ -21,7 +21,7 @@ import { Collections } from "../../services/collections";
import { useTeamDashboardContext } from "../../contexts/teamDashboardContext"; import { useTeamDashboardContext } from "../../contexts/teamDashboardContext";
import Room, { RoomStatus, RoomType } from "../../models/room"; import Room, { RoomStatus, RoomType } from "../../models/room";
import { useAuth } from "../../contexts/authContext"; import { useAuth } from "../../contexts/authContext";
import { Dropdown, Menu, Radio } from "antd"; import { Dropdown, Menu, Radio, Tooltip } from "antd";
import RoomCard from "../RoomCard"; import RoomCard from "../RoomCard";
enum RoomTypeFilter { enum RoomTypeFilter {
@@ -185,6 +185,7 @@ export default function DashboardRoom() {
<CreateRoom /> <CreateRoom />
{/* header */} {/* header */}
<Tooltip title={" archive rooms to keep your team focused"}>
<span className="flex flex-row justify-end space-x-3 pb-5 items-center"> <span className="flex flex-row justify-end space-x-3 pb-5 items-center">
<span className="flex flex-col mr-auto"> <span className="flex flex-col mr-auto">
<span className="text-white "> <span className="text-white ">
@@ -196,9 +197,7 @@ export default function DashboardRoom() {
CTRL + Q CTRL + Q
</button> </button>
</span> </span>
<span className="text-gray-300 text-xs"> <span className="text-gray-300 text-xs"></span>
archive rooms to keep your team focused
</span>
</span> </span>
<Radio.Group <Radio.Group
@@ -215,7 +214,9 @@ export default function DashboardRoom() {
</Radio.Button> </Radio.Button>
<Radio.Button value={RoomTypeFilter.live}> <Radio.Button value={RoomTypeFilter.live}>
{RoomTypeFilter.live}{" "} {RoomTypeFilter.live}{" "}
<span className="text-xs text-orange-500">{liveRooms.length}</span> <span className="text-xs text-orange-500">
{liveRooms.length}
</span>
</Radio.Button> </Radio.Button>
<Radio.Button value={RoomTypeFilter.archived}> <Radio.Button value={RoomTypeFilter.archived}>
{RoomTypeFilter.archived}{" "} {RoomTypeFilter.archived}{" "}
@@ -240,6 +241,7 @@ export default function DashboardRoom() {
<BsThreeDots className="text-xl text-white" /> <BsThreeDots className="text-xl text-white" />
</span> </span>
</Tooltip>
{/* all rooms */} {/* all rooms */}
<span className="flex flex-row flex-wrap max-h-96 overflow-auto"> <span className="flex flex-row flex-wrap max-h-96 overflow-auto">