|
|
import Link from "next/link"; |
|
|
import { formatDistance } from "date-fns"; |
|
|
import { EllipsisVertical, Lock, Settings, Trash } from "lucide-react"; |
|
|
|
|
|
import { Button } from "@/components/ui/button"; |
|
|
import { |
|
|
DropdownMenu, |
|
|
DropdownMenuContent, |
|
|
DropdownMenuGroup, |
|
|
DropdownMenuItem, |
|
|
DropdownMenuTrigger, |
|
|
} from "@/components/ui/dropdown-menu"; |
|
|
import { ProjectType } from "@/types"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function ProjectCard({ |
|
|
project, |
|
|
onDelete, |
|
|
}: { |
|
|
project: ProjectType; |
|
|
onDelete: () => void; |
|
|
}) { |
|
|
const handleDelete = () => { |
|
|
if ( |
|
|
confirm( |
|
|
"Are you sure you want to delete this project? This action cannot be undone." |
|
|
) |
|
|
) { |
|
|
onDelete(); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
<div className="text-neutral-200 space-y-4 group cursor-pointer"> |
|
|
<Link |
|
|
href={`/projects/${project.name}`} |
|
|
className="relative bg-neutral-900 rounded-2xl overflow-hidden h-64 lg:h-44 w-full flex items-center justify-end flex-col px-3 border border-neutral-800" |
|
|
> |
|
|
{project.private ? ( |
|
|
<div |
|
|
className={`absolute inset-0 w-full h-full flex items-center justify-center bg-gradient-to-br from-${project.cardData?.colorFrom}-600 to-${project.cardData?.colorTo}-600`} |
|
|
> |
|
|
<div className="absolute top-3 right-3 flex items-center gap-1.5 bg-black/60 backdrop-blur-sm px-3 py-1.5 rounded-full border border-white/10 shadow-lg"> |
|
|
<Lock className="w-3 h-3 text-white/90" /> |
|
|
<span className="text-white/90 text-xs font-medium tracking-wide"> |
|
|
Private |
|
|
</span> |
|
|
</div> |
|
|
<p className="text-4xl">{project.cardData?.emoji}</p> |
|
|
</div> |
|
|
) : ( |
|
|
<div className="absolute inset-0 w-full h-full overflow-hidden"> |
|
|
<iframe |
|
|
src={`https://${project.name.replaceAll( |
|
|
"/", |
|
|
"-" |
|
|
)}.static.hf.space`} |
|
|
className="w-[1200px] h-[675px] border-0 origin-top-left pointer-events-none" |
|
|
style={{ |
|
|
transform: "scale(0.5)", |
|
|
transformOrigin: "top left", |
|
|
}} |
|
|
/> |
|
|
</div> |
|
|
)} |
|
|
|
|
|
<Button |
|
|
variant="default" |
|
|
className="w-full transition-all duration-200 translate-y-full group-hover:-translate-y-3" |
|
|
> |
|
|
Open project |
|
|
</Button> |
|
|
</Link> |
|
|
<div className="flex items-start justify-between gap-3"> |
|
|
<div> |
|
|
<p className="text-neutral-200 text-base font-semibold line-clamp-1"> |
|
|
{project?.cardData?.title ?? project.name} |
|
|
</p> |
|
|
<p className="text-sm text-neutral-500"> |
|
|
Updated{" "} |
|
|
{formatDistance( |
|
|
new Date(project.updatedAt || Date.now()), |
|
|
new Date(), |
|
|
{ |
|
|
addSuffix: true, |
|
|
} |
|
|
)} |
|
|
</p> |
|
|
</div> |
|
|
<DropdownMenu> |
|
|
<DropdownMenuTrigger asChild> |
|
|
<Button variant="ghost" size="icon"> |
|
|
<EllipsisVertical className="text-neutral-400 size-5 hover:text-neutral-300 transition-colors duration-200 cursor-pointer" /> |
|
|
</Button> |
|
|
</DropdownMenuTrigger> |
|
|
<DropdownMenuContent className="w-56" align="start"> |
|
|
<DropdownMenuGroup> |
|
|
<a |
|
|
href={`https://huggingface.co/spaces/${project.name}/settings`} |
|
|
target="_blank" |
|
|
> |
|
|
<DropdownMenuItem> |
|
|
<Settings className="size-4 text-neutral-100" /> |
|
|
Project Settings |
|
|
</DropdownMenuItem> |
|
|
</a> |
|
|
<DropdownMenuItem variant="destructive" onClick={handleDelete}> |
|
|
<Trash className="size-4 text-red-500" /> |
|
|
Delete Project |
|
|
</DropdownMenuItem> |
|
|
</DropdownMenuGroup> |
|
|
</DropdownMenuContent> |
|
|
</DropdownMenu> |
|
|
</div> |
|
|
</div> |
|
|
); |
|
|
} |
|
|
|