98 lines
2.3 KiB
TypeScript
98 lines
2.3 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 {
|
|
shouldGenerateStaticParamsForCategory,
|
|
staticallyGenerateCategory,
|
|
} from '@/category/server';
|
|
|
|
const getPhotosFilmSimulationDataCachedCached =
|
|
cache(getPhotosFilmSimulationDataCached);
|
|
|
|
export let generateStaticParams:
|
|
(() => Promise<{ simulation: FilmSimulation }[]>) | undefined = undefined;
|
|
|
|
if (shouldGenerateStaticParamsForCategory('films', 'page')) {
|
|
generateStaticParams = () =>
|
|
staticallyGenerateCategory(
|
|
'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,
|
|
}} />
|
|
);
|
|
}
|