transient nodes

This commit is contained in:
wass08
2026-01-23 11:13:11 +09:00
parent 4f20586ae9
commit 3240266476
5 changed files with 34 additions and 4 deletions
+2
View File
@@ -26,3 +26,5 @@ export * from './schema'
export { default as useScene } from './store/use-scene'
// Systems
export { WallSystem } from './systems/wall/wall-system'
export { isObject } from './utils/types'
+11 -3
View File
@@ -6,6 +6,7 @@ import { persist } from 'zustand/middleware'
import { BuildingNode, type Zone } from '../schema'
import { LevelNode } from '../schema/nodes/level'
import type { AnyNode, AnyNodeId } from '../schema/types'
import { isObject } from '../utils/types'
import * as nodeActions from './actions/node-actions'
import * as zoneActions from './actions/zone-actions'
@@ -76,10 +77,10 @@ const useScene = create<SceneState>()(
loadScene: () => {
if (get().rootNodeIds.length > 0) {
// Assign all nodes as dirty to force re-validation
// Assign all nodes as dirty to force re-validation
Object.values(get().nodes).forEach((node) => {
get().markDirty(node.id)
})
})
return // Scene already loaded
}
@@ -149,7 +150,14 @@ const useScene = create<SceneState>()(
{
name: 'editor-storage',
partialize: (state) => ({
nodes: state.nodes,
nodes: Object.fromEntries(
Object.entries(state.nodes).filter(([_, node]) => {
const meta = node.metadata
const isTransient = isObject(meta) && 'isTransient' in meta && meta.isTransient === true
return !isTransient
}),
),
rootNodeIds: state.rootNodeIds,
zones: state.zones,
zoneIds: state.zoneIds,
+7
View File
@@ -0,0 +1,7 @@
/**
* Type guard to check if a value is a plain object (and not null or an array).
* Useful for narrowing down Zod's generic JSON types.
*/
export const isObject = (val: unknown): val is Record<string, any> => {
return val !== null && typeof val === 'object' && !Array.isArray(val)
}