mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
102 lines
2.7 KiB
TypeScript
102 lines
2.7 KiB
TypeScript
import { View, ViewProps } from "react-native";
|
|
import { Text } from "@/components/common/Text";
|
|
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
import { Image, ImageProps, ImageSource } from "expo-image";
|
|
import { useMemo, useState } from "react";
|
|
import { useAtom } from "jotai";
|
|
import { apiAtom } from "@/providers/JellyfinProvider";
|
|
|
|
interface Props extends ImageProps {
|
|
item: BaseItemDto;
|
|
variant?: "Backdrop" | "Primary" | "Thumb" | "Logo";
|
|
quality?: number;
|
|
width?: number;
|
|
}
|
|
|
|
export const ItemImage: React.FC<Props> = ({
|
|
item,
|
|
variant,
|
|
quality = 90,
|
|
width = 1000,
|
|
...props
|
|
}) => {
|
|
const [api] = useAtom(apiAtom);
|
|
|
|
const source = useMemo(() => {
|
|
if (!api) return null;
|
|
|
|
let tag: string | null | undefined;
|
|
let blurhash: string | null | undefined;
|
|
let src: ImageSource | null = null;
|
|
|
|
switch (variant) {
|
|
case "Backdrop":
|
|
if (item.Type === "Episode") {
|
|
tag = item.ParentBackdropImageTags?.[0];
|
|
if (!tag) break;
|
|
blurhash = item.ImageBlurHashes?.Backdrop?.[tag];
|
|
src = {
|
|
uri: `${api.basePath}/Items/${item.ParentBackdropItemId}/Images/Backdrop/0?quality=${quality}&tag=${tag}`,
|
|
blurhash,
|
|
};
|
|
break;
|
|
}
|
|
|
|
tag = item.BackdropImageTags?.[0];
|
|
if (!tag) break;
|
|
blurhash = item.ImageBlurHashes?.Backdrop?.[tag];
|
|
src = {
|
|
uri: `${api.basePath}/Items/${item.Id}/Images/Backdrop/0?quality=${quality}&tag=${tag}`,
|
|
blurhash,
|
|
};
|
|
break;
|
|
case "Primary":
|
|
console.log("case Primary");
|
|
tag = item.ImageTags?.["Primary"];
|
|
if (!tag) break;
|
|
blurhash = item.ImageBlurHashes?.Primary?.[tag];
|
|
console.log("bh: ", blurhash);
|
|
|
|
src = {
|
|
uri: `${api.basePath}/Items/${item.Id}/Images/Primary?quality=${quality}&tag=${tag}`,
|
|
blurhash,
|
|
};
|
|
break;
|
|
case "Thumb":
|
|
console.log("case Thumb");
|
|
tag = item.ImageTags?.["Thumb"];
|
|
if (!tag) break;
|
|
blurhash = item.ImageBlurHashes?.Thumb?.[tag];
|
|
console.log("bh: ", blurhash);
|
|
|
|
src = {
|
|
uri: `${api.basePath}/Items/${item.Id}/Images/Backdrop?quality=${quality}&tag=${tag}`,
|
|
blurhash,
|
|
};
|
|
break;
|
|
default:
|
|
console.log("case default");
|
|
tag = item.ImageTags?.["Primary"];
|
|
src = {
|
|
uri: `${api.basePath}/Items/${item.Id}/Images/Primary?quality=${quality}&tag=${tag}`,
|
|
};
|
|
break;
|
|
}
|
|
|
|
return src;
|
|
}, [item.ImageTags]);
|
|
|
|
return (
|
|
<Image
|
|
transition={300}
|
|
placeholder={{
|
|
blurhash: source?.blurhash,
|
|
}}
|
|
source={{
|
|
uri: source?.uri,
|
|
}}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|