mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 07:05:08 +01:00
76e4bc5851
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com>
70 lines
2.3 KiB
TypeScript
70 lines
2.3 KiB
TypeScript
import { useGoBack } from "@/hooks/useGoBack";
|
|
import { useVolumeControl } from "@/hooks/useVolumeToggle";
|
|
import { forwardRef, useContext, useEffect, useRef } from "react";
|
|
import { VideoErrorBoundary } from "./parts/VideoErrorBoundary";
|
|
import {
|
|
useVideoPlayerState,
|
|
VideoPlayerContext,
|
|
VideoPlayerContextProvider,
|
|
} from "./VideoContext";
|
|
|
|
export interface VideoPlayerProps {
|
|
autoPlay?: boolean;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const VideoPlayerInternals = forwardRef<
|
|
HTMLVideoElement,
|
|
{ autoPlay: boolean }
|
|
>((props, ref) => {
|
|
const video = useContext(VideoPlayerContext);
|
|
const didInitialize = useRef<{ source: string | null } | null>(null);
|
|
const { videoState } = useVideoPlayerState();
|
|
const { toggleVolume } = useVolumeControl();
|
|
|
|
useEffect(() => {
|
|
const value = { source: video.source };
|
|
const hasChanged = value.source !== didInitialize.current?.source;
|
|
if (!hasChanged) return;
|
|
if (!video.state.hasInitialized || !video.source) return;
|
|
video.state.initPlayer(video.source, video.sourceType);
|
|
didInitialize.current = value;
|
|
}, [didInitialize, video]);
|
|
|
|
// muted attribute is required for safari, as they cant change the volume itself
|
|
return (
|
|
<video
|
|
ref={ref}
|
|
autoPlay={props.autoPlay}
|
|
muted={video.state.volume === 0}
|
|
playsInline
|
|
className="h-full w-full"
|
|
/>
|
|
);
|
|
});
|
|
|
|
export function VideoPlayer(props: VideoPlayerProps) {
|
|
const playerRef = useRef<HTMLVideoElement | null>(null);
|
|
const playerWrapperRef = useRef<HTMLDivElement | null>(null);
|
|
const goBack = useGoBack();
|
|
|
|
// TODO move error boundary to only decorated, <VideoPlayer /> shouldn't have styling
|
|
|
|
return (
|
|
<VideoPlayerContextProvider player={playerRef} wrapper={playerWrapperRef}>
|
|
<div
|
|
className="is-video-player relative h-full w-full select-none overflow-hidden bg-black [border-left:env(safe-area-inset-left)_solid_transparent] [border-right:env(safe-area-inset-right)_solid_transparent]"
|
|
ref={playerWrapperRef}
|
|
>
|
|
<VideoErrorBoundary onGoBack={goBack}>
|
|
<VideoPlayerInternals
|
|
autoPlay={props.autoPlay ?? false}
|
|
ref={playerRef}
|
|
/>
|
|
<div className="absolute inset-0">{props.children}</div>
|
|
</VideoErrorBoundary>
|
|
</div>
|
|
</VideoPlayerContextProvider>
|
|
);
|
|
}
|