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>
135 lines
3.0 KiB
TypeScript
135 lines
3.0 KiB
TypeScript
import { 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";
|
|
|
|
export type Bitrate = {
|
|
key: string;
|
|
value: number | undefined;
|
|
};
|
|
|
|
export const BITRATES: Bitrate[] = [
|
|
{
|
|
key: "Max",
|
|
value: undefined,
|
|
},
|
|
{
|
|
key: "8 Mb/s",
|
|
value: 8000000,
|
|
height: 1080,
|
|
},
|
|
{
|
|
key: "4 Mb/s",
|
|
value: 4000000,
|
|
height: 1080,
|
|
},
|
|
{
|
|
key: "2 Mb/s",
|
|
value: 2000000,
|
|
},
|
|
{
|
|
key: "1 Mb/s",
|
|
value: 1000000,
|
|
},
|
|
{
|
|
key: "500 Kb/s",
|
|
value: 500000,
|
|
},
|
|
{
|
|
key: "250 Kb/s",
|
|
value: 250000,
|
|
},
|
|
].sort(
|
|
(a, b) =>
|
|
(b.value || Number.POSITIVE_INFINITY) -
|
|
(a.value || Number.POSITIVE_INFINITY),
|
|
);
|
|
|
|
interface Props extends React.ComponentProps<typeof View> {
|
|
onChange: (value: Bitrate) => void;
|
|
selected?: Bitrate | null;
|
|
inverted?: boolean | null;
|
|
}
|
|
|
|
export const BitrateSelector: React.FC<Props> = ({
|
|
onChange,
|
|
selected,
|
|
inverted,
|
|
...props
|
|
}) => {
|
|
const isTv = Platform.isTV;
|
|
const [open, setOpen] = useState(false);
|
|
const { t } = useTranslation();
|
|
|
|
const sorted = useMemo(() => {
|
|
if (inverted)
|
|
return BITRATES.slice().sort(
|
|
(a, b) =>
|
|
(a.value || Number.POSITIVE_INFINITY) -
|
|
(b.value || Number.POSITIVE_INFINITY),
|
|
);
|
|
return BITRATES.slice().sort(
|
|
(a, b) =>
|
|
(b.value || Number.POSITIVE_INFINITY) -
|
|
(a.value || Number.POSITIVE_INFINITY),
|
|
);
|
|
}, [inverted]);
|
|
|
|
const optionGroups: OptionGroup[] = useMemo(
|
|
() => [
|
|
{
|
|
options: sorted.map((bitrate) => ({
|
|
type: "radio" as const,
|
|
label: bitrate.key,
|
|
value: bitrate,
|
|
selected: bitrate.value === selected?.value,
|
|
onPress: () => onChange(bitrate),
|
|
})),
|
|
},
|
|
],
|
|
[sorted, selected, onChange],
|
|
);
|
|
|
|
const handleOptionSelect = (optionId: string) => {
|
|
const selectedBitrate = sorted.find((b) => b.key === optionId);
|
|
if (selectedBitrate) {
|
|
onChange(selectedBitrate);
|
|
}
|
|
setOpen(false);
|
|
};
|
|
|
|
const trigger = (
|
|
<View className='flex flex-col' {...props}>
|
|
<Text className='opacity-50 mb-1 text-xs'>{t("item_card.quality")}</Text>
|
|
<TouchableOpacity
|
|
className='bg-neutral-900 h-10 rounded-xl border-neutral-800 border px-3 py-2 flex flex-row items-center justify-between'
|
|
onPress={() => setOpen(true)}
|
|
>
|
|
<Text numberOfLines={1}>
|
|
{BITRATES.find((b) => b.value === selected?.value)?.key}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
|
|
if (isTv) return null;
|
|
|
|
return (
|
|
<PlatformDropdown
|
|
groups={optionGroups}
|
|
trigger={trigger}
|
|
title={t("item_card.quality")}
|
|
open={open}
|
|
onOpenChange={setOpen}
|
|
onOptionSelect={handleOptionSelect}
|
|
expoUIConfig={{
|
|
hostStyle: { flex: 1 },
|
|
}}
|
|
bottomSheetConfig={{
|
|
enablePanDownToClose: true,
|
|
}}
|
|
/>
|
|
);
|
|
};
|