* Extract out ShareHover components * Refactor hover/category state * Rename photo query options types * Restore category count slice of app state * Streamline entity hover headers * Standardize swr keys * Suppress hover counts to years * Refine entity hover design * Make image hovers opt out
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import {
|
|
INFINITE_SCROLL_FEED_INITIAL,
|
|
generateOgImageMetaForPhotos,
|
|
} from '@/photo';
|
|
import PhotosEmptyState from '@/photo/PhotosEmptyState';
|
|
import { Metadata } from 'next/types';
|
|
import { cache } from 'react';
|
|
import { getPhotos } from '@/photo/db/query';
|
|
import PhotoFeedPage from '@/photo/PhotoFeedPage';
|
|
import { getPhotosMetaCached } from '@/photo/cache';
|
|
import { USER_DEFAULT_SORT_OPTIONS } from '@/app/config';
|
|
import { PhotoQueryOptions } from '@/photo/db';
|
|
|
|
export const dynamic = 'force-static';
|
|
export const maxDuration = 60;
|
|
|
|
const getPhotosCached = cache((options: PhotoQueryOptions) => getPhotos({
|
|
...options,
|
|
limit: INFINITE_SCROLL_FEED_INITIAL,
|
|
}));
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
const photos = await getPhotosCached(USER_DEFAULT_SORT_OPTIONS)
|
|
.catch(() => []);
|
|
return generateOgImageMetaForPhotos(photos);
|
|
}
|
|
|
|
export default async function FeedPage() {
|
|
const [
|
|
photos,
|
|
photosCount,
|
|
] = await Promise.all([
|
|
getPhotosCached(USER_DEFAULT_SORT_OPTIONS)
|
|
.catch(() => []),
|
|
getPhotosMetaCached(USER_DEFAULT_SORT_OPTIONS)
|
|
.then(({ count }) => count)
|
|
.catch(() => 0),
|
|
]);
|
|
|
|
return (
|
|
photos.length > 0
|
|
? <PhotoFeedPage {...{
|
|
photos,
|
|
photosCount,
|
|
...USER_DEFAULT_SORT_OPTIONS,
|
|
}} />
|
|
: <PhotosEmptyState />
|
|
);
|
|
}
|