2023-01-08 15:37:16 +01:00
|
|
|
import { forwardRef, useContext, useRef } from "react";
|
|
|
|
import { VideoPlayerContext, VideoPlayerContextProvider } from "./VideoContext";
|
2023-01-08 13:15:32 +01:00
|
|
|
|
|
|
|
interface VideoPlayerProps {
|
|
|
|
children?: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
2023-01-08 15:37:16 +01:00
|
|
|
const VideoPlayerInternals = forwardRef<HTMLVideoElement>((_, ref) => {
|
2023-01-08 13:15:32 +01:00
|
|
|
const video = useContext(VideoPlayerContext);
|
|
|
|
|
|
|
|
return (
|
2023-01-08 17:51:38 +01:00
|
|
|
<video ref={ref} preload="auto" playsInline className="h-full w-full">
|
2023-01-08 13:15:32 +01:00
|
|
|
{video.source ? <source src={video.source} type="video/mp4" /> : null}
|
|
|
|
</video>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
export function VideoPlayer(props: VideoPlayerProps) {
|
|
|
|
const playerRef = useRef<HTMLVideoElement | null>(null);
|
2023-01-08 16:23:42 +01:00
|
|
|
const playerWrapperRef = useRef<HTMLDivElement | null>(null);
|
2023-01-08 13:15:32 +01:00
|
|
|
|
|
|
|
return (
|
2023-01-08 16:23:42 +01:00
|
|
|
<VideoPlayerContextProvider player={playerRef} wrapper={playerWrapperRef}>
|
|
|
|
<div
|
|
|
|
className="relative aspect-video w-full bg-black"
|
|
|
|
ref={playerWrapperRef}
|
|
|
|
>
|
|
|
|
<VideoPlayerInternals ref={playerRef} />
|
|
|
|
<div className="absolute inset-0">{props.children}</div>
|
|
|
|
</div>
|
2023-01-08 13:15:32 +01:00
|
|
|
</VideoPlayerContextProvider>
|
|
|
|
);
|
|
|
|
}
|