mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 23:59:08 +00:00
Reduced duplication and removed constants to a new file Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
132 lines
4.3 KiB
TypeScript
132 lines
4.3 KiB
TypeScript
import { t } from "i18next";
|
|
import { useEffect, useState } from "react";
|
|
import { View } from "react-native";
|
|
import { ListGroup } from "@/components/list/ListGroup";
|
|
import { ListItem } from "@/components/list/ListItem";
|
|
import { OUTLINE_THICKNESS, VLC_COLORS } from "@/constants/SubtitleConstants";
|
|
import { storage } from "@/utils/mmkv";
|
|
|
|
export function VLCSubtitleSettings({
|
|
className = "",
|
|
}: {
|
|
className?: string;
|
|
}) {
|
|
const [textColor, setTextColor] = useState(
|
|
storage.getString("vlc.textColor") || "White",
|
|
);
|
|
const [backgroundColor, setBackgroundColor] = useState(
|
|
storage.getString("vlc.backgroundColor") || "Black",
|
|
);
|
|
const [outlineColor, setOutlineColor] = useState(
|
|
storage.getString("vlc.outlineColor") || "Black",
|
|
);
|
|
const [outlineThickness, setOutlineThickness] = useState(
|
|
storage.getString("vlc.outlineThickness") || "Normal",
|
|
);
|
|
const [backgroundOpacity, setBackgroundOpacity] = useState(
|
|
storage.getNumber("vlc.backgroundOpacity") || 128,
|
|
);
|
|
const [outlineOpacity, setOutlineOpacity] = useState(
|
|
storage.getNumber("vlc.outlineOpacity") || 255,
|
|
);
|
|
const [isBold, setIsBold] = useState(
|
|
storage.getBoolean("vlc.isBold") || false,
|
|
);
|
|
|
|
useEffect(() => {
|
|
storage.set("vlc.textColor", textColor);
|
|
}, [textColor]);
|
|
|
|
useEffect(() => {
|
|
storage.set("vlc.backgroundColor", backgroundColor);
|
|
}, [backgroundColor]);
|
|
|
|
useEffect(() => {
|
|
storage.set("vlc.outlineColor", outlineColor);
|
|
}, [outlineColor]);
|
|
|
|
useEffect(() => {
|
|
storage.set("vlc.outlineThickness", outlineThickness);
|
|
}, [outlineThickness]);
|
|
|
|
useEffect(() => {
|
|
storage.set("vlc.backgroundOpacity", backgroundOpacity);
|
|
}, [backgroundOpacity]);
|
|
|
|
useEffect(() => {
|
|
storage.set("vlc.outlineOpacity", outlineOpacity);
|
|
}, [outlineOpacity]);
|
|
|
|
useEffect(() => {
|
|
storage.set("vlc.isBold", isBold);
|
|
}, [isBold]);
|
|
|
|
return (
|
|
<View className={className}>
|
|
<ListGroup title={t("home.settings.vlc_subtitles.title")}>
|
|
<ListItem
|
|
title={t("home.settings.vlc_subtitles.text_color")}
|
|
value={textColor}
|
|
onPress={() => {
|
|
const colors = Object.keys(VLC_COLORS);
|
|
const currentIndex = colors.indexOf(textColor);
|
|
const nextIndex = (currentIndex + 1) % colors.length;
|
|
setTextColor(colors[nextIndex]);
|
|
}}
|
|
/>
|
|
<ListItem
|
|
title={t("home.settings.vlc_subtitles.background_color")}
|
|
value={backgroundColor}
|
|
onPress={() => {
|
|
const colors = Object.keys(VLC_COLORS);
|
|
const currentIndex = colors.indexOf(backgroundColor);
|
|
const nextIndex = (currentIndex + 1) % colors.length;
|
|
setBackgroundColor(colors[nextIndex]);
|
|
}}
|
|
/>
|
|
<ListItem
|
|
title={t("home.settings.vlc_subtitles.outline_color")}
|
|
value={outlineColor}
|
|
onPress={() => {
|
|
const colors = Object.keys(VLC_COLORS);
|
|
const currentIndex = colors.indexOf(outlineColor);
|
|
const nextIndex = (currentIndex + 1) % colors.length;
|
|
setOutlineColor(colors[nextIndex]);
|
|
}}
|
|
/>
|
|
<ListItem
|
|
title={t("home.settings.vlc_subtitles.outline_thickness")}
|
|
value={outlineThickness}
|
|
onPress={() => {
|
|
const thicknesses = Object.keys(OUTLINE_THICKNESS);
|
|
const currentIndex = thicknesses.indexOf(outlineThickness);
|
|
const nextIndex = (currentIndex + 1) % thicknesses.length;
|
|
setOutlineThickness(thicknesses[nextIndex]);
|
|
}}
|
|
/>
|
|
<ListItem
|
|
title={t("home.settings.vlc_subtitles.background_opacity")}
|
|
value={`${Math.round((backgroundOpacity / 255) * 100)}%`}
|
|
onPress={() => {
|
|
const newOpacity = (backgroundOpacity + 32) % 256;
|
|
setBackgroundOpacity(newOpacity);
|
|
}}
|
|
/>
|
|
<ListItem
|
|
title={t("home.settings.vlc_subtitles.outline_opacity")}
|
|
value={`${Math.round((outlineOpacity / 255) * 100)}%`}
|
|
onPress={() => {
|
|
const newOpacity = (outlineOpacity + 32) % 256;
|
|
setOutlineOpacity(newOpacity);
|
|
}}
|
|
/>
|
|
<ListItem
|
|
title={t("home.settings.vlc_subtitles.bold_text")}
|
|
value={isBold ? "On" : "Off"}
|
|
onPress={() => setIsBold(!isBold)}
|
|
/>
|
|
</ListGroup>
|
|
</View>
|
|
);
|
|
}
|