* Add tooltip to 'hidden' checkbox * Refine checkbox UI * Allow photos to be excluded from main feeds * Fix footer grid in photos excluded from feed * Apply feed exclusion from batch upload * Scrub final hidden/private language * Add visibility icons to admin photo menu
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { generateOgImageMetaForPhotos } from '@/photo';
|
|
import PhotosEmptyState from '@/photo/PhotosEmptyState';
|
|
import { Metadata } from 'next/types';
|
|
import { getPhotos } from '@/photo/db/query';
|
|
import { cache } from 'react';
|
|
import PhotoGridPage from '@/photo/PhotoGridPage';
|
|
import { getDataForCategoriesCached } from '@/category/cache';
|
|
import { getPhotosMetaCached } from '@/photo/cache';
|
|
import { USER_DEFAULT_SORT_OPTIONS } from '@/app/config';
|
|
import { FEED_META_QUERY_OPTIONS, getFeedQueryOptions } from '@/feed';
|
|
|
|
export const dynamic = 'force-static';
|
|
export const maxDuration = 60;
|
|
|
|
const getPhotosCached = cache(() => getPhotos(getFeedQueryOptions({
|
|
isGrid: true,
|
|
})));
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
const photos = await getPhotosCached()
|
|
.catch(() => []);
|
|
return generateOgImageMetaForPhotos(photos);
|
|
}
|
|
|
|
export default async function GridPage() {
|
|
const [
|
|
photos,
|
|
photosCount,
|
|
categories,
|
|
] = await Promise.all([
|
|
getPhotosCached()
|
|
.catch(() => []),
|
|
getPhotosMetaCached(FEED_META_QUERY_OPTIONS)
|
|
.then(({ count }) => count)
|
|
.catch(() => 0),
|
|
getDataForCategoriesCached(),
|
|
]);
|
|
|
|
return (
|
|
photos.length > 0
|
|
? <PhotoGridPage
|
|
{...{
|
|
photos,
|
|
photosCount,
|
|
...USER_DEFAULT_SORT_OPTIONS,
|
|
...categories,
|
|
}}
|
|
/>
|
|
: <PhotosEmptyState />
|
|
);
|
|
}
|