Vercel/src/photo/InfinitePhotoScroll.tsx
2025-07-11 08:53:36 -05:00

191 lines
4.7 KiB
TypeScript

'use client';
import useSwrInfinite from 'swr/infinite';
import {
ReactNode,
useCallback,
useEffect,
useMemo,
useRef,
} from 'react';
import AppGrid from '@/components/AppGrid';
import Spinner from '@/components/Spinner';
import { getPhotosCachedAction, getPhotosAction } from '@/photo/actions';
import { Photo } from '.';
import { PhotoSetCategory } from '../category';
import { clsx } from 'clsx/lite';
import { useAppState } from '@/app/AppState';
import useVisible from '@/utility/useVisible';
import { ADMIN_DB_OPTIMIZE_ENABLED } from '@/app/config';
import { SortBy } from './db/sort';
import { SWR_KEYS } from '@/swr';
const SIZE_KEY_SEPARATOR = '__';
const getSizeFromKey = (key: string) =>
parseInt(key.split(SIZE_KEY_SEPARATOR)[1]);
export type RevalidatePhoto = (
photoId: string,
revalidateRemainingPhotos?: boolean,
) => Promise<any>;
export default function InfinitePhotoScroll({
cacheKey,
initialOffset,
itemsPerPage,
sortBy,
sortWithPriority,
excludeFromFeeds,
camera,
lens,
tag,
recipe,
film,
focal,
wrapMoreButtonInGrid,
useCachedPhotos = true,
includeHiddenPhotos,
children,
}: {
initialOffset: number
itemsPerPage: number
sortBy?: SortBy
sortWithPriority?: boolean
excludeFromFeeds?: boolean
cacheKey: string
wrapMoreButtonInGrid?: boolean
useCachedPhotos?: boolean
includeHiddenPhotos?: boolean
children: (props: {
photos: Photo[]
onLastPhotoVisible: () => void
revalidatePhoto?: RevalidatePhoto
}) => ReactNode
} & PhotoSetCategory) {
const { isUserSignedIn } = useAppState();
const keyGenerator = useCallback(
(size: number, prev: Photo[]) => prev && prev.length === 0
? null
// eslint-disable-next-line max-len
: `${SWR_KEYS.INFINITE_PHOTO_SCROLL}-${cacheKey}${SIZE_KEY_SEPARATOR}${size}`
, [cacheKey]);
const fetcher = useCallback((
keyWithSize: string,
warmOnly?: boolean,
) =>
(useCachedPhotos ? getPhotosCachedAction : getPhotosAction)({
offset: initialOffset + getSizeFromKey(keyWithSize) * itemsPerPage,
sortBy,
sortWithPriority,
excludeFromFeeds,
limit: itemsPerPage,
hidden: includeHiddenPhotos ? 'include' : 'exclude',
camera,
lens,
tag,
recipe,
film,
focal,
}, warmOnly)
, [
useCachedPhotos,
sortBy,
sortWithPriority,
excludeFromFeeds,
initialOffset,
itemsPerPage,
includeHiddenPhotos,
camera,
lens,
tag,
recipe,
film,
focal,
]);
const { data, isLoading, isValidating, error, mutate, size, setSize } =
useSwrInfinite<Photo[]>(
keyGenerator,
fetcher,
{
initialSize: ADMIN_DB_OPTIMIZE_ENABLED ? 0 : 2,
revalidateFirstPage: false,
revalidateOnFocus: Boolean(isUserSignedIn),
revalidateOnReconnect: Boolean(isUserSignedIn),
},
);
useEffect(() => {
if (ADMIN_DB_OPTIMIZE_ENABLED) {
fetcher(`${SIZE_KEY_SEPARATOR}0`, true);
}
}, [fetcher]);
const buttonContainerRef = useRef<HTMLDivElement>(null);
const isLoadingOrValidating = isLoading || isValidating;
const isFinished = useMemo(() =>
data && data[data.length - 1]?.length < itemsPerPage
, [data, itemsPerPage]);
const advance = useCallback(() => {
if (!isFinished && !isLoadingOrValidating) {
setSize(size => size + 1);
}
}, [isFinished, isLoadingOrValidating, setSize]);
const photos = useMemo(() => (data ?? [])?.flat(), [data]);
const revalidatePhoto: RevalidatePhoto = useCallback((
photoId: string,
revalidateRemainingPhotos?: boolean,
) => mutate(data, {
revalidate: (_data: Photo[], [_, size]:[string, number]) => {
const i = (data ?? []).findIndex(photos =>
photos.some(photo => photo.id === photoId));
return revalidateRemainingPhotos ? size >= i : size === i;
},
} as any), [data, mutate]);
useVisible({ ref: buttonContainerRef, onVisible: () => {
if (ADMIN_DB_OPTIMIZE_ENABLED && size === 0) {
advance();
}
}});
const renderMoreButton = () =>
<div ref={buttonContainerRef}>
<button
type="button"
onClick={() => error ? mutate() : advance()}
disabled={isLoading || isValidating}
className={clsx(
'w-full flex justify-center',
isLoadingOrValidating && 'subtle',
)}
>
{error
? 'Try Again'
: isLoadingOrValidating
? <Spinner size={20} />
: 'Load More'}
</button>
</div>;
return (
<div className="space-y-4">
{children({
photos,
onLastPhotoVisible: advance,
revalidatePhoto,
})}
{!isFinished && (wrapMoreButtonInGrid
? <AppGrid contentMain={renderMoreButton()} />
: renderMoreButton())}
</div>
);
}