TelegramPWA/src/hooks/useInfiniteScroll.ts
2022-05-31 20:58:55 +04:00

123 lines
3.8 KiB
TypeScript

import { useCallback, useRef } from '../lib/teact/teact';
import { LoadMoreDirection } from '../types';
import { areSortedArraysEqual } from '../util/iteratees';
import useForceUpdate from './useForceUpdate';
import usePrevious from './usePrevious';
type GetMore = (args: { direction: LoadMoreDirection }) => void;
type LoadMoreBackwards = (args: { offsetId?: string | number }) => void;
const DEFAULT_LIST_SLICE = 30;
const useInfiniteScroll = <ListId extends string | number>(
loadMoreBackwards?: LoadMoreBackwards,
listIds?: ListId[],
isDisabled = false,
listSlice = DEFAULT_LIST_SLICE,
): [ListId[]?, GetMore?] => {
const lastParamsRef = useRef<{
direction?: LoadMoreDirection;
offsetId?: ListId;
}>();
const viewportIdsRef = useRef<ListId[] | undefined>((() => {
// Only run once to initialize
if (!listIds || lastParamsRef.current) {
return undefined;
}
const { newViewportIds } = getViewportSlice(listIds, LoadMoreDirection.Forwards, listSlice, listIds[0]);
return newViewportIds;
})());
const forceUpdate = useForceUpdate();
if (isDisabled) {
lastParamsRef.current = {};
}
const prevListIds = usePrevious(listIds);
const prevIsDisabled = usePrevious(isDisabled);
if (listIds && !isDisabled && (listIds !== prevListIds || isDisabled !== prevIsDisabled)) {
const { offsetId = listIds[0], direction = LoadMoreDirection.Forwards } = lastParamsRef.current || {};
const { newViewportIds } = getViewportSlice(listIds, direction, listSlice, offsetId);
if (!viewportIdsRef.current || !areSortedArraysEqual(viewportIdsRef.current, newViewportIds)) {
viewportIdsRef.current = newViewportIds;
}
} else if (!listIds) {
viewportIdsRef.current = undefined;
}
const getMore: GetMore = useCallback(({
direction,
noScroll,
}: { direction: LoadMoreDirection; noScroll?: boolean }) => {
const viewportIds = viewportIdsRef.current;
const offsetId = viewportIds
? direction === LoadMoreDirection.Backwards ? viewportIds[viewportIds.length - 1] : viewportIds[0]
: undefined;
if (!listIds) {
if (loadMoreBackwards) {
loadMoreBackwards({ offsetId });
}
return;
}
if (!noScroll) {
lastParamsRef.current = { ...lastParamsRef.current, direction, offsetId };
}
const {
newViewportIds, areSomeLocal, areAllLocal,
} = getViewportSlice(listIds, direction, listSlice, offsetId);
if (areSomeLocal && !(viewportIds && areSortedArraysEqual(viewportIds, newViewportIds))) {
viewportIdsRef.current = newViewportIds;
forceUpdate();
}
if (!areAllLocal && loadMoreBackwards) {
loadMoreBackwards({ offsetId });
}
}, [listIds, listSlice, loadMoreBackwards, forceUpdate]);
return isDisabled ? [listIds] : [viewportIdsRef.current, getMore];
};
function getViewportSlice<ListId extends string | number>(
sourceIds: ListId[],
direction: LoadMoreDirection,
listSlice: number,
offsetId?: ListId,
) {
const { length } = sourceIds;
const index = offsetId ? sourceIds.indexOf(offsetId) : 0;
const isForwards = direction === LoadMoreDirection.Forwards;
const indexForDirection = isForwards ? index : (index + 1) || length;
const from = Math.max(0, indexForDirection - listSlice);
const to = indexForDirection + listSlice - 1;
const newViewportIds = sourceIds.slice(Math.max(0, from), to + 1);
let areSomeLocal;
let areAllLocal;
switch (direction) {
case LoadMoreDirection.Forwards:
areSomeLocal = indexForDirection > 0;
areAllLocal = from >= 0;
break;
case LoadMoreDirection.Backwards:
areSomeLocal = indexForDirection < length;
areAllLocal = to <= length - 1;
break;
}
return { newViewportIds, areSomeLocal, areAllLocal };
}
export default useInfiniteScroll;