import { MouseEventHandler, useEffect, useRef } from 'react' import { v4 as uuidv4 } from 'uuid' import { useStore } from '../useStore' export const Stream = ({ className = '' }) => { const videoRef = useRef(null) const { mediaStream, engineCommandManager, setIsMouseDownInStream, fileId, setFileId, setCmdId, } = useStore((s) => ({ mediaStream: s.mediaStream, engineCommandManager: s.engineCommandManager, isMouseDownInStream: s.isMouseDownInStream, setIsMouseDownInStream: s.setIsMouseDownInStream, fileId: s.fileId, setFileId: s.setFileId, setCmdId: s.setCmdId, })) useEffect(() => { if ( typeof window === 'undefined' || typeof RTCPeerConnection === 'undefined' ) return if (!videoRef.current) return if (!mediaStream) return videoRef.current.srcObject = mediaStream setFileId(uuidv4()) }, [mediaStream, engineCommandManager, setFileId]) const handleMouseDown: MouseEventHandler = ({ clientX, clientY, ctrlKey, }) => { if (!videoRef.current) return const { left, top } = videoRef.current.getBoundingClientRect() const x = clientX - left const y = clientY - top console.log('click', x, y) const newId = uuidv4() setCmdId(newId) const interaction = ctrlKey ? 'pan' : 'rotate' engineCommandManager?.sendSceneCommand({ type: 'modeling_cmd_req', cmd: { type: 'camera_drag_start', interaction, window: { x, y }, }, cmd_id: newId, file_id: fileId, }) setIsMouseDownInStream(true) } const handleMouseUp: MouseEventHandler = ({ clientX, clientY, ctrlKey, }) => { if (!videoRef.current) return const { left, top } = videoRef.current.getBoundingClientRect() const x = clientX - left const y = clientY - top const newCmdId = uuidv4() setCmdId(newCmdId) const interaction = ctrlKey ? 'pan' : 'rotate' engineCommandManager?.sendSceneCommand({ type: 'modeling_cmd_req', cmd: { type: 'camera_drag_end', interaction, window: { x, y }, }, cmd_id: newCmdId, file_id: fileId, }) setCmdId('') setIsMouseDownInStream(false) } return (
) }