mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
c000bbca28
* 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>
165 lines
4.5 KiB
Svelte
165 lines
4.5 KiB
Svelte
<script lang="ts">
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { createEventDispatcher, getContext, untrack } from 'svelte'
|
|
import type { FlowEditorContext } from '../types'
|
|
import { ScriptService } from '$lib/gen'
|
|
import SearchItems from '$lib/components/SearchItems.svelte'
|
|
import { Badge, Skeleton } from '$lib/components/common'
|
|
import { fade } from 'svelte/transition'
|
|
import { flip } from 'svelte/animate'
|
|
import { emptyString, truncateHash } from '$lib/utils'
|
|
import Toggle from '$lib/components/Toggle.svelte'
|
|
import NoItemFound from '$lib/components/home/NoItemFound.svelte'
|
|
import TextInput from '$lib/components/text_input/TextInput.svelte'
|
|
|
|
type Item = {
|
|
path: string
|
|
summary?: string
|
|
description?: string
|
|
hash?: string
|
|
}
|
|
|
|
let items = $state(undefined) as Item[] | undefined
|
|
|
|
let filteredItems = $state(undefined) as (Item & { marked?: string })[] | undefined
|
|
|
|
const flowEditorContext = getContext<FlowEditorContext>('FlowEditorContext')
|
|
let opWs = $derived(flowEditorContext?.opWorkspace?.() ?? $workspaceStore)
|
|
interface Props {
|
|
kind?: 'script' | 'trigger' | 'approval' | 'failure'
|
|
isTemplate?: boolean | undefined
|
|
displayLock?: boolean
|
|
filter?: string
|
|
children?: import('svelte').Snippet
|
|
}
|
|
|
|
let {
|
|
kind = 'script',
|
|
isTemplate = undefined,
|
|
displayLock = false,
|
|
filter = $bindable(''),
|
|
children
|
|
}: Props = $props()
|
|
|
|
async function loadItems(): Promise<void> {
|
|
items = await ScriptService.listScripts({
|
|
workspace: opWs!,
|
|
kinds: kind,
|
|
isTemplate,
|
|
withoutDescription: true
|
|
})
|
|
}
|
|
|
|
let ownerFilter: string | undefined = $state(undefined)
|
|
|
|
const dispatch = createEventDispatcher()
|
|
let lockHash = $state(false)
|
|
$effect(() => {
|
|
$workspaceStore && kind && untrack(() => loadItems())
|
|
})
|
|
$effect(() => {
|
|
if ($workspaceStore) {
|
|
ownerFilter = undefined
|
|
}
|
|
})
|
|
let prefilteredItems = $derived(
|
|
ownerFilter ? items?.filter((x) => x.path.startsWith(ownerFilter!)) : items
|
|
)
|
|
let owners = $derived(
|
|
Array.from(
|
|
new Set(filteredItems?.map((x) => x.path.split('/').slice(0, 2).join('/')) ?? [])
|
|
).sort()
|
|
)
|
|
</script>
|
|
|
|
<SearchItems
|
|
{filter}
|
|
items={prefilteredItems}
|
|
bind:filteredItems
|
|
f={(x) => (emptyString(x.summary) ? x.path : x.summary + ' (' + x.path + ')')}
|
|
/>
|
|
<div class="flex flex-col min-h-0">
|
|
<div class="w-full flex items-center gap-2 mb-3">
|
|
{@render children?.()}
|
|
|
|
<TextInput
|
|
inputProps={{
|
|
type: 'text',
|
|
onkeydown: (e) => e.stopPropagation(),
|
|
placeholder: 'Search Workspace Scripts'
|
|
}}
|
|
bind:value={filter}
|
|
class="grow"
|
|
/>
|
|
</div>
|
|
|
|
{#if filteredItems}
|
|
{#if owners.length > 0}
|
|
<div class="gap-2 w-full flex flex-wrap my-2">
|
|
{#each owners as owner (owner)}
|
|
<div in:fade={{ duration: 50 }} animate:flip={{ duration: 100 }}>
|
|
<Badge
|
|
class="cursor-pointer hover:bg-gray-200"
|
|
clickable
|
|
onclick={() => {
|
|
ownerFilter = ownerFilter == owner ? undefined : owner
|
|
}}
|
|
color={owner === ownerFilter ? 'blue' : 'gray'}
|
|
baseClass={owner === ownerFilter ? 'border border-blue-500' : 'border'}
|
|
>
|
|
{owner}
|
|
{#if owner === ownerFilter}✗{/if}
|
|
</Badge>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
{/if}
|
|
{#if displayLock}
|
|
<div class="flex flex-row-reverse mb-1">
|
|
<Toggle
|
|
bind:checked={lockHash}
|
|
options={{ left: 'Latest version', right: 'Lock current hash permanently' }}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
{#if filter.length > 0 && filteredItems.length == 0}
|
|
<NoItemFound />
|
|
{/if}
|
|
<ul class="divide-y border rounded-md">
|
|
{#each filteredItems as { path, hash, summary, description, marked }}
|
|
<li class="flex flex-row w-full">
|
|
<button
|
|
class="p-4 gap-1 flex flex-row grow hover:bg-surface-hover bg-surface transition-all text-primary"
|
|
onclick={() => {
|
|
dispatch('pick', { path, hash: lockHash ? hash : undefined })
|
|
}}
|
|
>
|
|
<div class="flex flex-col">
|
|
<div class="text-sm font-semibold flex flex-col">
|
|
<span class="mr-2 text-left">
|
|
{#if marked}
|
|
{@html marked}
|
|
{:else}
|
|
{!summary || summary.length == 0 ? path : summary}
|
|
{/if}</span
|
|
>
|
|
<span class="font-normal text-xs text-left italic overflow-hidden"
|
|
>{path ?? ''}</span
|
|
>
|
|
</div>
|
|
<div class="text-xs font-light italic text-left">{description ?? ''}</div>
|
|
</div>
|
|
{#if lockHash}<Badge large baseClass="ml-4">{truncateHash(hash ?? '')}</Badge>{/if}
|
|
</button>
|
|
</li>
|
|
{/each}
|
|
</ul>
|
|
{:else}
|
|
<div class="mt-6"></div>
|
|
|
|
{#each new Array(6) as _}
|
|
<Skeleton layout={[[4], 0.7]} />
|
|
{/each}
|
|
{/if}
|
|
</div>
|