dceb3965d6
* Make editable schema based and fix a couple UX issues * Refactor the icons a bit * Add support for points, lines, line segments, and line loops * Adjust nudge multipliers * Fix types * Fix helpers not showing on hover in some cases
116 lines
2.8 KiB
TypeScript
116 lines
2.8 KiB
TypeScript
import type {StateCreator} from 'zustand'
|
|
import create from 'zustand'
|
|
import type {Object3D, Scene, WebGLRenderer} from 'three'
|
|
import {Group} from 'three'
|
|
import type {ISheetObject} from '@theatre/core'
|
|
import type {ObjectConfig} from './editableFactoryConfigUtils'
|
|
|
|
export type TransformControlsMode = 'translate' | 'rotate' | 'scale'
|
|
export type TransformControlsSpace = 'world' | 'local'
|
|
export type ViewportShading = 'wireframe' | 'flat' | 'solid' | 'rendered'
|
|
|
|
export type BaseSheetObjectType = ISheetObject<any>
|
|
|
|
export const allRegisteredObjects = new WeakSet<BaseSheetObjectType>()
|
|
|
|
export interface Editable<T> {
|
|
type: string
|
|
sheetObject: ISheetObject<any>
|
|
objectConfig: ObjectConfig<T>
|
|
visibleOnlyInEditor: boolean
|
|
}
|
|
|
|
export type EditableSnapshot<T extends Editable<any> = Editable<any>> = {
|
|
proxyObject?: Object3D | null
|
|
} & T
|
|
|
|
export interface SerializedEditable {
|
|
type: string
|
|
}
|
|
|
|
export interface EditableState {
|
|
editables: Record<string, SerializedEditable>
|
|
}
|
|
|
|
export type EditorStore = {
|
|
scene: Scene | null
|
|
gl: WebGLRenderer | null
|
|
helpersRoot: Group
|
|
editables: Record<string, Editable<any>>
|
|
// this will come in handy when we start supporting multiple canvases
|
|
canvasName: string
|
|
sceneSnapshot: Scene | null
|
|
editablesSnapshot: Record<string, EditableSnapshot> | null
|
|
|
|
init: (scene: Scene, gl: WebGLRenderer) => void
|
|
|
|
addEditable: (uniqueName: string, editable: Editable<any>) => void
|
|
createSnapshot: () => void
|
|
setSnapshotProxyObject: (
|
|
proxyObject: Object3D | null,
|
|
uniqueName: string,
|
|
) => void
|
|
}
|
|
|
|
const config: StateCreator<EditorStore> = (set) => {
|
|
return {
|
|
sheet: null,
|
|
editorObject: null,
|
|
scene: null,
|
|
gl: null,
|
|
helpersRoot: new Group(),
|
|
editables: {},
|
|
canvasName: 'default',
|
|
sceneSnapshot: null,
|
|
editablesSnapshot: null,
|
|
initialEditorCamera: {},
|
|
|
|
init: (scene, gl) => {
|
|
set({
|
|
scene,
|
|
gl,
|
|
})
|
|
},
|
|
|
|
addEditable: (uniqueName, editable) => {
|
|
set((state) => ({
|
|
editables: {
|
|
...state.editables,
|
|
[uniqueName]: editable,
|
|
},
|
|
}))
|
|
},
|
|
|
|
createSnapshot: () => {
|
|
set((state) => ({
|
|
sceneSnapshot: state.scene?.clone() ?? null,
|
|
editablesSnapshot: state.editables,
|
|
}))
|
|
},
|
|
|
|
setSnapshotProxyObject: (proxyObject, uniqueName) => {
|
|
set((state) => ({
|
|
editablesSnapshot: {
|
|
...state.editablesSnapshot,
|
|
[uniqueName]: {
|
|
...state.editablesSnapshot![uniqueName],
|
|
proxyObject,
|
|
},
|
|
},
|
|
}))
|
|
},
|
|
}
|
|
}
|
|
|
|
export const useEditorStore = create<EditorStore>(config)
|
|
|
|
export type BindFunction = (options: {
|
|
allowImplicitInstancing?: boolean
|
|
gl: WebGLRenderer
|
|
scene: Scene
|
|
}) => void
|
|
|
|
export const bindToCanvas: BindFunction = ({gl, scene}) => {
|
|
const init = useEditorStore.getState().init
|
|
init(scene, gl)
|
|
}
|