Files
edubox/server/app/dashboard/templates/page.tsx
2026-06-06 19:55:41 +00:00

62 lines
2.3 KiB
TypeScript

import { prisma } from "@/lib/prisma";
import { getServerSession } from "next-auth/next";
import { authOptions } from "@/lib/auth-config";
import { redirect } from "next/navigation";
import { Table, TableHeader, TableBody, TableRow, TableHead, TableCell } from "@/components/ui/table";
import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
export const dynamic = "force-dynamic";
export default async function TemplatesPage() {
const session = await getServerSession(authOptions);
if (!session?.user) redirect("/login");
const establishmentId = session.user.establishmentId;
const templates = await prisma.template.findMany({
where: { OR: [{ isPublic: true }, ...(establishmentId ? [{ establishmentId }] : [])] },
orderBy: { createdAt: "desc" },
});
return (
<div className="space-y-6">
<h1 className="text-3xl font-bold">Templates</h1>
<Card>
<CardContent className="pt-6">
<Table>
<TableHeader>
<TableRow>
<TableHead>Nom</TableHead>
<TableHead>Type</TableHead>
<TableHead>Image Docker</TableHead>
<TableHead>Visibilité</TableHead>
<TableHead>Créé par</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{templates.map((t) => (
<TableRow key={t.id}>
<TableCell className="font-medium">{t.name}</TableCell>
<TableCell>
<Badge variant="secondary">{t.type}</Badge>
</TableCell>
<TableCell>{t.dockerImage}</TableCell>
<TableCell>
<Badge variant={t.isPublic ? "success" : "outline"}>{t.isPublic ? "Public" : "Privé"}</Badge>
</TableCell>
<TableCell>{t.createdBy}</TableCell>
</TableRow>
))}
{templates.length === 0 && (
<TableRow>
<TableCell colSpan={5} className="text-center text-muted-foreground">Aucun template</TableCell>
</TableRow>
)}
</TableBody>
</Table>
</CardContent>
</Card>
</div>
);
}