2023-01-09 21:51:24 +01:00
|
|
|
import { Icons } from "@/components/Icon";
|
2023-01-08 15:37:16 +01:00
|
|
|
import { useCallback } from "react";
|
2023-01-09 21:51:24 +01:00
|
|
|
import { VideoPlayerIconButton } from "../parts/VideoPlayerIconButton";
|
2023-01-08 15:37:16 +01:00
|
|
|
import { useVideoPlayerState } from "../VideoContext";
|
2023-01-08 13:15:32 +01:00
|
|
|
|
2023-01-09 21:51:24 +01:00
|
|
|
interface Props {
|
|
|
|
className?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function PauseControl(props: Props) {
|
2023-01-08 15:37:16 +01:00
|
|
|
const { videoState } = useVideoPlayerState();
|
2023-01-08 13:15:32 +01:00
|
|
|
|
|
|
|
const handleClick = useCallback(() => {
|
2023-01-08 15:37:16 +01:00
|
|
|
if (videoState?.isPlaying) videoState.pause();
|
|
|
|
else videoState.play();
|
|
|
|
}, [videoState]);
|
2023-01-08 13:15:32 +01:00
|
|
|
|
2023-01-09 21:51:24 +01:00
|
|
|
const icon =
|
|
|
|
videoState.isPlaying || videoState.isSeeking ? Icons.PAUSE : Icons.PLAY;
|
2023-01-08 13:15:32 +01:00
|
|
|
|
|
|
|
return (
|
2023-01-09 21:51:24 +01:00
|
|
|
<VideoPlayerIconButton
|
|
|
|
className={props.className}
|
|
|
|
icon={icon}
|
2023-01-08 16:23:42 +01:00
|
|
|
onClick={handleClick}
|
2023-01-09 21:51:24 +01:00
|
|
|
/>
|
2023-01-08 13:15:32 +01:00
|
|
|
);
|
|
|
|
}
|