* BROKEN: start of scopes for each setting * Clean up later: mostly-functional scoped settings! Broken command bar, unimplemented generated settings components * Working persisted project settings in-folder * Start working toward automatic commands and settings UI * Relatively stable, settings-menu-editable * Settings persistence tweaks after merge * Custom settings UI working properly, cleaner types * Allow boolean command types, create Settings UI for them * Add support for option and string Settings input types * Proof of concept settings from command bar * Add all settings to command bar * Allow settings to be hidden on a level * Better command titles for settings * Hide the settings the settings from the commands bar * Derive command defaultValue from *current* settingsMachine context * Fix generated settings UI for 'options' type settings * Pretty settings modal 💅 * Allow for rollback to parent level setting * fmt * Fix tsc errors not related to loading from localStorage * Better setting descriptions, better buttons * Make displayName searchable in command bar * Consolidate constants, get working in browser * Start fixing tests, better types for saved settings payloads * Fix playwright tests * Add a test for the settings modal * Add AtLeast to codespell ignore list * Goofed merge of codespellrc * Try fixing linux E2E tests * Make codespellrc word lowercase * fmt * Fix data-testid in Tauri test * Don't set text settings if nothing changed * Turn off unimplemented settings * Allow for multiple "execution-done" messages to have appeared in snapshot tests * Try fixing up snapshot tests * Switch from .json to .toml settings file format * Use a different method for overriding the default units * Try to force using the new common storage state in snapshot tests * Update tests to use TOML * fmt and remove console logs * Restore units to export * tsc errors, make snapshot tests use TOML * Ensure that snapshot tests use the basicStorageState * Re-organize use of test.use() * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu) * Update snapshots one more time since lighting changed * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu) * Fix broken "Show in folder" for project-level settings * Fire all relevant actions after settings reset * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu) * Properly reset the default directory * Hide settings by platform * Actually honor showDebugPanel * Unify settings hiding logic * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu) * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu) * fix first extrusion snapshot * another attempt to fix extrustion snapshot * Rerun test suite * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu) * trigger CI * more extrusion stuff * Replace resetSettings console log with comment --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Kurt Hutten Irev-Dev <k.hutten@protonmail.ch>
129 lines
4.0 KiB
TypeScript
129 lines
4.0 KiB
TypeScript
import { MouseEventHandler, useEffect, useRef, useState } from 'react'
|
|
import { useStore } from '../useStore'
|
|
import { getNormalisedCoordinates } from '../lib/utils'
|
|
import Loading from './Loading'
|
|
import { useSettingsAuthContext } from 'hooks/useSettingsAuthContext'
|
|
import { useModelingContext } from 'hooks/useModelingContext'
|
|
import { ClientSideScene } from 'clientSideScene/ClientSideSceneComp'
|
|
import { NetworkHealthState, useNetworkStatus } from './NetworkHealthIndicator'
|
|
import { butName } from 'lib/cameraControls'
|
|
import { sendSelectEventToEngine } from 'lib/selections'
|
|
|
|
export const Stream = ({ className = '' }: { className?: string }) => {
|
|
const [isLoading, setIsLoading] = useState(true)
|
|
const [clickCoords, setClickCoords] = useState<{ x: number; y: number }>()
|
|
const videoRef = useRef<HTMLVideoElement>(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 } = useSettingsAuthContext()
|
|
const { state } = useModelingContext()
|
|
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<HTMLDivElement> = (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 handleMouseUp: MouseEventHandler<HTMLDivElement> = (e) => {
|
|
if (!videoRef.current) return
|
|
setButtonDownInStream(undefined)
|
|
if (state.matches('Sketch')) return
|
|
if (state.matches('Sketch no face')) return
|
|
|
|
if (!didDragInStream && butName(e).left) {
|
|
sendSelectEventToEngine(e, videoRef.current, streamDimensions)
|
|
}
|
|
|
|
setDidDragInStream(false)
|
|
setClickCoords(undefined)
|
|
}
|
|
|
|
const handleMouseMove: MouseEventHandler<HTMLVideoElement> = (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 (
|
|
<div
|
|
id="stream"
|
|
className={className}
|
|
onMouseUp={handleMouseUp}
|
|
onMouseDown={handleMouseDown}
|
|
onContextMenu={(e) => e.preventDefault()}
|
|
onContextMenuCapture={(e) => e.preventDefault()}
|
|
>
|
|
<video
|
|
ref={videoRef}
|
|
muted
|
|
autoPlay
|
|
controls={false}
|
|
onPlay={() => setIsLoading(false)}
|
|
onMouseMoveCapture={handleMouseMove}
|
|
className="w-full cursor-pointer h-full"
|
|
disablePictureInPicture
|
|
style={{ transitionDuration: '200ms', transitionProperty: 'filter' }}
|
|
id="video-stream"
|
|
/>
|
|
<ClientSideScene
|
|
cameraControls={settings.context.modeling.mouseControls.current}
|
|
/>
|
|
{!isNetworkOkay && !isLoading && (
|
|
<div className="text-center absolute inset-0">
|
|
<Loading>
|
|
<span data-testid="loading-stream">Stream disconnected</span>
|
|
</Loading>
|
|
</div>
|
|
)}
|
|
{isLoading && (
|
|
<div className="text-center absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2">
|
|
<Loading>
|
|
<span data-testid="loading-stream">Loading stream...</span>
|
|
</Loading>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|