movie-web/src/components/video/VideoPlayer.tsx

28 lines
752 B
TypeScript
Raw Normal View History

2023-01-08 14:37:16 +00:00
import { forwardRef, useContext, useRef } from "react";
import { VideoPlayerContext, VideoPlayerContextProvider } from "./VideoContext";
2023-01-08 12:15:32 +00:00
interface VideoPlayerProps {
children?: React.ReactNode;
}
2023-01-08 14:37:16 +00:00
const VideoPlayerInternals = forwardRef<HTMLVideoElement>((_, ref) => {
2023-01-08 12:15:32 +00:00
const video = useContext(VideoPlayerContext);
return (
2023-01-08 14:37:16 +00:00
<video controls ref={ref}>
2023-01-08 12:15:32 +00:00
{video.source ? <source src={video.source} type="video/mp4" /> : null}
</video>
);
});
export function VideoPlayer(props: VideoPlayerProps) {
const playerRef = useRef<HTMLVideoElement | null>(null);
return (
2023-01-08 14:37:16 +00:00
<VideoPlayerContextProvider player={playerRef}>
<VideoPlayerInternals ref={playerRef} />
{props.children}
2023-01-08 12:15:32 +00:00
</VideoPlayerContextProvider>
);
}