forked from Ninjalama/streamyfin_mirror
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { BlurView } from "expo-blur";
|
|
import React, { useEffect } from "react";
|
|
import { Platform, View, ViewProps } from "react-native";
|
|
import GoogleCast, {
|
|
CastButton,
|
|
useCastDevice,
|
|
useDevices,
|
|
useRemoteMediaClient,
|
|
} from "react-native-google-cast";
|
|
|
|
interface Props extends ViewProps {
|
|
width?: number;
|
|
height?: number;
|
|
background?: "blur" | "transparent";
|
|
}
|
|
|
|
export const Chromecast: React.FC<Props> = ({
|
|
width = 48,
|
|
height = 48,
|
|
background = "transparent",
|
|
...props
|
|
}) => {
|
|
const client = useRemoteMediaClient();
|
|
const castDevice = useCastDevice();
|
|
const devices = useDevices();
|
|
const sessionManager = GoogleCast.getSessionManager();
|
|
const discoveryManager = GoogleCast.getDiscoveryManager();
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
if (!discoveryManager) {
|
|
return;
|
|
}
|
|
|
|
await discoveryManager.startDiscovery();
|
|
})();
|
|
}, [client, devices, castDevice, sessionManager, discoveryManager]);
|
|
|
|
if (background === "transparent")
|
|
return (
|
|
<View
|
|
className="rounded-full h-10 w-10 flex items-center justify-center b"
|
|
{...props}
|
|
>
|
|
<CastButton style={{ tintColor: "white", height, width }} />
|
|
</View>
|
|
);
|
|
|
|
if (Platform.OS === "android")
|
|
return (
|
|
<View
|
|
className="rounded-full h-10 w-10 flex items-center justify-center bg-neutral-800/80"
|
|
{...props}
|
|
>
|
|
<CastButton style={{ tintColor: "white", height, width }} />
|
|
</View>
|
|
);
|
|
|
|
return (
|
|
<BlurView
|
|
intensity={100}
|
|
className="rounded-full overflow-hidden h-10 aspect-square flex items-center justify-center"
|
|
{...props}
|
|
>
|
|
<CastButton style={{ tintColor: "white", height, width }} />
|
|
</BlurView>
|
|
);
|
|
};
|