mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-21 08:02:38 +00:00
* feat(frontend): run a linked agent's draft when testing a flow, and offer to deploy it Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): settle an agent's autosave before reading it, and refresh its card on a draft save Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): deploy the agent draft that was validated, and make the draft-tools flag explicit Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): refuse a stale agent deploy, and warn when a never-deployed agent is kept as a draft Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * docs: record what inlining an agent draft puts in a preview job Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): name the draft-changes dialog after what it lists Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): refuse a draft deploy when the draft row is gone Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): apply the missing-draft refusal to raw apps too Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): stop reading a deployed resource row as a draft on deploy Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): do not mistake an outage or a vanished draft for a deploy Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): refuse an agent read whose pending draft save failed Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): space the trigger badges and right-align the agent actions Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): surface a failed agent-draft read instead of dropping it Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): give the agent draft delete a baseline so a newer edit survives Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): drop the agent draft cell locally instead of deleting twice Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * test(frontend): pass the withDraft flag the guard tests were missing Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * refactor(frontend): deploy agent drafts the way Review & Deploy does Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): give the read-only flow graph its own linked-tools bucket Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): base the resource draft delete on the read that promoted it Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): refresh every step linking an agent when its draft is saved Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * fix(frontend): write nothing at all when a resource draft has gone Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp * test(frontend): pin that the resource draft delete follows its baseline seed Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017B4omp8dRgmLitbpQEqFMp --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
159 lines
5.4 KiB
Svelte
159 lines
5.4 KiB
Svelte
<script lang="ts">
|
|
import type { FlowModule, FlowValue, TriggersCount } from '$lib/gen'
|
|
import type { TriggerContext } from '$lib/components/triggers'
|
|
import { Triggers } from '$lib/components/triggers/triggers.svelte'
|
|
|
|
import { createEventDispatcher, hasContext, setContext } from 'svelte'
|
|
import { writable } from 'svelte/store'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
import FlowGraphViewerStep from './FlowGraphViewerStep.svelte'
|
|
import FlowGraphV2 from './graph/FlowGraphV2.svelte'
|
|
import { dfs } from './flows/dfs'
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { untrack } from 'svelte'
|
|
import { publishLinkedAgentTools } from './flows/flowState'
|
|
import { linkedToolsScope } from './flows/linkedAgentToolsStore.svelte'
|
|
|
|
interface Props {
|
|
flow: {
|
|
summary: string
|
|
description?: string
|
|
value: FlowValue
|
|
schema?: any
|
|
path?: string
|
|
}
|
|
overflowAuto?: boolean
|
|
noSide?: boolean
|
|
download?: boolean
|
|
noGraph?: boolean
|
|
triggerNode?: boolean
|
|
stepDetail?: FlowModule | string | undefined
|
|
workspace?: string | undefined
|
|
minHeight?: number
|
|
noBorder?: boolean
|
|
hideDefaultInputs?: boolean
|
|
provideTriggerContext?: boolean
|
|
fillAvailableHeight?: boolean
|
|
}
|
|
|
|
let {
|
|
flow,
|
|
overflowAuto = false,
|
|
noSide = false,
|
|
download = false,
|
|
noGraph = false,
|
|
triggerNode = false,
|
|
stepDetail = $bindable(undefined),
|
|
workspace = $workspaceStore,
|
|
minHeight = 400,
|
|
noBorder = false,
|
|
hideDefaultInputs = false,
|
|
provideTriggerContext = false,
|
|
fillAvailableHeight = false
|
|
}: Props = $props()
|
|
|
|
let availableHeight = $state(0)
|
|
|
|
if (provideTriggerContext && !hasContext('TriggerContext')) {
|
|
const triggersCount = writable<TriggersCount | undefined>(undefined)
|
|
setContext<TriggerContext>('TriggerContext', {
|
|
triggersCount,
|
|
simplifiedPoll: writable(false),
|
|
showCaptureHint: writable(undefined),
|
|
triggersState: new Triggers()
|
|
})
|
|
}
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
// A bucket of this viewer's own, never the editor's. Both are keyed by (workspace, flow path), so
|
|
// a viewer mounted over the flow being edited — the version-history drawer, which renders the
|
|
// same path — would otherwise publish its deployed tools into the editor's bucket and replace the
|
|
// drafted tool nodes there. The editor's graph has to keep showing the tools a preview would
|
|
// actually run, and nothing republishes when the drawer closes. `FlowStatusViewerInner` scopes
|
|
// itself the same way, with `job:<id>`.
|
|
let linkedToolsPath = $derived(`view:${flow?.path ?? ''}`)
|
|
|
|
// This read-only viewer doesn't run initFlowState, so linked agents' tools would otherwise never
|
|
// resolve. Resolve them for display, keyed by module id. Best-effort: publishLinkedAgentTools
|
|
// swallows access errors and publishes [], so an inaccessible agent simply shows no tool nodes
|
|
// (its label still names the link) — this never affects a run.
|
|
$effect(() => {
|
|
// Flow modules only: resource-imported tool ids are not flow-global, so publishing a nested
|
|
// linked agent under its bare id would supersede a top-level step that happens to share it.
|
|
const modules = dfs(flow?.value?.modules ?? [], (m) => m, { skipToolNodes: true })
|
|
const ws = workspace
|
|
untrack(() => {
|
|
for (const m of modules) {
|
|
const value = m?.value as { type?: string; agent?: string } | undefined
|
|
if (value?.type === 'aiagent' && value.agent) {
|
|
// Without the draft: this viewer shows a deployed flow or a past run, both of which
|
|
// used the deployed agent.
|
|
publishLinkedAgentTools(
|
|
value.agent,
|
|
ws,
|
|
linkedToolsScope(ws, linkedToolsPath),
|
|
m.id,
|
|
false
|
|
)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<div bind:clientHeight={availableHeight} class="grid grid-cols-3 w-full h-full min-h-0">
|
|
{#if !noGraph}
|
|
<div
|
|
class="{noSide || (hideDefaultInputs && stepDetail == undefined)
|
|
? 'col-span-3'
|
|
: 'sm:col-span-2 col-span-3'} w-full h-full min-h-0 max-h-full"
|
|
class:overflow-auto={overflowAuto}
|
|
class:border={!noBorder}
|
|
>
|
|
<FlowGraphV2
|
|
{triggerNode}
|
|
earlyStop={flow?.value?.skip_expr !== undefined}
|
|
cache={flow?.value?.cache_ttl !== undefined}
|
|
path={flow?.path}
|
|
{linkedToolsPath}
|
|
{download}
|
|
minHeight={fillAvailableHeight ? Math.max(minHeight, availableHeight) : minHeight}
|
|
{workspace}
|
|
modules={flow?.value?.modules}
|
|
failureModule={flow?.value?.failure_module}
|
|
preprocessorModule={flow?.value?.preprocessor_module}
|
|
notes={flow?.value?.notes}
|
|
groups={flow?.value?.groups}
|
|
onSelect={(nodeId) => {
|
|
if (nodeId === 'Trigger') {
|
|
dispatch('triggerDetail')
|
|
return
|
|
} else if (nodeId === 'failure') {
|
|
stepDetail = flow?.value?.failure_module
|
|
} else if (nodeId === 'preprocessor') {
|
|
stepDetail = flow?.value?.preprocessor_module
|
|
} else {
|
|
stepDetail = dfs(flow?.value?.modules ?? [], (m) => m).find((m) => m?.id === nodeId)
|
|
}
|
|
stepDetail = stepDetail ?? nodeId
|
|
dispatch('select', stepDetail)
|
|
}}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
{#if !noSide && !(hideDefaultInputs && stepDetail == undefined)}
|
|
<div
|
|
class={twMerge(
|
|
fillAvailableHeight
|
|
? 'relative w-full h-full min-h-0 border-r border-b border-t p-2 pt-0 overflow-auto hidden sm:flex flex-col gap-4'
|
|
: 'relative w-full h-full min-h-[150px] max-h-[90vh] border-r border-b border-t p-2 pt-0 overflow-auto hidden sm:flex flex-col gap-4',
|
|
noGraph ? 'border-0 w-max' : ''
|
|
)}
|
|
>
|
|
<FlowGraphViewerStep schema={flow?.schema} {stepDetail} {hideDefaultInputs} {workspace} />
|
|
</div>
|
|
{/if}
|
|
</div>
|