mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-17 18:02:09 -05:00
* improvement(docs): added new platform ss * rename approval to human in the loop * cleanup * remove yml * removed other languages large sections * fix icons
74 lines
1.8 KiB
TypeScript
74 lines
1.8 KiB
TypeScript
import { PARALLEL } from '@/executor/consts'
|
|
import type { ExecutionContext, LoopPauseScope, ParallelPauseScope } from '@/executor/types'
|
|
|
|
interface NodeMetadataLike {
|
|
nodeId: string
|
|
loopId?: string
|
|
parallelId?: string
|
|
branchIndex?: number
|
|
branchTotal?: number
|
|
}
|
|
|
|
export function generatePauseContextId(
|
|
baseBlockId: string,
|
|
nodeMetadata: NodeMetadataLike,
|
|
loopScope?: LoopPauseScope
|
|
): string {
|
|
let contextId = baseBlockId
|
|
|
|
if (typeof nodeMetadata.branchIndex === 'number') {
|
|
contextId = `${contextId}${PARALLEL.BRANCH.PREFIX}${nodeMetadata.branchIndex}${PARALLEL.BRANCH.SUFFIX}`
|
|
}
|
|
|
|
if (loopScope) {
|
|
contextId = `${contextId}_loop${loopScope.iteration}`
|
|
}
|
|
|
|
return contextId
|
|
}
|
|
|
|
export function buildTriggerBlockId(nodeId: string): string {
|
|
if (nodeId.includes('__response')) {
|
|
return nodeId.replace('__response', '__trigger')
|
|
}
|
|
|
|
if (nodeId.endsWith('_response')) {
|
|
return nodeId.replace(/_response$/, '_trigger')
|
|
}
|
|
|
|
return `${nodeId}__trigger`
|
|
}
|
|
|
|
export function mapNodeMetadataToPauseScopes(
|
|
ctx: ExecutionContext,
|
|
nodeMetadata: NodeMetadataLike
|
|
): {
|
|
parallelScope?: ParallelPauseScope
|
|
loopScope?: LoopPauseScope
|
|
} {
|
|
let parallelScope: ParallelPauseScope | undefined
|
|
let loopScope: LoopPauseScope | undefined
|
|
|
|
if (nodeMetadata.parallelId && typeof nodeMetadata.branchIndex === 'number') {
|
|
parallelScope = {
|
|
parallelId: nodeMetadata.parallelId,
|
|
branchIndex: nodeMetadata.branchIndex,
|
|
branchTotal: nodeMetadata.branchTotal,
|
|
}
|
|
}
|
|
|
|
if (nodeMetadata.loopId) {
|
|
const loopExecution = ctx.loopExecutions?.get(nodeMetadata.loopId)
|
|
const iteration = loopExecution?.iteration ?? 0
|
|
loopScope = {
|
|
loopId: nodeMetadata.loopId,
|
|
iteration,
|
|
}
|
|
}
|
|
|
|
return {
|
|
parallelScope,
|
|
loopScope,
|
|
}
|
|
}
|