mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import {
|
|
BaseItemDto,
|
|
BaseItemPerson,
|
|
} from "@jellyfin/sdk/lib/generated-client/models";
|
|
import React from "react";
|
|
import { Linking, TouchableOpacity, View } from "react-native";
|
|
import { HorizontalScroll } from "../common/HorrizontalScroll";
|
|
import { Text } from "../common/Text";
|
|
import Poster from "../Poster";
|
|
import { useAtom } from "jotai";
|
|
import { apiAtom } from "@/providers/JellyfinProvider";
|
|
import { getPrimaryImageUrl } from "@/utils/jellyfin/image/getPrimaryImageUrl";
|
|
import { router } from "expo-router";
|
|
|
|
export const CastAndCrew = ({ item }: { item: BaseItemDto }) => {
|
|
const [api] = useAtom(apiAtom);
|
|
|
|
return (
|
|
<View>
|
|
<Text className="text-lg font-bold mb-2 px-4">Cast & Crew</Text>
|
|
<HorizontalScroll<NonNullable<BaseItemPerson>>
|
|
data={item.People}
|
|
renderItem={(item, index) => (
|
|
<TouchableOpacity
|
|
onPress={() => {
|
|
// TODO: Navigate to person
|
|
}}
|
|
key={item.Id}
|
|
className="flex flex-col w-32"
|
|
>
|
|
<Poster item={item} url={getPrimaryImageUrl({ api, item })} />
|
|
<Text className="mt-2">{item.Name}</Text>
|
|
<Text className="text-xs opacity-50">{item.Role}</Text>
|
|
</TouchableOpacity>
|
|
)}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|