92 lines
2.7 KiB
TypeScript
Raw Normal View History

2024-04-16 16:25:21 -04:00
"use client"
import CustomButton from "@/components/ui/customButton"
import { Button } from "@/components/ui/button"
import {
2024-04-16 16:57:15 -04:00
Clock,
2024-04-16 16:25:21 -04:00
Code2,
2024-04-18 03:06:51 -04:00
Ellipsis,
2024-04-16 16:25:21 -04:00
FolderDot,
2024-04-16 16:57:15 -04:00
Globe,
2024-04-16 16:25:21 -04:00
HelpCircle,
Plus,
Settings,
Users,
} from "lucide-react"
import { useState } from "react"
2024-04-16 16:57:15 -04:00
import ProjectCard from "./projectCard"
import { Sandbox } from "@/lib/types"
2024-04-18 03:06:51 -04:00
import Image from "next/image"
import ProjectCardDropdown from "./projectCard/dropdown"
2024-04-18 14:42:47 -04:00
import DashboardProjects from "./projects"
import DashboardSharedWithMe from "./shared"
2024-04-16 16:25:21 -04:00
type TScreen = "projects" | "shared" | "settings" | "search"
export default function Dashboard({ sandboxes }: { sandboxes: Sandbox[] }) {
2024-04-16 16:25:21 -04:00
const [screen, setScreen] = useState<TScreen>("projects")
const activeScreen = (s: TScreen) => {
if (screen === s) return "justify-start"
else return "justify-start font-normal text-muted-foreground"
}
return (
<div className="flex grow w-full">
2024-04-16 16:57:15 -04:00
<div className="w-56 shrink-0 border-r border-border p-4 justify-between flex flex-col">
2024-04-16 16:25:21 -04:00
<div className="flex flex-col">
<CustomButton className="mb-4">
<Plus className="w-4 h-4 mr-2" />
New Project
</CustomButton>
<Button
variant="ghost"
onClick={() => setScreen("projects")}
className={activeScreen("projects")}
>
<FolderDot className="w-4 h-4 mr-2" />
My Projects
</Button>
<Button
variant="ghost"
onClick={() => setScreen("shared")}
className={activeScreen("shared")}
>
<Users className="w-4 h-4 mr-2" />
2024-04-18 14:42:47 -04:00
Shared With Me
2024-04-16 16:25:21 -04:00
</Button>
<Button
variant="ghost"
onClick={() => setScreen("settings")}
className={activeScreen("settings")}
>
<Settings className="w-4 h-4 mr-2" />
Settings
</Button>
</div>
<div className="flex flex-col">
<Button
variant="ghost"
className="justify-start font-normal text-muted-foreground"
>
<Code2 className="w-4 h-4 mr-2" />
GitHub Repository
</Button>
<Button
variant="ghost"
className="justify-start font-normal text-muted-foreground"
>
<HelpCircle className="w-4 h-4 mr-2" />
About
</Button>
</div>
</div>
2024-04-18 03:06:51 -04:00
{screen === "projects" ? (
2024-04-18 14:42:47 -04:00
<DashboardProjects sandboxes={sandboxes} />
) : screen === "shared" ? (
<DashboardSharedWithMe sandboxes={sandboxes} />
) : screen === "settings" ? null : null}
2024-04-16 16:25:21 -04:00
</div>
)
}