d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
/**
|
|
* Shared column-naming helpers used by every path that auto-derives a
|
|
* column name + type from a workflow block output: the table column-sidebar
|
|
* UI, and the Copilot/Mothership `add_workflow_group` op. Keeping one
|
|
* implementation means the AI's auto-named columns match what a user would
|
|
* get from the sidebar.
|
|
*/
|
|
|
|
import type { ColumnDefinition } from '@/lib/table/types'
|
|
|
|
/**
|
|
* Slugifies a string into a `NAME_PATTERN`-safe column name. Lowercase,
|
|
* non-alphanum runs collapse to `_`, leading digits get a `c_` prefix, empty
|
|
* results fall back to `output`.
|
|
*/
|
|
export function slugifyColumnName(value: string): string {
|
|
let slug = value
|
|
.toLowerCase()
|
|
.replace(/[^a-z0-9_]+/g, '_')
|
|
.replace(/^_+|_+$/g, '')
|
|
if (!slug) slug = 'output'
|
|
if (/^[0-9]/.test(slug)) slug = `c_${slug}`
|
|
return slug
|
|
}
|
|
|
|
/**
|
|
* Pick a non-colliding column name for a block-output `path`. Uses the bare
|
|
* path slug; on collision, appends `_0`, `_1`, …
|
|
*/
|
|
export function deriveOutputColumnName(path: string, taken: Set<string>): string {
|
|
const base = slugifyColumnName(path)
|
|
if (!taken.has(base)) return base
|
|
for (let i = 0; i < 1000; i++) {
|
|
const candidate = `${base}_${i}`
|
|
if (!taken.has(candidate)) return candidate
|
|
}
|
|
return `${base}_${Date.now()}`
|
|
}
|
|
|
|
/**
|
|
* Map a block-output leaf type onto a table column type. Block schemas use
|
|
* a superset (`array`, `object`, etc.); anything outside the column-type
|
|
* union falls back to `json`, the most permissive shape that still validates.
|
|
*/
|
|
export function columnTypeForLeaf(leafType: string | undefined): ColumnDefinition['type'] {
|
|
switch (leafType) {
|
|
case 'string':
|
|
case 'number':
|
|
case 'boolean':
|
|
case 'date':
|
|
case 'json':
|
|
return leafType
|
|
default:
|
|
return 'json'
|
|
}
|
|
}
|