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
111 lines
3.2 KiB
TypeScript
111 lines
3.2 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { getErrorMessage } from '@sim/utils/errors'
|
|
import {
|
|
DEFAULT_HORIZONTAL_SPACING,
|
|
DEFAULT_VERTICAL_SPACING,
|
|
} from '@/lib/workflows/autolayout/constants'
|
|
import { layoutContainers } from '@/lib/workflows/autolayout/containers'
|
|
import { assignLayers, layoutBlocksCore } from '@/lib/workflows/autolayout/core'
|
|
import type { Edge, LayoutOptions, LayoutResult } from '@/lib/workflows/autolayout/types'
|
|
import {
|
|
calculateSubflowDepths,
|
|
filterLayoutEligibleBlockIds,
|
|
getBlocksByParent,
|
|
prepareContainerDimensions,
|
|
resolveNoteOverlaps,
|
|
} from '@/lib/workflows/autolayout/utils'
|
|
import type { BlockState } from '@/stores/workflows/workflow/types'
|
|
|
|
const logger = createLogger('AutoLayout')
|
|
|
|
/**
|
|
* Applies automatic layout to all blocks in a workflow.
|
|
* Positions blocks in layers based on their connections (edges).
|
|
*/
|
|
export function applyAutoLayout(
|
|
blocks: Record<string, BlockState>,
|
|
edges: Edge[],
|
|
options: LayoutOptions = {}
|
|
): LayoutResult {
|
|
try {
|
|
logger.info('Starting auto layout', {
|
|
blockCount: Object.keys(blocks).length,
|
|
edgeCount: edges.length,
|
|
})
|
|
|
|
const blocksCopy: Record<string, BlockState> = structuredClone(blocks)
|
|
|
|
const horizontalSpacing = options.horizontalSpacing ?? DEFAULT_HORIZONTAL_SPACING
|
|
const verticalSpacing = options.verticalSpacing ?? DEFAULT_VERTICAL_SPACING
|
|
|
|
prepareContainerDimensions(
|
|
blocksCopy,
|
|
edges,
|
|
layoutBlocksCore,
|
|
horizontalSpacing,
|
|
verticalSpacing,
|
|
options.gridSize
|
|
)
|
|
|
|
const { root: rootBlockIds } = getBlocksByParent(blocksCopy)
|
|
const layoutRootIds = filterLayoutEligibleBlockIds(rootBlockIds, blocksCopy)
|
|
|
|
const rootBlocks: Record<string, BlockState> = {}
|
|
for (const id of layoutRootIds) {
|
|
rootBlocks[id] = blocksCopy[id]
|
|
}
|
|
|
|
const rootEdges = edges.filter(
|
|
(edge) => layoutRootIds.includes(edge.source) && layoutRootIds.includes(edge.target)
|
|
)
|
|
|
|
const subflowDepths = calculateSubflowDepths(blocksCopy, edges, assignLayers)
|
|
|
|
if (Object.keys(rootBlocks).length > 0) {
|
|
const { nodes } = layoutBlocksCore(rootBlocks, rootEdges, {
|
|
isContainer: false,
|
|
layoutOptions: options,
|
|
subflowDepths,
|
|
})
|
|
|
|
for (const node of nodes.values()) {
|
|
blocksCopy[node.id].position = node.position
|
|
}
|
|
}
|
|
|
|
layoutContainers(blocksCopy, edges, options)
|
|
|
|
resolveNoteOverlaps(blocksCopy, verticalSpacing)
|
|
|
|
logger.info('Auto layout completed successfully', {
|
|
blockCount: Object.keys(blocksCopy).length,
|
|
})
|
|
|
|
return {
|
|
blocks: blocksCopy,
|
|
success: true,
|
|
}
|
|
} catch (error) {
|
|
logger.error('Auto layout failed', { error })
|
|
return {
|
|
blocks,
|
|
success: false,
|
|
error: getErrorMessage(error, 'Unknown error'),
|
|
}
|
|
}
|
|
}
|
|
|
|
export {
|
|
getTargetedLayoutChangeSet,
|
|
getTargetedLayoutImpact,
|
|
} from '@/lib/workflows/autolayout/change-set'
|
|
export { applyTargetedLayout } from '@/lib/workflows/autolayout/targeted'
|
|
export type { Edge, LayoutOptions, LayoutResult } from '@/lib/workflows/autolayout/types'
|
|
export {
|
|
getBlockMetrics,
|
|
isContainerType,
|
|
shouldSkipAutoLayout,
|
|
snapPositionToGrid,
|
|
transferBlockHeights,
|
|
} from '@/lib/workflows/autolayout/utils'
|