48 lines
1.6 KiB
TypeScript
48 lines
1.6 KiB
TypeScript
|
import { Sandbox } from "@/lib/types"
|
||
|
import ProjectCard from "./projectCard"
|
||
|
import Image from "next/image"
|
||
|
import ProjectCardDropdown from "./projectCard/dropdown"
|
||
|
import { Clock, Globe } from "lucide-react"
|
||
|
|
||
|
export default function DashboardProjects({
|
||
|
sandboxes,
|
||
|
}: {
|
||
|
sandboxes: Sandbox[]
|
||
|
}) {
|
||
|
return (
|
||
|
<div className="grow p-4 flex flex-col">
|
||
|
<div className="text-xl font-medium mb-8">My Projects</div>
|
||
|
<div className="grow w-full grid lg:grid-cols-3 2xl:grid-cols-4 md:grid-cols-2 gap-4">
|
||
|
{sandboxes.map((sandbox) => (
|
||
|
<ProjectCard key={sandbox.id} id={sandbox.id}>
|
||
|
<div className="space-x-2 flex items-center justify-start w-full">
|
||
|
<Image
|
||
|
alt=""
|
||
|
src={
|
||
|
sandbox.type === "react"
|
||
|
? "/project-icons/react.svg"
|
||
|
: "/project-icons/node.svg"
|
||
|
}
|
||
|
width={20}
|
||
|
height={20}
|
||
|
/>
|
||
|
<div className="font-medium static whitespace-nowrap w-full text-ellipsis overflow-hidden">
|
||
|
{sandbox.name}
|
||
|
</div>
|
||
|
<ProjectCardDropdown sandbox={sandbox} />
|
||
|
</div>
|
||
|
<div className="flex flex-col text-muted-foreground space-y-0.5 text-sm">
|
||
|
<div className="flex items-center">
|
||
|
<Globe className="w-3 h-3 mr-2" /> Public
|
||
|
</div>
|
||
|
<div className="flex items-center">
|
||
|
<Clock className="w-3 h-3 mr-2" /> 3d ago
|
||
|
</div>
|
||
|
</div>
|
||
|
</ProjectCard>
|
||
|
))}
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|