mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
import { Text } from "@/components/common/Text";
|
|
import MoviePoster from "@/components/posters/MoviePoster";
|
|
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
import { View, ViewProps } from "react-native";
|
|
import ContinueWatchingPoster from "../ContinueWatchingPoster";
|
|
import { ItemCardText } from "../ItemCardText";
|
|
import { HorizontalScroll } from "../common/HorrizontalScroll";
|
|
import { TouchableItemRouter } from "../common/TouchableItemRouter";
|
|
import {
|
|
type QueryKey,
|
|
useQuery,
|
|
type QueryFunction,
|
|
} from "@tanstack/react-query";
|
|
import SeriesPoster from "../posters/SeriesPoster";
|
|
import { EpisodePoster } from "../posters/EpisodePoster";
|
|
|
|
interface Props extends ViewProps {
|
|
title?: string | null;
|
|
orientation?: "horizontal" | "vertical";
|
|
height?: "small" | "large";
|
|
disabled?: boolean;
|
|
queryKey: QueryKey;
|
|
queryFn: QueryFunction<BaseItemDto[]>;
|
|
}
|
|
|
|
export const ScrollingCollectionList: React.FC<Props> = ({
|
|
title,
|
|
orientation = "vertical",
|
|
height = "small",
|
|
disabled = false,
|
|
queryFn,
|
|
queryKey,
|
|
...props
|
|
}) => {
|
|
const { data, isLoading } = useQuery({
|
|
queryKey,
|
|
queryFn,
|
|
enabled: !disabled,
|
|
staleTime: 60 * 1000,
|
|
});
|
|
|
|
if (disabled || !title) return null;
|
|
|
|
return (
|
|
<View {...props}>
|
|
<Text className="px-4 text-2xl font-bold mb-2 text-neutral-100">
|
|
{title}
|
|
</Text>
|
|
<HorizontalScroll<BaseItemDto>
|
|
data={data}
|
|
height={orientation === "vertical" ? 247 : 164}
|
|
loading={isLoading}
|
|
renderItem={(item, index) => (
|
|
<TouchableItemRouter
|
|
key={index}
|
|
item={item}
|
|
className={`flex flex-col
|
|
${orientation === "horizontal" ? "w-44" : "w-28"}
|
|
`}
|
|
>
|
|
<View>
|
|
{item.Type === "Episode" && orientation === "horizontal" && (
|
|
<ContinueWatchingPoster item={item} />
|
|
)}
|
|
{item.Type === "Episode" && orientation === "vertical" && (
|
|
<SeriesPoster item={item} />
|
|
)}
|
|
{item.Type === "Movie" && <MoviePoster item={item} />}
|
|
{item.Type === "Series" && <SeriesPoster item={item} />}
|
|
<ItemCardText item={item} />
|
|
</View>
|
|
</TouchableItemRouter>
|
|
)}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|