mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
"use client"
|
|
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
|
import { File } from "@/prisma/client"
|
|
import { Cake, FilePlus } from "lucide-react"
|
|
import Link from "next/link"
|
|
|
|
export default function DashboardUnsortedWidget({ files }: { files: File[] }) {
|
|
return (
|
|
<Card className="w-full h-full sm:max-w-xs bg-accent">
|
|
<CardHeader>
|
|
<CardTitle>
|
|
<Link href="/unsorted">
|
|
{files.length > 0 ? `${files.length} unsorted files` : "No unsorted files"} →
|
|
</Link>
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex flex-col gap-2">
|
|
{files.slice(0, 3).map((file) => (
|
|
<Link
|
|
href={`/unsorted/#${file.id}`}
|
|
key={file.id}
|
|
className="rounded-md p-2 bg-background hover:bg-black hover:text-white"
|
|
>
|
|
<div className="flex flex-row gap-2">
|
|
<FilePlus className="w-8 h-8" />
|
|
<div className="grid flex-1 text-left leading-tight">
|
|
<span className="truncate text-xs font-semibold">{file.filename}</span>
|
|
<span className="truncate text-xs">{file.mimetype}</span>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
))}
|
|
{files.length == 0 && (
|
|
<div className="flex flex-col items-center justify-center gap-2 text-sm h-full min-h-[100px] opacity-30">
|
|
<Cake className="w-8 h-8" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|