/*
* Kyoo - A portable and vast media library solution.
* Copyright (c) Kyoo.
*
* See AUTHORS.md and LICENSE file in the project root for full license information.
*
* Kyoo is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Kyoo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Kyoo. If not, see .
*/
import { Page, QueryIdentifier, useInfiniteFetch } from "@kyoo/models";
import { useBreakpointMap, HR } from "@kyoo/primitives";
import { ContentStyle, FlashList } from "@shopify/flash-list";
import { ComponentProps, ComponentType, isValidElement, ReactElement, useRef } from "react";
import { EmptyView, ErrorView, Layout, OfflineView, WithLoading, addHeader } from "./fetch";
import { FlatList, View, ViewStyle } from "react-native";
const emulateGap = (
layout: "grid" | "vertical" | "horizontal",
gap: number,
numColumns: number,
index: number,
itemsCount: number,
): ViewStyle => {
let marginLeft = 0;
let marginRight = 0;
if (layout !== "vertical" && numColumns > 1) {
if (index % numColumns === 0) {
marginRight = (gap * 2) / 3;
} else if ((index + 1) % numColumns === 0) {
marginLeft = (gap * 2) / 3;
} else {
marginLeft = gap / 3;
marginRight = gap / 3;
}
}
return {
marginLeft,
marginRight,
marginTop: layout !== "horizontal" && index >= numColumns ? gap : 0,
marginBottom: layout !== "horizontal" && itemsCount - index <= numColumns ? gap : 0,
};
};
export const InfiniteFetchList = ({
query,
placeholderCount = 2,
incremental = false,
children,
layout,
empty,
divider = false,
Header,
headerProps,
getItemType,
getItemSize,
fetchMore = true,
nested = false,
contentContainerStyle,
...props
}: {
query: ReturnType>;
placeholderCount?: number;
layout: Layout;
horizontal?: boolean;
children: (
item: Data extends Page ? WithLoading- : WithLoading,
i: number,
) => ReactElement | null;
empty?: string | JSX.Element;
incremental?: boolean;
divider?: boolean | ComponentType;
Header?: ComponentType | ReactElement;
headerProps?: Props;
getItemType?: (item: WithLoading, index: number) => Kind;
getItemSize?: (kind: Kind) => number;
fetchMore?: boolean;
nested?: boolean;
contentContainerStyle?: ContentStyle;
}): JSX.Element | null => {
const { numColumns, size, gap } = useBreakpointMap(layout);
const oldItems = useRef();
let { items, isPaused, error, fetchNextPage, isFetching, refetch, isRefetching } = query;
if (incremental && items) oldItems.current = items;
if (error) return ;
if (isPaused) return ;
if (empty && items && items.length === 0) {
if (typeof empty !== "string") return addHeader(Header, empty, headerProps);
return addHeader(Header, , headerProps);
}
if (incremental) items ??= oldItems.current;
const count = items ? numColumns - (items.length % numColumns) : placeholderCount;
const placeholders = [...Array(count === 0 ? numColumns : count)].map(
(_, i) => ({ id: `gen${i}`, isLoading: true }) as Data,
);
const data = isFetching || !items ? [...(items || []), ...placeholders] : items;
const List = nested ? (FlatList as unknown as typeof FlashList) : FlashList;
// @ts-ignore
if (headerProps && !isValidElement(Header)) Header = ;
return (
(
{children({ isLoading: false, ...item } as any, index)}
)}
data={data}
horizontal={layout.layout === "horizontal"}
keyExtractor={(item: any) => item.id}
numColumns={layout.layout === "horizontal" ? 1 : numColumns}
estimatedItemSize={size}
onEndReached={fetchMore ? fetchNextPage : undefined}
onEndReachedThreshold={0.5}
onRefresh={layout.layout !== "horizontal" ? refetch : null}
refreshing={isRefetching}
ItemSeparatorComponent={divider === true ? HR : divider || null}
ListHeaderComponent={Header}
getItemType={getItemType}
nestedScrollEnabled={nested}
scrollEnabled={!nested}
{...props}
/>
);
};
export const InfiniteFetch = ({
query,
...props
}: {
query: QueryIdentifier<_, Data>;
} & Omit>, "query">) => {
if (!query.infinite) console.warn("A non infinite query was passed to an InfiniteFetch.");
const ret = useInfiniteFetch(query);
return ;
};