mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 23:59:08 +00:00
80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
import type {
|
|
BaseItemDto,
|
|
BaseItemPerson,
|
|
} from "@jellyfin/sdk/lib/generated-client/models";
|
|
import { router, useSegments } from "expo-router";
|
|
import { useAtom } from "jotai";
|
|
import type React from "react";
|
|
import { useMemo } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { TouchableOpacity, View, type ViewProps } from "react-native";
|
|
import { apiAtom } from "@/providers/JellyfinProvider";
|
|
import { getPrimaryImageUrl } from "@/utils/jellyfin/image/getPrimaryImageUrl";
|
|
import { HorizontalScroll } from "../common/HorizontalScroll";
|
|
import { Text } from "../common/Text";
|
|
import { itemRouter } from "../common/TouchableItemRouter";
|
|
import Poster from "../posters/Poster";
|
|
|
|
interface Props extends ViewProps {
|
|
item?: BaseItemDto | null;
|
|
loading?: boolean;
|
|
}
|
|
|
|
export const CastAndCrew: React.FC<Props> = ({ item, loading, ...props }) => {
|
|
const [api] = useAtom(apiAtom);
|
|
const segments = useSegments();
|
|
const { t } = useTranslation();
|
|
const from = segments[2];
|
|
|
|
const destinctPeople = useMemo(() => {
|
|
const people: Record<string, BaseItemPerson> = {};
|
|
item?.People?.forEach((person) => {
|
|
if (!person.Id) return;
|
|
|
|
const existingPerson = people[person.Id];
|
|
if (existingPerson) {
|
|
existingPerson.Role = `${existingPerson.Role}, ${person.Role}`;
|
|
} else {
|
|
people[person.Id] = person;
|
|
}
|
|
});
|
|
return Object.values(people);
|
|
}, [item?.People]);
|
|
|
|
if (!from) return null;
|
|
|
|
return (
|
|
<View {...props} className='flex flex-col'>
|
|
<Text className='text-lg font-bold mb-2 px-4'>
|
|
{t("item_card.cast_and_crew")}
|
|
</Text>
|
|
<HorizontalScroll
|
|
loading={loading}
|
|
keyExtractor={(i, _idx) => i.Id?.toString() || ""}
|
|
height={247}
|
|
data={destinctPeople}
|
|
renderItem={(i) => (
|
|
<TouchableOpacity
|
|
onPress={() => {
|
|
const url = itemRouter(
|
|
{
|
|
Id: i.Id,
|
|
Type: "Person",
|
|
},
|
|
from,
|
|
);
|
|
// @ts-expect-error
|
|
router.push(url);
|
|
}}
|
|
className='flex flex-col w-28'
|
|
>
|
|
<Poster id={i.Id} url={getPrimaryImageUrl({ api, item: i })} />
|
|
<Text className='mt-2'>{i.Name}</Text>
|
|
<Text className='text-xs opacity-50'>{i.Role}</Text>
|
|
</TouchableOpacity>
|
|
)}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|