89 lines
2.1 KiB
TypeScript
89 lines
2.1 KiB
TypeScript
import { INFINITE_SCROLL_GRID_INITIAL } from '@/photo';
|
|
import { getUniqueFilmSimulations } from '@/photo/db/query';
|
|
import { FilmSimulation, generateMetaForFilmSimulation } from '@/simulation';
|
|
import FilmSimulationOverview from '@/simulation/FilmSimulationOverview';
|
|
import { getPhotosFilmSimulationDataCached } from '@/simulation/data';
|
|
import { Metadata } from 'next/types';
|
|
import { cache } from 'react';
|
|
import { PATH_ROOT } from '@/app/paths';
|
|
import { redirect } from 'next/navigation';
|
|
import { staticallyGenerateCategoryIfConfigured } from '@/category/server';
|
|
|
|
const getPhotosFilmSimulationDataCachedCached =
|
|
cache(getPhotosFilmSimulationDataCached);
|
|
|
|
export const generateStaticParams = staticallyGenerateCategoryIfConfigured(
|
|
'films',
|
|
'page',
|
|
getUniqueFilmSimulations,
|
|
simulations => simulations.map(({ simulation }) => ({ simulation })),
|
|
);
|
|
|
|
interface FilmSimulationProps {
|
|
params: Promise<{ simulation: FilmSimulation }>
|
|
}
|
|
|
|
export async function generateMetadata({
|
|
params,
|
|
}: FilmSimulationProps): Promise<Metadata> {
|
|
const { simulation } = await params;
|
|
|
|
const [
|
|
photos,
|
|
{ count, dateRange },
|
|
] = await getPhotosFilmSimulationDataCachedCached({
|
|
simulation,
|
|
limit: INFINITE_SCROLL_GRID_INITIAL,
|
|
});
|
|
|
|
if (photos.length === 0) { return {}; }
|
|
|
|
const {
|
|
url,
|
|
title,
|
|
description,
|
|
images,
|
|
} = generateMetaForFilmSimulation(simulation, photos, count, dateRange);
|
|
|
|
return {
|
|
title,
|
|
openGraph: {
|
|
title,
|
|
description,
|
|
images,
|
|
url,
|
|
},
|
|
twitter: {
|
|
images,
|
|
description,
|
|
card: 'summary_large_image',
|
|
},
|
|
description,
|
|
};
|
|
}
|
|
|
|
export default async function FilmSimulationPage({
|
|
params,
|
|
}: FilmSimulationProps) {
|
|
const { simulation } = await params;
|
|
|
|
const [
|
|
photos,
|
|
{ count, dateRange },
|
|
] = await getPhotosFilmSimulationDataCachedCached({
|
|
simulation,
|
|
limit: INFINITE_SCROLL_GRID_INITIAL,
|
|
});
|
|
|
|
if (photos.length === 0) { redirect(PATH_ROOT); }
|
|
|
|
return (
|
|
<FilmSimulationOverview {...{
|
|
simulation,
|
|
photos,
|
|
count,
|
|
dateRange,
|
|
}} />
|
|
);
|
|
}
|