mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 00:03:07 +00:00
* fix(frontend): scope raw-app/flow/script editors to the session workspace Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): scope flow and script editor operations to the session workspace Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): scope flow preview, inline-script creation and datatable schema to the session workspace Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Codex review — thread session workspace through flow resource pickers, script fetch, preview cancel/recording and path collision check Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Claude review — pass session workspace to preview FlowStatusViewer and align FlowChatManager guards Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Pi review — show acting workspace in script-not-found message and fetch picked script from it in EditorBar Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Codex review round 2 — thread session workspace into flow step test, raw-app inline runnable, inline editor toolbars and MCP OAuth path Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Codex review round 3 — thread session workspace into dynamic-input helpers and the flow-preview argument side panel (history/saved-inputs/captures) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Codex review round 4 — thread session workspace into nested flow/script drawers, flow chat inputs and the flow input side tabs Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Codex review round 5 — thread session workspace into script-module fork/reload and key the raw-app schema cache by workspace Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Codex review round 6 — key the DB manager schema cache by acting workspace Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): address Codex review round 7 — thread session workspace into resource-valued arg pickers and the editor variable/resource helper drawers Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(frontend): scope the flow asset explorer's ResourceEditorDrawer to the acting workspace Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix: thread acting workspace through flow asset explore controls Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix: thread acting workspace through SQL REPL, secret args, helper forms, S3 inputs, saved inputs Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
75 lines
1.7 KiB
Svelte
75 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import { displayDate } from '$lib/utils.js'
|
|
import { InputService, type CreateInput, type RunnableType } from '$lib/gen/index.js'
|
|
import { workspaceStore } from '$lib/stores.js'
|
|
import { Button } from '$lib/components/common'
|
|
import { Save } from 'lucide-svelte'
|
|
import { sendUserToast } from '$lib/utils.js'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import Tooltip from '$lib/components/Tooltip.svelte'
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
interface Props {
|
|
runnableId: string | undefined
|
|
runnableType: RunnableType | undefined
|
|
args: object
|
|
disabled?: boolean
|
|
small?: boolean | undefined
|
|
showTooltip?: boolean | undefined
|
|
workspace?: string | undefined
|
|
}
|
|
|
|
let {
|
|
runnableId,
|
|
runnableType,
|
|
args,
|
|
disabled = false,
|
|
small = undefined,
|
|
showTooltip = undefined,
|
|
workspace = undefined
|
|
}: Props = $props()
|
|
|
|
let ws = $derived(workspace ?? $workspaceStore)
|
|
|
|
let savingInputs = $state(false)
|
|
|
|
async function saveInput(args: object) {
|
|
savingInputs = true
|
|
|
|
const requestBody: CreateInput = {
|
|
name: 'Saved ' + displayDate(new Date()),
|
|
args: args as any
|
|
}
|
|
|
|
try {
|
|
await InputService.createInput({
|
|
workspace: ws!,
|
|
runnableId,
|
|
runnableType,
|
|
requestBody
|
|
})
|
|
} catch (err) {
|
|
console.error(err)
|
|
sendUserToast(`Failed to save Input: ${err}`, true)
|
|
}
|
|
|
|
savingInputs = false
|
|
dispatch('update')
|
|
}
|
|
</script>
|
|
|
|
<Button
|
|
on:click={() => saveInput(args)}
|
|
{disabled}
|
|
loading={savingInputs}
|
|
startIcon={{ icon: Save }}
|
|
variant={small ? 'subtle' : 'default'}
|
|
unifiedSize="sm"
|
|
>
|
|
<span>{small ? 'Save inputs' : 'Save current input'}</span>
|
|
{#if showTooltip}
|
|
<Tooltip>Shared inputs are available to anyone with access to the script</Tooltip>
|
|
{/if}
|
|
</Button>
|