import { MouseEventHandler, WheelEventHandler, useEffect, useRef, useState, } from 'react' import { v4 as uuidv4 } from 'uuid' import { useStore } from '../useStore' import { getNormalisedCoordinates } from '../lib/utils' import Loading from './Loading' import { cameraMouseDragGuards } from 'lib/cameraControls' import { useGlobalStateContext } from 'hooks/useGlobalStateContext' import { CameraDragInteractionType_type } from '@kittycad/lib/dist/types/src/models' export const Stream = ({ className = '' }) => { const [isLoading, setIsLoading] = useState(true) const [clickCoords, setClickCoords] = useState<{ x: number; y: number }>() const videoRef = useRef(null) const { mediaStream, engineCommandManager, setButtonDownInStream, didDragInStream, setDidDragInStream, streamDimensions, isExecuting, } = useStore((s) => ({ mediaStream: s.mediaStream, engineCommandManager: s.engineCommandManager, setButtonDownInStream: s.setButtonDownInStream, fileId: s.fileId, didDragInStream: s.didDragInStream, setDidDragInStream: s.setDidDragInStream, streamDimensions: s.streamDimensions, isExecuting: s.isExecuting, })) const { settings: { context: { cameraControls }, }, } = useGlobalStateContext() useEffect(() => { if ( typeof window === 'undefined' || typeof RTCPeerConnection === 'undefined' ) return if (!videoRef.current) return if (!mediaStream) return videoRef.current.srcObject = mediaStream }, [mediaStream, engineCommandManager]) const handleMouseDown: MouseEventHandler = (e) => { if (!videoRef.current) return const { x, y } = getNormalisedCoordinates({ clientX: e.clientX, clientY: e.clientY, el: videoRef.current, ...streamDimensions, }) const newId = uuidv4() const interactionGuards = cameraMouseDragGuards[cameraControls] let interaction: CameraDragInteractionType_type if (interactionGuards.pan.callback(e)) { interaction = 'pan' } else if (interactionGuards.rotate.callback(e)) { interaction = 'rotate' } else if (interactionGuards.zoom.dragCallback(e)) { interaction = 'zoom' } else { return } engineCommandManager?.sendSceneCommand({ type: 'modeling_cmd_req', cmd: { type: 'camera_drag_start', interaction, window: { x, y }, }, cmd_id: newId, }) setButtonDownInStream(e.button) setClickCoords({ x, y }) } const handleScroll: WheelEventHandler = (e) => { if (!cameraMouseDragGuards[cameraControls].zoom.scrollCallback(e)) return e.preventDefault() engineCommandManager?.sendSceneCommand({ type: 'modeling_cmd_req', cmd: { type: 'default_camera_zoom', magnitude: e.deltaY * 0.4, }, cmd_id: uuidv4(), }) } const handleMouseUp: MouseEventHandler = ({ clientX, clientY, ctrlKey, }) => { if (!videoRef.current) return const { x, y } = getNormalisedCoordinates({ clientX, clientY, el: videoRef.current, ...streamDimensions, }) const newCmdId = uuidv4() const interaction = ctrlKey ? 'pan' : 'rotate' engineCommandManager?.sendSceneCommand({ type: 'modeling_cmd_req', cmd: { type: 'camera_drag_end', interaction, window: { x, y }, }, cmd_id: newCmdId, }) setButtonDownInStream(0) if (!didDragInStream) { engineCommandManager?.sendSceneCommand({ type: 'modeling_cmd_req', cmd: { type: 'select_with_point', selection_type: 'add', selected_at_window: { x, y }, }, cmd_id: uuidv4(), }) } setDidDragInStream(false) setClickCoords(undefined) } const handleMouseMove: MouseEventHandler = (e) => { if (!clickCoords) return const delta = ((clickCoords.x - e.clientX) ** 2 + (clickCoords.y - e.clientY) ** 2) ** 0.5 if (delta > 5 && !didDragInStream) { setDidDragInStream(true) } } return (
) }