80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
import { Metadata } from 'next/types';
|
|
import { CameraProps, formatCameraParams } from '@/camera';
|
|
import { generateMetaForCamera } from '@/camera/meta';
|
|
import { INFINITE_SCROLL_GRID_INITIAL } from '@/photo';
|
|
import { getPhotosCameraDataCached } from '@/camera/data';
|
|
import CameraOverview from '@/camera/CameraOverview';
|
|
import { cache } from 'react';
|
|
import { getUniqueCameras } from '@/photo/db/query';
|
|
import { staticallyGenerateCategoryIfConfigured } from '@/app/static';
|
|
import { getAppText } from '@/i18n/state/server';
|
|
|
|
const getPhotosCameraDataCachedCached = cache((
|
|
make: string,
|
|
model: string,
|
|
) => getPhotosCameraDataCached(
|
|
make,
|
|
model,
|
|
INFINITE_SCROLL_GRID_INITIAL,
|
|
));
|
|
|
|
export const generateStaticParams = staticallyGenerateCategoryIfConfigured(
|
|
'cameras',
|
|
'page',
|
|
getUniqueCameras,
|
|
cameras => cameras.map(({ camera }) => formatCameraParams(camera)),
|
|
);
|
|
|
|
export async function generateMetadata({
|
|
params,
|
|
}: CameraProps): Promise<Metadata> {
|
|
const { make, model } = await params;
|
|
|
|
const [
|
|
photos,
|
|
{ count, dateRange },
|
|
camera,
|
|
] = await getPhotosCameraDataCachedCached(make, model);
|
|
|
|
const appText = await getAppText();
|
|
|
|
const {
|
|
url,
|
|
title,
|
|
description,
|
|
images,
|
|
} = generateMetaForCamera(camera, photos, appText, count, dateRange);
|
|
|
|
return {
|
|
title,
|
|
openGraph: {
|
|
title,
|
|
description,
|
|
images,
|
|
url,
|
|
},
|
|
twitter: {
|
|
images,
|
|
description,
|
|
card: 'summary_large_image',
|
|
},
|
|
description,
|
|
};
|
|
}
|
|
|
|
export default async function CameraPage({
|
|
params,
|
|
}: CameraProps) {
|
|
const { make, model } = await params;
|
|
|
|
const [
|
|
photos,
|
|
{ count, dateRange },
|
|
camera,
|
|
] = await getPhotosCameraDataCachedCached(make, model);
|
|
|
|
return (
|
|
<CameraOverview {...{ camera, photos, count, dateRange }} />
|
|
);
|
|
}
|