import { MouseEventHandler, WheelEventHandler, useEffect, useRef, useState, } from 'react' import { v4 as uuidv4 } from 'uuid' import { useStore } from '../useStore' import { getNormalisedCoordinates, throttle } from '../lib/utils' import Loading from './Loading' import { cameraMouseDragGuards } from 'lib/cameraControls' import { useGlobalStateContext } from 'hooks/useGlobalStateContext' import { Models } from '@kittycad/lib' import { engineCommandManager } from '../lang/std/engineConnection' import { useModelingContext } from 'hooks/useModelingContext' import { useKclContext } from 'lang/KclSingleton' import { ClientSideScene } from 'clientSideScene/ClientSideSceneComp' import { NetworkHealthState, useNetworkStatus } from './NetworkHealthIndicator' export const Stream = ({ className = '' }: { className?: string }) => { const [isLoading, setIsLoading] = useState(true) const [clickCoords, setClickCoords] = useState<{ x: number; y: number }>() const videoRef = useRef(null) const { mediaStream, setButtonDownInStream, didDragInStream, setDidDragInStream, streamDimensions, } = useStore((s) => ({ mediaStream: s.mediaStream, setButtonDownInStream: s.setButtonDownInStream, didDragInStream: s.didDragInStream, setDidDragInStream: s.setDidDragInStream, streamDimensions: s.streamDimensions, })) const { settings } = useGlobalStateContext() const cameraControls = settings?.context?.cameraControls const { state } = useModelingContext() const { isExecuting } = useKclContext() const { overallState } = useNetworkStatus() const isNetworkOkay = overallState === NetworkHealthState.Ok useEffect(() => { if ( typeof window === 'undefined' || typeof RTCPeerConnection === 'undefined' ) return if (!videoRef.current) return if (!mediaStream) return videoRef.current.srcObject = mediaStream }, [mediaStream]) const handleMouseDown: MouseEventHandler = (e) => { if (!videoRef.current) return if (state.matches('Sketch')) return if (state.matches('Sketch no face')) return const { x, y } = getNormalisedCoordinates({ clientX: e.clientX, clientY: e.clientY, el: videoRef.current, ...streamDimensions, }) setButtonDownInStream(e.button) setClickCoords({ x, y }) } const fps = 60 const handleScroll: WheelEventHandler = throttle((e) => { if (!cameraMouseDragGuards[cameraControls].zoom.scrollCallback(e)) return engineCommandManager.sendSceneCommand({ type: 'modeling_cmd_req', cmd: { type: 'default_camera_zoom', magnitude: e.deltaY * 0.4, }, cmd_id: uuidv4(), }) }, Math.round(1000 / fps)) const handleMouseUp: MouseEventHandler = ({ clientX, clientY, ctrlKey, }) => { if (!videoRef.current) return setButtonDownInStream(undefined) if (state.matches('Sketch')) return if (state.matches('Sketch no face')) return const { x, y } = getNormalisedCoordinates({ clientX, clientY, el: videoRef.current, ...streamDimensions, }) const newCmdId = uuidv4() const interaction = ctrlKey ? 'pan' : 'rotate' const command: Models['WebSocketRequest_type'] = { type: 'modeling_cmd_req', cmd: { type: 'camera_drag_end', interaction, window: { x, y }, }, cmd_id: newCmdId, } if (!didDragInStream) { command.cmd = { type: 'select_with_point', selected_at_window: { x, y }, selection_type: 'add', } engineCommandManager.sendSceneCommand(command) } else if (didDragInStream) { command.cmd = { type: 'handle_mouse_drag_end', window: { x, y }, } void engineCommandManager.sendSceneCommand(command) } else { engineCommandManager.sendSceneCommand(command) } setDidDragInStream(false) setClickCoords(undefined) } const handleMouseMove: MouseEventHandler = (e) => { if (state.matches('Sketch')) return if (state.matches('Sketch no face')) return if (!clickCoords) return const delta = ((clickCoords.x - e.clientX) ** 2 + (clickCoords.y - e.clientY) ** 2) ** 0.5 if (delta > 5 && !didDragInStream) { setDidDragInStream(true) } } return (
e.preventDefault()} onContextMenuCapture={(e) => e.preventDefault()} >
) }