mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-03-30 21:51:53 +01:00
98 lines
2.8 KiB
TypeScript
98 lines
2.8 KiB
TypeScript
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
import { TouchableOpacity } from "react-native";
|
|
import * as ContextMenu from "zeego/context-menu";
|
|
import { Text } from "../common/Text";
|
|
import { useFiles } from "@/hooks/useFiles";
|
|
import * as Haptics from "expo-haptics";
|
|
import { useCallback } from "react";
|
|
import * as FileSystem from "expo-file-system";
|
|
import { useAtom } from "jotai";
|
|
import { currentlyPlayingItemAtom } from "../CurrentlyPlayingBar";
|
|
|
|
export const EpisodeCard: React.FC<{ item: BaseItemDto }> = ({ item }) => {
|
|
const { deleteFile } = useFiles();
|
|
const [_, setCp] = useAtom(currentlyPlayingItemAtom);
|
|
|
|
// const fetchFileSize = async () => {
|
|
// try {
|
|
// const filePath = `${FileSystem.documentDirectory}/${item.Id}.mp4`;
|
|
// const info = await FileSystem.getInfoAsync(filePath);
|
|
// return info.exists ? info.size : null;
|
|
// } catch (e) {
|
|
// console.log(e);
|
|
// return null;
|
|
// }
|
|
// };
|
|
|
|
// const { data: fileSize } = useQuery({
|
|
// queryKey: ["fileSize", item?.Id],
|
|
// queryFn: fetchFileSize,
|
|
// });
|
|
|
|
const openFile = useCallback(() => {
|
|
setCp({
|
|
item,
|
|
playbackUrl: `${FileSystem.documentDirectory}/${item.Id}.mp4`,
|
|
});
|
|
}, [item]);
|
|
|
|
const options = [
|
|
{
|
|
label: "Delete",
|
|
onSelect: (id: string) => {
|
|
deleteFile(id);
|
|
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success);
|
|
},
|
|
destructive: true,
|
|
},
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<ContextMenu.Root>
|
|
<ContextMenu.Trigger>
|
|
<TouchableOpacity
|
|
onPress={openFile}
|
|
className="bg-neutral-900 border border-neutral-800 rounded-2xl p-4"
|
|
>
|
|
<Text className=" font-bold">{item.Name}</Text>
|
|
<Text className=" text-xs opacity-50">
|
|
Episode {item.IndexNumber}
|
|
</Text>
|
|
{/* <Text className=" text-xs opacity-50">
|
|
Size:{" "}
|
|
{fileSize
|
|
? `${(fileSize / 1000000).toFixed(0)} MB`
|
|
: "Calculating..."}{" "}
|
|
</Text> */}
|
|
</TouchableOpacity>
|
|
</ContextMenu.Trigger>
|
|
<ContextMenu.Content
|
|
alignOffset={0}
|
|
avoidCollisions
|
|
collisionPadding={10}
|
|
loop={false}
|
|
>
|
|
{options.map((i) => (
|
|
<ContextMenu.Item
|
|
onSelect={() => {
|
|
i.onSelect(item.Id!);
|
|
}}
|
|
key={i.label}
|
|
destructive={i.destructive}
|
|
>
|
|
<ContextMenu.ItemTitle
|
|
style={{
|
|
color: "red",
|
|
}}
|
|
>
|
|
{i.label}
|
|
</ContextMenu.ItemTitle>
|
|
</ContextMenu.Item>
|
|
))}
|
|
</ContextMenu.Content>
|
|
</ContextMenu.Root>
|
|
</>
|
|
);
|
|
};
|