import { usePlayback } from "@/providers/PlaybackProvider"; import { runtimeTicksToMinutes } from "@/utils/time"; import { useActionSheet } from "@expo/react-native-action-sheet"; import { Feather, Ionicons } from "@expo/vector-icons"; import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models"; import { View } from "react-native"; import CastContext, { PlayServicesState, useRemoteMediaClient, } from "react-native-google-cast"; import { Button } from "./Button"; interface Props extends React.ComponentProps { item?: BaseItemDto | null; url?: string | null; } export const PlayButton: React.FC = ({ item, url, ...props }) => { const { showActionSheetWithOptions } = useActionSheet(); const client = useRemoteMediaClient(); const { currentlyPlaying, setCurrentlyPlayingState } = usePlayback(); const onPress = async () => { if (!url || !item) return; if (!client) { setCurrentlyPlayingState({ item, url }); return; } const options = ["Chromecast", "Device", "Cancel"]; const cancelButtonIndex = 2; showActionSheetWithOptions( { options, cancelButtonIndex, }, async (selectedIndex: number | undefined) => { switch (selectedIndex) { case 0: await CastContext.getPlayServicesState().then((state) => { if (state && state !== PlayServicesState.SUCCESS) CastContext.showPlayServicesErrorDialog(state); else { client.loadMedia({ mediaInfo: { contentUrl: url, contentType: "video/mp4", metadata: { type: item.Type === "Episode" ? "tvShow" : "movie", title: item.Name || "", subtitle: item.Overview || "", }, }, startTime: 0, }); } }); break; case 1: setCurrentlyPlayingState({ item, url }); break; case cancelButtonIndex: break; } } ); }; return ( ); };