import { RELATED_GRID_PHOTOS_TO_SHOW, descriptionForPhoto, titleForPhoto, } from '@/photo'; import { Metadata } from 'next/types'; import { redirect } from 'next/navigation'; import { PATH_ROOT, absolutePathForPhoto, absolutePathForPhotoImage, } from '@/app/path'; import PhotoDetailPage from '@/photo/PhotoDetailPage'; import { getPhotosMetaCached, getPhotosNearIdCached, } from '@/photo/cache'; import { PhotoCameraProps, cameraFromPhoto, formatCameraParams, } from '@/camera'; import { cache } from 'react'; const getPhotosNearIdCachedCached = cache(( photoId: string, make: string, model: string, ) => getPhotosNearIdCached( photoId, { camera: formatCameraParams({ make, model }), limit: RELATED_GRID_PHOTOS_TO_SHOW + 2, }, )); export async function generateMetadata({ params, }: PhotoCameraProps): Promise { const { photoId, make, model } = await params; const { photo } = await getPhotosNearIdCachedCached(photoId, make, model); if (!photo) { return {}; } const title = titleForPhoto(photo); const description = descriptionForPhoto(photo); const descriptionHtml = descriptionForPhoto(photo, true); const images = absolutePathForPhotoImage(photo); const url = absolutePathForPhoto({ photo, camera: cameraFromPhoto(photo, { make, model }), }); return { title, description: descriptionHtml, openGraph: { title, images, description, url, }, twitter: { title, description, images, card: 'summary_large_image', }, }; } export default async function PhotoCameraPage({ params, }: PhotoCameraProps) { const { photoId, make, model } = await params; const { photo, photos, photosGrid, indexNumber } = await getPhotosNearIdCachedCached(photoId, make, model); if (!photo) { redirect(PATH_ROOT); } const camera = cameraFromPhoto(photo, { make, model }); const { count, dateRange } = await getPhotosMetaCached({ camera }); return ( ); }