REFACTORED - Flatten portfolio category routes to /portfolio/[slug]

Merge the category and project routes under a single /portfolio/[slug]
segment via resolvePortfolioSlug (category wins over project on a slug
clash). Removes the /portfolio/category/... prefix from links, redirect,
and sitemap. Adds resolver integration tests.
This commit is contained in:
moh
2026-09-20 18:53:48 +02:00
parent 5b019052b1
commit 3f96abc60f
9 changed files with 133 additions and 136 deletions
+65 -14
View File
@@ -4,16 +4,20 @@ import { notFound } from "next/navigation";
import { Container } from "@/components/layout/container"; import { Container } from "@/components/layout/container";
import { PageHero } from "@/components/layout/page-hero"; import { PageHero } from "@/components/layout/page-hero";
import { PortfolioCategoryFilter } from "@/components/site/portfolio-category-filter";
import { PortfolioProjectDetail } from "@/components/site/portfolio-project-detail"; import { PortfolioProjectDetail } from "@/components/site/portfolio-project-detail";
import { PortfolioProjectGrid } from "@/components/site/portfolio-project-grid";
import { getSiteSettings } from "@/lib/app-config"; import { getSiteSettings } from "@/lib/app-config";
import { buildLocalizedMetadata } from "@/lib/metadata"; import { buildLocalizedMetadata } from "@/lib/metadata";
import { resolveLocale } from "@/lib/locale"; import { resolveLocale } from "@/lib/locale";
import { import {
getActivePortfolioCategories,
getLocalizedValue, getLocalizedValue,
getPublishedPortfolioProjectBySlug, getPublishedPortfolioProjects,
resolvePortfolioSlug,
} from "@/lib/portfolio"; } from "@/lib/portfolio";
type PortfolioItemPageProps = { type PortfolioSlugPageProps = {
params: Promise<{ params: Promise<{
locale: string; locale: string;
slug: string; slug: string;
@@ -22,41 +26,88 @@ type PortfolioItemPageProps = {
export const dynamic = "force-dynamic"; export const dynamic = "force-dynamic";
export async function generateMetadata({ params }: PortfolioItemPageProps): Promise<Metadata> { export async function generateMetadata({ params }: PortfolioSlugPageProps): Promise<Metadata> {
const { slug } = await params; const { slug } = await params;
const siteSettings = await getSiteSettings(); const siteSettings = await getSiteSettings();
const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale); const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale);
const item = await getPublishedPortfolioProjectBySlug(slug); const resolved = await resolvePortfolioSlug(slug);
if (!item) { if (!resolved) {
const t = await getTranslations({ locale: localeKey, namespace: "portfolioPage" });
return await buildLocalizedMetadata({ return await buildLocalizedMetadata({
locale: localeKey, locale: localeKey,
pathname: `/portfolio/${slug}`, pathname: `/portfolio/${slug}`,
title: "Portfolio", title: t("title"),
description: "Portfolio item", description: t("intro"),
});
}
if (resolved.kind === "category") {
const t = await getTranslations({ locale: localeKey, namespace: "portfolioPage" });
return await buildLocalizedMetadata({
locale: localeKey,
pathname: `/portfolio/${slug}`,
title: getLocalizedValue(resolved.category.name, localeKey),
description: getLocalizedValue(resolved.category.description, localeKey) || t("intro"),
}); });
} }
return await buildLocalizedMetadata({ return await buildLocalizedMetadata({
locale: localeKey, locale: localeKey,
pathname: `/portfolio/${slug}`, pathname: `/portfolio/${slug}`,
title: getLocalizedValue(item.title, localeKey), title: getLocalizedValue(resolved.project.title, localeKey),
description: getLocalizedValue(item.summary, localeKey), description: getLocalizedValue(resolved.project.summary, localeKey),
}); });
} }
export default async function PortfolioItemPage({ export default async function PortfolioSlugPage({ params }: PortfolioSlugPageProps) {
params,
}: PortfolioItemPageProps) {
const { slug } = await params; const { slug } = await params;
const siteSettings = await getSiteSettings(); const siteSettings = await getSiteSettings();
const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale); const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale);
const item = await getPublishedPortfolioProjectBySlug(slug); const resolved = await resolvePortfolioSlug(slug);
if (!item) { if (!resolved) {
notFound(); notFound();
} }
if (resolved.kind === "category") {
const { category } = resolved;
const [categories, projects] = await Promise.all([
getActivePortfolioCategories(),
getPublishedPortfolioProjects({ categorySlug: slug }),
]);
const t = await getTranslations({ locale: localeKey, namespace: "portfolioPage" });
return (
<>
<PageHero
locale={localeKey}
badge={t("heroBadge")}
title={getLocalizedValue(category.name, localeKey)}
description={getLocalizedValue(category.description, localeKey) || t("intro")}
/>
<Container className="flex flex-col gap-section pb-12 lg:pb-16">
<PortfolioCategoryFilter
locale={localeKey}
defaultLocale={siteSettings.defaultLocale}
categories={categories}
allLabel={t("all")}
activeCategorySlug={category.slug}
/>
<PortfolioProjectGrid
locale={localeKey}
defaultLocale={siteSettings.defaultLocale}
projects={projects}
emptyLabel={t("empty")}
openLabel={t("open")}
/>
</Container>
</>
);
}
const { project: item } = resolved;
const t = await getTranslations({ locale: localeKey, namespace: "portfolioDetail" }); const t = await getTranslations({ locale: localeKey, namespace: "portfolioDetail" });
const title = getLocalizedValue(item.title, localeKey); const title = getLocalizedValue(item.title, localeKey);
const category = getLocalizedValue(item.category.name, localeKey); const category = getLocalizedValue(item.category.name, localeKey);
@@ -1,96 +0,0 @@
import type { Metadata } from "next";
import { getLocale, getTranslations } from "next-intl/server";
import { notFound } from "next/navigation";
import { Container } from "@/components/layout/container";
import { PageHero } from "@/components/layout/page-hero";
import { PortfolioCategoryFilter } from "@/components/site/portfolio-category-filter";
import { PortfolioProjectGrid } from "@/components/site/portfolio-project-grid";
import { getSiteSettings } from "@/lib/app-config";
import { buildLocalizedMetadata } from "@/lib/metadata";
import { resolveLocale } from "@/lib/locale";
import {
getActivePortfolioCategories,
getActivePortfolioCategoryBySlug,
getLocalizedValue,
getPublishedPortfolioProjects,
} from "@/lib/portfolio";
type PortfolioCategoryPageProps = {
params: Promise<{
locale: string;
slug: string;
}>;
};
export const dynamic = "force-dynamic";
export async function generateMetadata({ params }: PortfolioCategoryPageProps): Promise<Metadata> {
const { slug } = await params;
const siteSettings = await getSiteSettings();
const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale);
const t = await getTranslations({ locale: localeKey, namespace: "portfolioPage" });
const category = await getActivePortfolioCategoryBySlug(slug);
if (!category) {
return await buildLocalizedMetadata({
locale: localeKey,
pathname: `/portfolio/category/${slug}`,
title: t("title"),
description: t("intro"),
});
}
return await buildLocalizedMetadata({
locale: localeKey,
pathname: `/portfolio/category/${slug}`,
title: getLocalizedValue(category.name, localeKey),
description: getLocalizedValue(category.description, localeKey) || t("intro"),
});
}
export default async function PortfolioCategoryPage({
params,
}: PortfolioCategoryPageProps) {
const { slug } = await params;
const [siteSettings, categories, category, projects] = await Promise.all([
getSiteSettings(),
getActivePortfolioCategories(),
getActivePortfolioCategoryBySlug(slug),
getPublishedPortfolioProjects({ categorySlug: slug }),
]);
const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale);
const t = await getTranslations({ locale: localeKey, namespace: "portfolioPage" });
if (!category) {
notFound();
}
return (
<>
<PageHero
locale={localeKey}
badge={t("heroBadge")}
title={getLocalizedValue(category.name, localeKey)}
description={getLocalizedValue(category.description, localeKey) || t("intro")}
/>
<Container className="flex flex-col gap-section pb-12 lg:pb-16">
<PortfolioCategoryFilter
locale={localeKey}
defaultLocale={siteSettings.defaultLocale}
categories={categories}
allLabel={t("all")}
activeCategorySlug={category.slug}
/>
<PortfolioProjectGrid
locale={localeKey}
defaultLocale={siteSettings.defaultLocale}
projects={projects}
emptyLabel={t("empty")}
openLabel={t("open")}
/>
</Container>
</>
);
}
@@ -1,21 +0,0 @@
import { getLocale } from "next-intl/server";
import { permanentRedirect } from "next/navigation";
import { getSiteSettings } from "@/lib/app-config";
import { getLocalizedPath, resolveLocale } from "@/lib/locale";
type PortfolioCategoryIndexPageProps = {
params: Promise<{
locale: string;
}>;
};
export default async function PortfolioCategoryIndexPage({
params,
}: PortfolioCategoryIndexPageProps) {
await params;
const siteSettings = await getSiteSettings();
const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale);
permanentRedirect(getLocalizedPath(localeKey, "/portfolio", siteSettings.defaultLocale));
}
+1 -1
View File
@@ -50,7 +50,7 @@ export default async function PortfolioPage({
const selectedCategory = resolvedSearchParams?.category ?? ""; const selectedCategory = resolvedSearchParams?.category ?? "";
if (selectedCategory) { if (selectedCategory) {
redirect(getLocalizedPath(localeKey, `/portfolio/category/${selectedCategory}`, siteSettings.defaultLocale)); redirect(getLocalizedPath(localeKey, `/portfolio/${selectedCategory}`, siteSettings.defaultLocale));
} }
const [categories, projects] = await Promise.all([ const [categories, projects] = await Promise.all([
+1 -1
View File
@@ -57,7 +57,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
priority: 0.9, priority: 0.9,
}), }),
...categories.flatMap((category) => ...categories.flatMap((category) =>
buildLocalizedEntries(`/portfolio/category/${category.slug}`, siteSettings.defaultLocale, { buildLocalizedEntries(`/portfolio/${category.slug}`, siteSettings.defaultLocale, {
changeFrequency: "weekly", changeFrequency: "weekly",
priority: 0.8, priority: 0.8,
}), }),
@@ -30,7 +30,7 @@ export function PortfolioCategoryFilter({
{categories.map((category) => ( {categories.map((category) => (
<CategoryLink <CategoryLink
key={category.id} key={category.id}
href={getLocalizedPath(locale, `/portfolio/category/${category.slug}`, defaultLocale)} href={getLocalizedPath(locale, `/portfolio/${category.slug}`, defaultLocale)}
label={getLocalizedValue(category.name, locale)} label={getLocalizedValue(category.name, locale)}
active={activeCategorySlug === category.slug} active={activeCategorySlug === category.slug}
/> />
+24
View File
@@ -285,6 +285,30 @@ export const getPublishedPortfolioProjectBySlug = cache(async function (slug: st
return mapProject(project); return mapProject(project);
}); });
export type ResolvedPortfolioSlug =
| { kind: "category"; category: PortfolioCategoryView }
| { kind: "project"; project: PortfolioProjectView }
| null;
/**
* Resolves a `/portfolio/[slug]` segment to either a category or a project.
* Categories take precedence so `/portfolio/web` shows the category listing;
* a project slug only wins when no active category shares that slug.
*/
export async function resolvePortfolioSlug(slug: string): Promise<ResolvedPortfolioSlug> {
const category = await getActivePortfolioCategoryBySlug(slug);
if (category) {
return { kind: "category", category };
}
const project = await getPublishedPortfolioProjectBySlug(slug);
if (project) {
return { kind: "project", project };
}
return null;
}
export async function getAdminPortfolioProjectById(id: string) { export async function getAdminPortfolioProjectById(id: string) {
const project = await db.query.portfolioProject.findFirst({ const project = await db.query.portfolioProject.findFirst({
where: eq(portfolioProject.id, id), where: eq(portfolioProject.id, id),
@@ -35,7 +35,7 @@ describe("PortfolioCategoryFilter", () => {
expect(screen.getByRole("link", { name: "All" })).toHaveAttribute("href", "/en/portfolio"); expect(screen.getByRole("link", { name: "All" })).toHaveAttribute("href", "/en/portfolio");
expect(screen.getByRole("link", { name: "Branding" })).toHaveAttribute( expect(screen.getByRole("link", { name: "Branding" })).toHaveAttribute(
"href", "href",
"/en/portfolio/category/branding", "/en/portfolio/branding",
); );
}); });
@@ -51,7 +51,7 @@ describe("PortfolioCategoryFilter", () => {
// German locale on the default locale -> unprefixed paths and German labels // German locale on the default locale -> unprefixed paths and German labels
expect(screen.getByRole("link", { name: "Marke" })).toHaveAttribute( expect(screen.getByRole("link", { name: "Marke" })).toHaveAttribute(
"href", "href",
"/portfolio/category/branding", "/portfolio/branding",
); );
expect(screen.getByRole("link", { name: "Alle" })).toHaveAttribute("href", "/portfolio"); expect(screen.getByRole("link", { name: "Alle" })).toHaveAttribute("href", "/portfolio");
}); });
+39
View File
@@ -8,6 +8,7 @@ import {
getAdminPortfolioProjects, getAdminPortfolioProjects,
getPublishedPortfolioProjectBySlug, getPublishedPortfolioProjectBySlug,
getPublishedPortfolioProjects, getPublishedPortfolioProjects,
resolvePortfolioSlug,
} from "@/lib/portfolio"; } from "@/lib/portfolio";
import { eq } from "drizzle-orm"; import { eq } from "drizzle-orm";
@@ -124,6 +125,44 @@ describe("published projects", () => {
}); });
}); });
describe("resolvePortfolioSlug", () => {
it("resolves an active category slug to a category", async () => {
await createCategory({ slug: "web", isActive: true });
const resolved = await resolvePortfolioSlug("web");
expect(resolved?.kind).toBe("category");
expect(resolved?.kind === "category" && resolved.category.slug).toBe("web");
});
it("resolves a published project slug to a project", async () => {
const cat = await createCategory({ isActive: true });
await createProject({ categoryId: cat.id, slug: "my-project", isPublished: true });
const resolved = await resolvePortfolioSlug("my-project");
expect(resolved?.kind).toBe("project");
expect(resolved?.kind === "project" && resolved.project.slug).toBe("my-project");
});
it("prefers the category when a category and a project share a slug", async () => {
const cat = await createCategory({ slug: "shared", isActive: true });
await createProject({ categoryId: cat.id, slug: "shared", isPublished: true });
const resolved = await resolvePortfolioSlug("shared");
expect(resolved?.kind).toBe("category");
});
it("ignores an inactive category and falls back to a matching project", async () => {
// An inactive category named "hidden" must not shadow a published project "hidden".
await createCategory({ slug: "hidden", isActive: false });
const activeCat = await createCategory({ isActive: true });
await createProject({ categoryId: activeCat.id, slug: "hidden", isPublished: true });
const resolved = await resolvePortfolioSlug("hidden");
expect(resolved?.kind).toBe("project");
expect(resolved?.kind === "project" && resolved.project.slug).toBe("hidden");
});
it("returns null for an unknown slug", async () => {
expect(await resolvePortfolioSlug("does-not-exist")).toBeNull();
});
});
describe("referential integrity", () => { describe("referential integrity", () => {
it("restricts deleting a category that still has projects", async () => { it("restricts deleting a category that still has projects", async () => {
const cat = await createCategory(); const cat = await createCategory();