mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-05-31 19:18:26 +01:00
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { Platform } from "react-native";
|
|
|
|
/**
|
|
* TV-safe re-exports of `@expo/ui/community/bottom-sheet`.
|
|
*
|
|
* `@expo/ui` resolves its SwiftUI bridge at module load via
|
|
* `requireNativeModule('ExpoUI')`. That native module does not exist on tvOS,
|
|
* so a static top-level import from any route file crashes the whole route
|
|
* tree (expo-router eagerly loads every route).
|
|
*
|
|
* We `require()` the module lazily and only when *not* on tvOS. On TV the
|
|
* exported components are `undefined`, which is fine because every call site
|
|
* must early-return (`if (Platform.isTV) return null;`) before rendering a
|
|
* bottom sheet.
|
|
*
|
|
* Usage:
|
|
*
|
|
* import {
|
|
* BottomSheetModal,
|
|
* BottomSheetView,
|
|
* type BottomSheetMethods,
|
|
* } from "@/utils/expoUiBottomSheet";
|
|
*
|
|
* const ref = useRef<BottomSheetMethods>(null);
|
|
*
|
|
* if (Platform.isTV) return null;
|
|
* return <BottomSheetModal ref={ref}>...</BottomSheetModal>;
|
|
*/
|
|
type BottomSheetMod = typeof import("@expo/ui/community/bottom-sheet");
|
|
|
|
const mod: BottomSheetMod = Platform.isTV
|
|
? ({} as BottomSheetMod)
|
|
: (require("@expo/ui/community/bottom-sheet") as BottomSheetMod);
|
|
|
|
export const BottomSheetModal = mod.BottomSheetModal;
|
|
export const BottomSheetView = mod.BottomSheetView;
|
|
export const BottomSheetScrollView = mod.BottomSheetScrollView;
|
|
export const BottomSheetTextInput = mod.BottomSheetTextInput;
|
|
|
|
export type { BottomSheetMethods } from "@expo/ui/community/bottom-sheet";
|