import { useVideoPlayerDescriptor } from "@/video/state/hooks"; import { useControls } from "@/video/state/logic/controls"; import { useInterface } from "@/video/state/logic/interface"; import { useMediaPlaying } from "@/video/state/logic/mediaplaying"; import React, { useCallback, useEffect, useRef, useState } from "react"; interface BackdropActionProps { children?: React.ReactNode; onBackdropChange?: (showing: boolean) => void; } export function BackdropAction(props: BackdropActionProps) { const descriptor = useVideoPlayerDescriptor(); const controls = useControls(descriptor); const mediaPlaying = useMediaPlaying(descriptor); const videoInterface = useInterface(descriptor); const [moved, setMoved] = useState(false); const timeout = useRef | null>(null); const clickareaRef = useRef(null); const handleMouseMove = useCallback(() => { if (!moved) setMoved(true); if (timeout.current) clearTimeout(timeout.current); timeout.current = setTimeout(() => { if (moved) setMoved(false); timeout.current = null; }, 3000); }, [setMoved, moved]); const handleMouseLeave = useCallback(() => { setMoved(false); }, [setMoved]); const handleClick = useCallback( (e: React.MouseEvent) => { if (!clickareaRef.current || clickareaRef.current !== e.target) return; if (videoInterface.popout !== null) return; if (mediaPlaying.isPlaying) controls.pause(); else controls.play(); }, [controls, mediaPlaying, videoInterface] ); const handleDoubleClick = useCallback( (e: React.MouseEvent) => { if (!clickareaRef.current || clickareaRef.current !== e.target) return; if (!videoInterface.isFullscreen) controls.enterFullscreen(); else controls.exitFullscreen(); }, [controls, videoInterface] ); const lastBackdropValue = useRef(null); useEffect(() => { const currentValue = moved || mediaPlaying.isPaused; if (currentValue !== lastBackdropValue.current) { lastBackdropValue.current = currentValue; if (!currentValue) controls.closePopout(); props.onBackdropChange?.(currentValue); } }, [controls, moved, mediaPlaying, props]); const showUI = moved || mediaPlaying.isPaused; return (
{props.children}
); }