d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
90 lines
2.8 KiB
TypeScript
90 lines
2.8 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { CONTAINER_DIMENSIONS } from '@sim/workflow-renderer'
|
|
import {
|
|
CONTAINER_PADDING_X,
|
|
CONTAINER_PADDING_Y,
|
|
DEFAULT_VERTICAL_SPACING,
|
|
} from '@/lib/workflows/autolayout/constants'
|
|
import { layoutBlocksCore } from '@/lib/workflows/autolayout/core'
|
|
import type { Edge, LayoutOptions } from '@/lib/workflows/autolayout/types'
|
|
import { filterLayoutEligibleBlockIds, getBlocksByParent } from '@/lib/workflows/autolayout/utils'
|
|
import type { BlockState } from '@/stores/workflows/workflow/types'
|
|
|
|
const logger = createLogger('AutoLayout:Containers')
|
|
|
|
/**
|
|
* Default horizontal spacing for containers (tighter than root level)
|
|
*/
|
|
const DEFAULT_CONTAINER_HORIZONTAL_SPACING = 400
|
|
|
|
/**
|
|
* Lays out children within container blocks (loops and parallels).
|
|
* Updates both child positions and container dimensions.
|
|
*/
|
|
export function layoutContainers(
|
|
blocks: Record<string, BlockState>,
|
|
edges: Edge[],
|
|
options: LayoutOptions = {}
|
|
): void {
|
|
const { children } = getBlocksByParent(blocks)
|
|
|
|
const containerOptions: LayoutOptions = {
|
|
horizontalSpacing: options.horizontalSpacing
|
|
? options.horizontalSpacing * 0.85
|
|
: DEFAULT_CONTAINER_HORIZONTAL_SPACING,
|
|
verticalSpacing: options.verticalSpacing ?? DEFAULT_VERTICAL_SPACING,
|
|
padding: { x: CONTAINER_PADDING_X, y: CONTAINER_PADDING_Y },
|
|
gridSize: options.gridSize,
|
|
}
|
|
|
|
for (const [parentId, childIds] of children.entries()) {
|
|
const parentBlock = blocks[parentId]
|
|
if (!parentBlock) continue
|
|
|
|
logger.debug('Processing container', { parentId, childCount: childIds.length })
|
|
|
|
const layoutChildIds = filterLayoutEligibleBlockIds(childIds, blocks)
|
|
const childBlocks: Record<string, BlockState> = {}
|
|
for (const childId of layoutChildIds) {
|
|
childBlocks[childId] = blocks[childId]
|
|
}
|
|
|
|
const childEdges = edges.filter(
|
|
(edge) => layoutChildIds.includes(edge.source) && layoutChildIds.includes(edge.target)
|
|
)
|
|
|
|
if (Object.keys(childBlocks).length === 0) {
|
|
continue
|
|
}
|
|
|
|
const { nodes, dimensions } = layoutBlocksCore(childBlocks, childEdges, {
|
|
isContainer: true,
|
|
layoutOptions: containerOptions,
|
|
})
|
|
|
|
for (const node of nodes.values()) {
|
|
blocks[node.id].position = node.position
|
|
}
|
|
|
|
const calculatedWidth = dimensions.width
|
|
const calculatedHeight = dimensions.height
|
|
|
|
const containerWidth = Math.max(calculatedWidth, CONTAINER_DIMENSIONS.DEFAULT_WIDTH)
|
|
const containerHeight = Math.max(calculatedHeight, CONTAINER_DIMENSIONS.DEFAULT_HEIGHT)
|
|
|
|
if (!parentBlock.data) {
|
|
parentBlock.data = {}
|
|
}
|
|
|
|
parentBlock.data.width = containerWidth
|
|
parentBlock.data.height = containerHeight
|
|
|
|
logger.debug('Container dimensions calculated', {
|
|
parentId,
|
|
width: containerWidth,
|
|
height: containerHeight,
|
|
childCount: childIds.length,
|
|
})
|
|
}
|
|
}
|