"use client"; import { Sandbox } from "@/lib/types"; import ProjectCard from "./projectCard"; import Image from "next/image"; import ProjectCardDropdown from "./projectCard/dropdown"; import { Clock, Globe, Lock } from "lucide-react"; import Link from "next/link"; import { Card } from "../ui/card"; import { deleteSandbox, updateSandbox } from "@/lib/actions"; import { toast } from "sonner"; import { useState } from "react"; export default function DashboardProjects({ sandboxes, q, }: { sandboxes: Sandbox[]; q: string | null; }) { const [deletingId, setDeletingId] = useState(""); const onDelete = async (sandbox: Sandbox) => { setDeletingId(sandbox.id); toast(`Project ${sandbox.name} deleted.`); await deleteSandbox(sandbox.id); setTimeout(() => { // timeout to wait for revalidatePath and avoid flashing setDeletingId(""); }, 200); }; const onVisibilityChange = async (sandbox: Sandbox) => { const newVisibility = sandbox.visibility === "public" ? "private" : "public"; toast(`Project ${sandbox.name} is now ${newVisibility}.`); await updateSandbox({ id: sandbox.id, visibility: newVisibility, }); }; return (
{q && q.length > 0 ? `Showing search results for: ${q}` : "My Projects"}
{sandboxes.length > 0 ? (
{sandboxes.map((sandbox) => { if (q && q.length > 0) { if (!sandbox.name.toLowerCase().includes(q.toLowerCase())) { return null; } } return ( {/* */}
{sandbox.name}
{sandbox.visibility === "private" ? ( <> Private ) : ( <> Public )}
3d ago
{/*
*/}
); })}
) : (
You don't have any projects yet. Create one to get started!
)}
); }