mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* feat(db-sync): added general sync file and implemented environment sync * improvement(workflows-store): structured workflows store system better and added getter for values across stores * fix(stores): deleted workflows/types since unused * improvement(db-sync): added workflow event syncs and debounce * improvement(db-sync): clean and upgraded db-sync system; environment sync implemented * improvement(db-sync): added batch sync with registry; init bug needs fixing * improvement(db-sync): finalized sync system and implemented for workflow * fix(db-sync): fixed client-side rendering * improvement(db-sync): created backwards sync system; environment implemented * improvement(db-sync): added colors to db * fix(db-sync): color sync with db * improvement(db-sync): added workflow backwards sync; fixing color bug and race condition * fix(db-stores): color sync * feature(db-sync): db-sync complete; need to sync history * improvement(db-sync): added scheduling * fix(db-sync): environment sync to db
71 lines
2.4 KiB
TypeScript
71 lines
2.4 KiB
TypeScript
import { useSubBlockStore } from './subblock/store'
|
|
import { BlockState, SubBlockState } from './workflow/types'
|
|
|
|
/**
|
|
* Merges workflow block states with subblock values while maintaining block structure
|
|
* @param blocks - Block configurations from workflow store
|
|
* @param workflowId - ID of the workflow to merge values for
|
|
* @param blockId - Optional specific block ID to merge (merges all if not provided)
|
|
* @returns Merged block states with updated values
|
|
*/
|
|
export function mergeSubblockState(
|
|
blocks: Record<string, BlockState>,
|
|
workflowId?: string,
|
|
blockId?: string
|
|
): Record<string, BlockState> {
|
|
const blocksToProcess = blockId ? { [blockId]: blocks[blockId] } : blocks
|
|
const subBlockStore = useSubBlockStore.getState()
|
|
|
|
return Object.entries(blocksToProcess).reduce(
|
|
(acc, [id, block]) => {
|
|
// Skip if block is undefined or doesn't have subBlocks
|
|
if (!block || !block.subBlocks) {
|
|
return acc
|
|
}
|
|
|
|
// Create a deep copy of the block's subBlocks to maintain structure
|
|
const mergedSubBlocks = Object.entries(block.subBlocks).reduce(
|
|
(subAcc, [subBlockId, subBlock]) => {
|
|
// Skip if subBlock is undefined
|
|
if (!subBlock) {
|
|
return subAcc
|
|
}
|
|
|
|
// Get the stored value for this subblock
|
|
let storedValue = null
|
|
|
|
// If workflowId is provided, use it to get the value
|
|
if (workflowId) {
|
|
// Try to get the value from the subblock store for this specific workflow
|
|
const workflowValues = subBlockStore.workflowValues[workflowId]
|
|
if (workflowValues && workflowValues[id]) {
|
|
storedValue = workflowValues[id][subBlockId]
|
|
}
|
|
} else {
|
|
// Fall back to the active workflow if no workflowId is provided
|
|
storedValue = subBlockStore.getValue(id, subBlockId)
|
|
}
|
|
|
|
// Create a new subblock object with the same structure but updated value
|
|
subAcc[subBlockId] = {
|
|
...subBlock,
|
|
value: storedValue !== undefined && storedValue !== null ? storedValue : subBlock.value,
|
|
}
|
|
|
|
return subAcc
|
|
},
|
|
{} as Record<string, SubBlockState>
|
|
)
|
|
|
|
// Return the full block state with updated subBlocks
|
|
acc[id] = {
|
|
...block,
|
|
subBlocks: mergedSubBlocks,
|
|
}
|
|
|
|
return acc
|
|
},
|
|
{} as Record<string, BlockState>
|
|
)
|
|
}
|