41 lines
996 B
TypeScript
41 lines
996 B
TypeScript
import { getPhotosCached } from '@/photo/cache';
|
|
import {
|
|
IMAGE_OG_DIMENSION_SMALL,
|
|
MAX_PHOTOS_TO_SHOW_OG,
|
|
} from '@/image-response';
|
|
import HomeImageResponse from '@/app/HomeImageResponse';
|
|
import { getIBMPlexMono } from '@/app/font';
|
|
import { getImageResponseCacheControlHeaders } from '@/image-response/cache';
|
|
import { APP_OG_IMAGE_QUERY_OPTIONS } from '@/feed';
|
|
import { ImageResponse } from 'next/og';
|
|
|
|
export const dynamic = 'force-static';
|
|
|
|
export async function GET() {
|
|
const [
|
|
photos,
|
|
headers,
|
|
{ fontFamily, fonts },
|
|
] = await Promise.all([
|
|
getPhotosCached({
|
|
...APP_OG_IMAGE_QUERY_OPTIONS,
|
|
limit: MAX_PHOTOS_TO_SHOW_OG,
|
|
})
|
|
.catch(() => []),
|
|
getImageResponseCacheControlHeaders(),
|
|
getIBMPlexMono(),
|
|
]);
|
|
|
|
const { width, height } = IMAGE_OG_DIMENSION_SMALL;
|
|
|
|
return new ImageResponse(
|
|
<HomeImageResponse {...{
|
|
photos,
|
|
width,
|
|
height,
|
|
fontFamily,
|
|
}}/>,
|
|
{ width, height, headers, fonts },
|
|
);
|
|
}
|