mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
136 lines
2.8 KiB
TypeScript
136 lines
2.8 KiB
TypeScript
import { Ionicons } from "@expo/vector-icons";
|
|
import React from "react";
|
|
import { Platform, TouchableOpacity } from "react-native";
|
|
import { useHaptic } from "@/hooks/useHaptic";
|
|
|
|
const DropdownMenu = !Platform.isTV ? require("zeego/dropdown-menu") : null;
|
|
|
|
export type ScaleFactor =
|
|
| 1.0
|
|
| 1.1
|
|
| 1.2
|
|
| 1.3
|
|
| 1.4
|
|
| 1.5
|
|
| 1.6
|
|
| 1.7
|
|
| 1.8
|
|
| 1.9
|
|
| 2.0;
|
|
|
|
interface ScaleFactorSelectorProps {
|
|
currentScale: ScaleFactor;
|
|
onScaleChange: (scale: ScaleFactor) => void;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
interface ScaleFactorOption {
|
|
id: ScaleFactor;
|
|
label: string;
|
|
description: string;
|
|
}
|
|
|
|
const SCALE_FACTOR_OPTIONS: ScaleFactorOption[] = [
|
|
{
|
|
id: 1.0,
|
|
label: "1.0x",
|
|
description: "Original size",
|
|
},
|
|
{
|
|
id: 1.1,
|
|
label: "1.1x",
|
|
description: "10% larger",
|
|
},
|
|
{
|
|
id: 1.2,
|
|
label: "1.2x",
|
|
description: "20% larger",
|
|
},
|
|
{
|
|
id: 1.3,
|
|
label: "1.3x",
|
|
description: "30% larger",
|
|
},
|
|
{
|
|
id: 1.4,
|
|
label: "1.4x",
|
|
description: "40% larger",
|
|
},
|
|
{
|
|
id: 1.5,
|
|
label: "1.5x",
|
|
description: "50% larger",
|
|
},
|
|
{
|
|
id: 1.6,
|
|
label: "1.6x",
|
|
description: "60% larger",
|
|
},
|
|
{
|
|
id: 1.7,
|
|
label: "1.7x",
|
|
description: "70% larger",
|
|
},
|
|
{
|
|
id: 1.8,
|
|
label: "1.8x",
|
|
description: "80% larger",
|
|
},
|
|
{
|
|
id: 1.9,
|
|
label: "1.9x",
|
|
description: "90% larger",
|
|
},
|
|
{
|
|
id: 2.0,
|
|
label: "2.0x",
|
|
description: "Double size",
|
|
},
|
|
];
|
|
|
|
export const ScaleFactorSelector: React.FC<ScaleFactorSelectorProps> = ({
|
|
currentScale,
|
|
onScaleChange,
|
|
disabled = false,
|
|
}) => {
|
|
const lightHapticFeedback = useHaptic("light");
|
|
|
|
// Hide on TV platforms since zeego doesn't support TV
|
|
if (Platform.isTV || !DropdownMenu) return null;
|
|
|
|
const handleScaleSelect = (scale: ScaleFactor) => {
|
|
onScaleChange(scale);
|
|
lightHapticFeedback();
|
|
};
|
|
|
|
return (
|
|
<DropdownMenu.Root>
|
|
<DropdownMenu.Trigger asChild>
|
|
<TouchableOpacity
|
|
disabled={disabled}
|
|
className='aspect-square flex flex-col rounded-xl items-center justify-center p-2'
|
|
style={{ opacity: disabled ? 0.5 : 1 }}
|
|
>
|
|
<Ionicons name='search-outline' size={24} color='white' />
|
|
</TouchableOpacity>
|
|
</DropdownMenu.Trigger>
|
|
|
|
<DropdownMenu.Content>
|
|
<DropdownMenu.Label>Scale Factor</DropdownMenu.Label>
|
|
<DropdownMenu.Separator />
|
|
|
|
{SCALE_FACTOR_OPTIONS.map((option) => (
|
|
<DropdownMenu.CheckboxItem
|
|
key={option.id}
|
|
value={currentScale === option.id ? "on" : "off"}
|
|
onValueChange={() => handleScaleSelect(option.id)}
|
|
>
|
|
<DropdownMenu.ItemTitle>{option.label}</DropdownMenu.ItemTitle>
|
|
<DropdownMenu.ItemIndicator />
|
|
</DropdownMenu.CheckboxItem>
|
|
))}
|
|
</DropdownMenu.Content>
|
|
</DropdownMenu.Root>
|
|
);
|
|
};
|