mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 15:48:05 +00:00
Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com> Co-authored-by: sarendsen <coding-mosses0z@icloud.com> Co-authored-by: Lance Chant <13349722+lancechant@users.noreply.github.com> Co-authored-by: Gauvain <68083474+Gauvino@users.noreply.github.com>
104 lines
2.7 KiB
TypeScript
104 lines
2.7 KiB
TypeScript
import type {
|
|
BaseItemDto,
|
|
MediaSourceInfo,
|
|
} from "@jellyfin/sdk/lib/generated-client/models";
|
|
import { useCallback, useMemo, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Platform, TouchableOpacity, View } from "react-native";
|
|
import { Text } from "./common/Text";
|
|
import { type OptionGroup, PlatformDropdown } from "./PlatformDropdown";
|
|
|
|
interface Props extends React.ComponentProps<typeof View> {
|
|
item: BaseItemDto;
|
|
onChange: (value: MediaSourceInfo) => void;
|
|
selected?: MediaSourceInfo | null;
|
|
}
|
|
|
|
export const MediaSourceSelector: React.FC<Props> = ({
|
|
item,
|
|
onChange,
|
|
selected,
|
|
...props
|
|
}) => {
|
|
const isTv = Platform.isTV;
|
|
const [open, setOpen] = useState(false);
|
|
const { t } = useTranslation();
|
|
|
|
const getDisplayName = useCallback((source: MediaSourceInfo) => {
|
|
const videoStream = source.MediaStreams?.find((x) => x.Type === "Video");
|
|
if (videoStream?.DisplayTitle) {
|
|
return videoStream.DisplayTitle;
|
|
}
|
|
|
|
// Fallback to source name
|
|
if (source.Name) {
|
|
return source.Name;
|
|
}
|
|
|
|
// Last resort fallback
|
|
return `Source ${source.Id}`;
|
|
}, []);
|
|
|
|
const selectedName = useMemo(() => {
|
|
if (!selected) return "";
|
|
return getDisplayName(selected);
|
|
}, [selected, getDisplayName]);
|
|
|
|
const optionGroups: OptionGroup[] = useMemo(
|
|
() => [
|
|
{
|
|
options:
|
|
item.MediaSources?.map((source) => ({
|
|
type: "radio" as const,
|
|
label: getDisplayName(source),
|
|
value: source,
|
|
selected: source.Id === selected?.Id,
|
|
onPress: () => onChange(source),
|
|
})) || [],
|
|
},
|
|
],
|
|
[item.MediaSources, selected, getDisplayName, onChange],
|
|
);
|
|
|
|
const handleOptionSelect = (optionId: string) => {
|
|
const selectedSource = item.MediaSources?.find(
|
|
(source, idx) => `${source.Id || idx}` === optionId,
|
|
);
|
|
if (selectedSource) {
|
|
onChange(selectedSource);
|
|
}
|
|
setOpen(false);
|
|
};
|
|
|
|
const trigger = (
|
|
<View className='flex flex-col' {...props}>
|
|
<Text className='opacity-50 mb-1 text-xs'>{t("item_card.video")}</Text>
|
|
<TouchableOpacity
|
|
className='bg-neutral-900 h-10 rounded-xl border-neutral-800 border px-3 py-2 flex flex-row items-center'
|
|
onPress={() => setOpen(true)}
|
|
>
|
|
<Text numberOfLines={1}>{selectedName}</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
|
|
if (isTv) return null;
|
|
|
|
return (
|
|
<PlatformDropdown
|
|
groups={optionGroups}
|
|
trigger={trigger}
|
|
title={t("item_card.video")}
|
|
open={open}
|
|
onOpenChange={setOpen}
|
|
onOptionSelect={handleOptionSelect}
|
|
expoUIConfig={{
|
|
hostStyle: { flex: 1 },
|
|
}}
|
|
bottomSheetConfig={{
|
|
enablePanDownToClose: true,
|
|
}}
|
|
/>
|
|
);
|
|
};
|