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
162 lines
5.5 KiB
TypeScript
162 lines
5.5 KiB
TypeScript
'use client'
|
|
|
|
import { Badge } from '@sim/emcn'
|
|
import { ChevronDown, Clipboard, Download, Search } from 'lucide-react'
|
|
import { resolveIcon } from '@/components/workflow-preview/block-icons'
|
|
|
|
type ValueType = 'string' | 'number' | 'boolean' | 'object' | 'array' | 'null'
|
|
|
|
/** Output value type → emcn Badge color variant. */
|
|
const TYPE_VARIANT = {
|
|
string: 'green',
|
|
number: 'blue',
|
|
boolean: 'orange',
|
|
array: 'purple',
|
|
object: 'gray',
|
|
null: 'gray',
|
|
} as const
|
|
|
|
interface OutputNode {
|
|
key: string
|
|
type?: ValueType
|
|
/** Primitive value shown beneath the key when expanded. */
|
|
value?: string
|
|
/** Nested fields for object/array nodes. */
|
|
children?: OutputNode[]
|
|
/** Collapse the node (chevron points right, nothing rendered beneath). */
|
|
expanded?: boolean
|
|
/** Emphasize this row as the one being read by the tag below. */
|
|
highlight?: boolean
|
|
}
|
|
|
|
interface LogRow {
|
|
name: string
|
|
type?: string
|
|
color?: string
|
|
duration?: string
|
|
selected?: boolean
|
|
}
|
|
|
|
interface OutputBundleProps {
|
|
/** The block's name (unique within the workflow), e.g. "classify". */
|
|
blockName: string
|
|
blockType?: string
|
|
blockColor?: string
|
|
/** Duration shown on the selected log row. */
|
|
duration?: string
|
|
/** Override the Logs column; defaults to Start + this block (selected). */
|
|
logs?: LogRow[]
|
|
values: OutputNode[]
|
|
}
|
|
|
|
function TypeBadge({ type }: { type: ValueType }) {
|
|
return (
|
|
<Badge variant={TYPE_VARIANT[type]} size='sm'>
|
|
{type}
|
|
</Badge>
|
|
)
|
|
}
|
|
|
|
function TreeNode({ node, depth = 0 }: { node: OutputNode; depth?: number }) {
|
|
const type = node.type ?? 'string'
|
|
const expanded = node.expanded ?? Boolean(node.children || node.value !== undefined)
|
|
return (
|
|
<div className='flex min-w-0 flex-col'>
|
|
<div className='flex min-h-[26px] items-center gap-2 rounded-[6px] px-1'>
|
|
<span
|
|
className='text-[13px]'
|
|
style={{ color: node.highlight ? 'var(--brand-secondary)' : 'var(--text-primary)' }}
|
|
>
|
|
{node.key}
|
|
</span>
|
|
<TypeBadge type={type} />
|
|
<ChevronDown
|
|
className='h-[7px] w-[9px] flex-shrink-0 text-[var(--text-muted)]'
|
|
style={expanded ? undefined : { transform: 'rotate(-90deg)' }}
|
|
/>
|
|
</div>
|
|
{expanded && (node.children || node.value !== undefined) && (
|
|
<div className='mt-0.5 ml-[5px] flex min-w-0 flex-col gap-0.5 border-[var(--divider)] border-l pl-[10px]'>
|
|
{node.children
|
|
? node.children.map((child) => (
|
|
<TreeNode key={child.key} node={child} depth={depth + 1} />
|
|
))
|
|
: node.value !== undefined && (
|
|
<div className='py-0.5 text-[13px] text-[var(--text-secondary)]'>{node.value}</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
/**
|
|
* A miniature of the app's run inspector — the Logs list beside the Output
|
|
* panel's typed tree — teaching what a block's output is: named, typed values
|
|
* remembered under the block's name, read with a `<blockName.key>` tag.
|
|
*/
|
|
export function OutputBundle({
|
|
blockName,
|
|
blockType = 'agent',
|
|
blockColor = '#33C482',
|
|
duration = '1.2s',
|
|
logs,
|
|
values,
|
|
}: OutputBundleProps) {
|
|
const logRows: LogRow[] = logs ?? [
|
|
{ name: 'Start', type: 'start_trigger', color: '#2FB3FF', duration: '9ms' },
|
|
{ name: blockName, type: blockType, color: blockColor, duration, selected: true },
|
|
]
|
|
|
|
return (
|
|
<div className='not-prose my-6 flex w-full max-w-[640px] flex-col gap-3'>
|
|
<div className='flex overflow-hidden rounded-xl border border-[var(--border)] bg-[var(--surface-1)]'>
|
|
<div className='flex w-[210px] flex-shrink-0 flex-col border-[var(--border)] border-r px-2 py-2'>
|
|
<div className='px-2 pb-2 text-[12px] text-[var(--text-muted)]'>Logs</div>
|
|
{logRows.map((row) => {
|
|
const Icon = row.type ? resolveIcon(row.type) : null
|
|
return (
|
|
<div
|
|
key={row.name}
|
|
className='flex h-[30px] items-center gap-2 rounded-[6px] px-2'
|
|
style={row.selected ? { background: 'var(--surface-active)' } : undefined}
|
|
>
|
|
<div
|
|
className='flex size-[18px] flex-shrink-0 items-center justify-center rounded-[5px]'
|
|
style={{ background: row.color ?? 'var(--border-1)' }}
|
|
>
|
|
{Icon && <Icon className='size-[10px] text-white' />}
|
|
</div>
|
|
<span className='truncate text-[13px] text-[var(--text-primary)]'>{row.name}</span>
|
|
{row.duration && (
|
|
<span className='ml-auto text-[12px] text-[var(--text-muted)]'>
|
|
{row.duration}
|
|
</span>
|
|
)}
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
|
|
<div className='flex min-w-0 flex-1 flex-col px-3 py-2'>
|
|
<div className='flex items-center gap-3 pb-2'>
|
|
<span className='text-[13px] text-[var(--text-primary)]'>Output</span>
|
|
<span className='text-[13px] text-[var(--text-muted)]'>Input</span>
|
|
<span className='ml-auto flex items-center gap-2 text-[var(--text-subtle)]'>
|
|
<Search className='size-[12px]' />
|
|
<Clipboard className='size-[12px]' />
|
|
<Download className='size-[12px]' />
|
|
<ChevronDown className='size-[12px]' />
|
|
</span>
|
|
</div>
|
|
<div className='flex min-w-0 flex-col gap-0.5'>
|
|
{values.map((node) => (
|
|
<TreeNode key={node.key} node={node} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|