mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-04 13:08:33 +01:00
131 lines
4.1 KiB
TypeScript
131 lines
4.1 KiB
TypeScript
import { getQuickConnectApi } from "@jellyfin/sdk/lib/utils/api";
|
|
import { useAtom } from "jotai";
|
|
import {
|
|
forwardRef,
|
|
useCallback,
|
|
useImperativeHandle,
|
|
useMemo,
|
|
useRef,
|
|
useState,
|
|
} from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Alert, Platform, View } from "react-native";
|
|
import { useHaptic } from "@/hooks/useHaptic";
|
|
import { apiAtom, userAtom } from "@/providers/JellyfinProvider";
|
|
import {
|
|
type BottomSheetMethods,
|
|
BottomSheetModal,
|
|
BottomSheetView,
|
|
} from "@/utils/expoUiBottomSheet";
|
|
import { Button } from "../Button";
|
|
import { Text } from "../common/Text";
|
|
import { PinInput } from "../inputs/PinInput";
|
|
|
|
export type QuickConnectSheetRef = BottomSheetMethods;
|
|
|
|
export const QuickConnectSheet = forwardRef<BottomSheetMethods>(
|
|
(_props, ref) => {
|
|
const isTv = Platform.isTV;
|
|
const [api] = useAtom(apiAtom);
|
|
const [user] = useAtom(userAtom);
|
|
const [quickConnectCode, setQuickConnectCode] = useState<string>();
|
|
const sheetRef = useRef<BottomSheetMethods>(null);
|
|
const successHapticFeedback = useHaptic("success");
|
|
const errorHapticFeedback = useHaptic("error");
|
|
const snapPoints = useMemo(
|
|
() => (Platform.OS === "android" ? ["100%"] : ["40%"]),
|
|
[],
|
|
);
|
|
const isAndroid = Platform.OS === "android";
|
|
const { t } = useTranslation();
|
|
|
|
useImperativeHandle(ref, () => sheetRef.current as BottomSheetMethods, []);
|
|
|
|
const authorizeQuickConnect = useCallback(async () => {
|
|
if (!quickConnectCode) return;
|
|
try {
|
|
const res = await getQuickConnectApi(api!).authorizeQuickConnect({
|
|
code: quickConnectCode,
|
|
userId: user?.Id,
|
|
});
|
|
if (res.status === 200) {
|
|
successHapticFeedback();
|
|
Alert.alert(
|
|
t("home.settings.quick_connect.success"),
|
|
t("home.settings.quick_connect.quick_connect_autorized"),
|
|
);
|
|
setQuickConnectCode(undefined);
|
|
sheetRef.current?.close();
|
|
} else {
|
|
errorHapticFeedback();
|
|
Alert.alert(
|
|
t("home.settings.quick_connect.error"),
|
|
t("home.settings.quick_connect.invalid_code"),
|
|
);
|
|
}
|
|
} catch (_e) {
|
|
errorHapticFeedback();
|
|
Alert.alert(
|
|
t("home.settings.quick_connect.error"),
|
|
t("home.settings.quick_connect.invalid_code"),
|
|
);
|
|
}
|
|
}, [
|
|
api,
|
|
user,
|
|
quickConnectCode,
|
|
t,
|
|
successHapticFeedback,
|
|
errorHapticFeedback,
|
|
]);
|
|
|
|
if (isTv) return null;
|
|
|
|
return (
|
|
<BottomSheetModal
|
|
ref={sheetRef}
|
|
enablePanDownToClose
|
|
snapPoints={snapPoints}
|
|
handleIndicatorStyle={{ backgroundColor: "white" }}
|
|
backgroundStyle={{ backgroundColor: "#171717" }}
|
|
keyboardBehavior={isAndroid ? "fillParent" : "interactive"}
|
|
keyboardBlurBehavior='restore'
|
|
>
|
|
<BottomSheetView>
|
|
<View className='flex flex-col space-y-4 px-4 pb-8 pt-2'>
|
|
<View>
|
|
<Text className='font-bold text-2xl text-neutral-100'>
|
|
{t("home.settings.quick_connect.quick_connect_title")}
|
|
</Text>
|
|
</View>
|
|
<View className='flex flex-col space-y-2'>
|
|
<View className='p-4 border border-neutral-800 rounded-xl bg-neutral-900 w-full space-y-4'>
|
|
<Text className='text-neutral-400 text-center'>
|
|
{t(
|
|
"home.settings.quick_connect.enter_the_quick_connect_code",
|
|
)}
|
|
</Text>
|
|
<PinInput
|
|
value={quickConnectCode || ""}
|
|
onChangeText={setQuickConnectCode}
|
|
style={{ paddingHorizontal: 16 }}
|
|
autoFocus
|
|
/>
|
|
</View>
|
|
</View>
|
|
<Button
|
|
className='mt-auto'
|
|
onPress={authorizeQuickConnect}
|
|
color='purple'
|
|
>
|
|
{t("home.settings.quick_connect.authorize")}
|
|
</Button>
|
|
</View>
|
|
</BottomSheetView>
|
|
</BottomSheetModal>
|
|
);
|
|
},
|
|
);
|
|
|
|
QuickConnectSheet.displayName = "QuickConnectSheet";
|