80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
import { RootDashboardShell } from "@/components/root/root-dashboard-shell";
|
|
import { PortfolioProjectsOverview } from "@/components/root/portfolio-projects-overview";
|
|
import { clearAdminSessionCookie, isAdminAuthenticated } from "@/lib/admin-auth";
|
|
import { getAdminPortfolioCategories, getAdminPortfolioProjects } from "@/lib/portfolio";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
const copy = {
|
|
title: "Portfolio",
|
|
subtitle: "Zentrale Steuerung fuer Projekte, Inhalte und Medien.",
|
|
overview: "Uebersicht",
|
|
maintenance: "Wartungsmodus",
|
|
uiKit: "UI Kit",
|
|
media: "Media",
|
|
siteSettings: "Settings",
|
|
portfolio: "Portfolio",
|
|
logout: "Ausloggen",
|
|
backToSite: "Zur Website",
|
|
};
|
|
|
|
type RootPortfolioPageProps = {
|
|
searchParams?: Promise<{
|
|
category?: string;
|
|
status?: "all" | "draft" | "published";
|
|
success?: string;
|
|
error?: string;
|
|
}>;
|
|
};
|
|
|
|
export default async function RootPortfolioPage({ searchParams }: RootPortfolioPageProps) {
|
|
const resolvedSearchParams = await searchParams;
|
|
|
|
if (!(await isAdminAuthenticated())) {
|
|
redirect("/");
|
|
}
|
|
|
|
async function logoutAction() {
|
|
"use server";
|
|
|
|
await clearAdminSessionCookie();
|
|
redirect("/");
|
|
}
|
|
|
|
const selectedCategory = resolvedSearchParams?.category && resolvedSearchParams.category !== "__all__"
|
|
? resolvedSearchParams.category
|
|
: "";
|
|
const selectedStatus = resolvedSearchParams?.status === "draft" || resolvedSearchParams?.status === "published"
|
|
? resolvedSearchParams.status
|
|
: "all";
|
|
const [categories, projects] = await Promise.all([
|
|
getAdminPortfolioCategories(),
|
|
getAdminPortfolioProjects({
|
|
categoryId: selectedCategory || undefined,
|
|
status: selectedStatus,
|
|
}),
|
|
]);
|
|
|
|
return (
|
|
<RootDashboardShell
|
|
copy={copy}
|
|
active="portfolio"
|
|
portfolioChild="overview"
|
|
logoutAction={logoutAction}
|
|
headerTitle={copy.title}
|
|
headerDescription={copy.subtitle}
|
|
>
|
|
<div className="space-y-6">
|
|
<PortfolioProjectsOverview
|
|
categories={categories}
|
|
projects={projects}
|
|
selectedCategory={selectedCategory}
|
|
selectedStatus={selectedStatus}
|
|
/>
|
|
</div>
|
|
</RootDashboardShell>
|
|
);
|
|
}
|