Files
goodgo-platform/apps/web/app/[locale]/(public)/du-an/[slug]/page.tsx
Ho Ngoc Hai 580eb2a261 feat(web): residential_projects feature flag for /du-an routes (TEC-2757)
- Add useResidentialProjectsFlag hook with NEXT_PUBLIC_FEATURE_RESIDENTIAL_PROJECTS env + URL/localStorage override (mirrors AVM v2 pattern)
- Gate /du-an index (client) and /du-an/[slug] detail (server) routes via notFound() when flag disabled
- Add component tests for index page including disabled-flag notFound branch

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-18 15:13:06 +07:00

46 lines
1.4 KiB
TypeScript

import type { Metadata } from 'next';
import { notFound } from 'next/navigation';
import { DuAnDetailClient } from '@/components/du-an/du-an-detail-client';
import { fetchProjectBySlug } from '@/lib/du-an-server';
import { isResidentialProjectsEnabledServer } from '@/lib/hooks/use-residential-projects-flag';
interface PageProps {
params: Promise<{ slug: string; locale: string }>;
}
export async function generateMetadata({ params }: PageProps): Promise<Metadata> {
if (!isResidentialProjectsEnabledServer()) return { title: 'Không tìm thấy dự án' };
const { slug } = await params;
const project = await fetchProjectBySlug(slug);
if (!project) return { title: 'Không tìm thấy dự án' };
return {
title: `${project.name}${project.developer.name}`,
description: project.description?.slice(0, 160),
openGraph: {
title: project.name,
description: project.description?.slice(0, 160),
images: project.media
.filter((m) => m.type === 'image')
.slice(0, 1)
.map((m) => ({ url: m.url })),
},
};
}
export default async function DuAnDetailPage({ params }: PageProps) {
if (!isResidentialProjectsEnabledServer()) {
notFound();
}
const { slug } = await params;
const project = await fetchProjectBySlug(slug);
if (!project) {
notFound();
}
return <DuAnDetailClient project={project} />;
}