Vercel/app/year/[year]/[photoId]/page.tsx
Sam Becker 646f32e642
Rich sort controls (#283)
* Generalize app switcher menus

* Organize sort module

* Build configuration for nav sort control

* Refine sort menu styles

* Upgrade next.js

* Reset custom sort when clicking grid/full a second time

* Light up sort button when overridden
2025-07-15 22:43:36 -05:00

87 lines
1.9 KiB
TypeScript

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 { cache } from 'react';
const getPhotosNearIdCachedCached = cache((photoId: string, year: string) =>
getPhotosNearIdCached(
photoId,
{ year, limit: RELATED_GRID_PHOTOS_TO_SHOW + 2 },
));
interface PhotoYearProps {
params: Promise<{ photoId: string, year: string }>
}
export async function generateMetadata({
params,
}: PhotoYearProps): Promise<Metadata> {
const { photoId, year } = await params;
const { photo } = await getPhotosNearIdCachedCached(photoId, year);
if (!photo) { return {}; }
const title = titleForPhoto(photo);
const description = descriptionForPhoto(photo);
const descriptionHtml = descriptionForPhoto(photo, true);
const images = absolutePathForPhotoImage(photo);
const url = absolutePathForPhoto({ photo, year });
return {
title,
description: descriptionHtml,
openGraph: {
title,
images,
description,
url,
},
twitter: {
title,
description,
images,
card: 'summary_large_image',
},
};
}
export default async function PhotoYearPage({
params,
}: PhotoYearProps) {
const { photoId, year } = await params;
const { photo, photos, photosGrid, indexNumber } =
await getPhotosNearIdCachedCached(photoId, year);
if (!photo) { redirect(PATH_ROOT); }
const { count, dateRange } = await getPhotosMetaCached({ year: year });
return (
<PhotoDetailPage {...{
photo,
photos,
photosGrid,
year,
indexNumber,
count,
dateRange,
}} />
);
}