1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-22 14:57:40 +01:00
smov/__old/controls/PauseControl.tsx

31 lines
765 B
TypeScript
Raw Normal View History

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;
iconSize?: string;
2023-01-09 21:51:24 +01:00
}
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
iconSize={props.iconSize}
2023-01-09 21:51:24 +01:00
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
);
}