mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
69ee98a835
* feat: add workspace error handler * feat: run error handler as group * fix: handler picker initial path * fix(backend): separate global / workspace handlers * fix(frontend): error handler picker tab change --------- Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
146 lines
4.3 KiB
Svelte
146 lines
4.3 KiB
Svelte
<script lang="ts">
|
|
import { ScriptService, FlowService, Script } from '$lib/gen'
|
|
|
|
import { hubScripts, workspaceStore } from '$lib/stores'
|
|
import { createEventDispatcher } from 'svelte'
|
|
|
|
import Select from './apps/svelte-select/lib/index'
|
|
|
|
import { getScriptByPath } from '$lib/scripts'
|
|
import { Button, Drawer, DrawerContent } from './common'
|
|
import HighlightCode from './HighlightCode.svelte'
|
|
import FlowPathViewer from './flows/content/FlowPathViewer.svelte'
|
|
import { SELECT_INPUT_DEFAULT_STYLE } from '../defaults'
|
|
import ToggleButton from './common/toggleButton-v2/ToggleButton.svelte'
|
|
import ToggleButtonGroup from './common/toggleButton-v2/ToggleButtonGroup.svelte'
|
|
import { Code2, Globe } from 'lucide-svelte'
|
|
import type { SupportedLanguage } from '$lib/common'
|
|
import { faRotateRight } from '@fortawesome/free-solid-svg-icons'
|
|
import Icon from 'svelte-awesome'
|
|
import FlowIcon from './home/FlowIcon.svelte'
|
|
|
|
export let initialPath: string | undefined = undefined
|
|
export let scriptPath: string | undefined = undefined
|
|
export let allowFlow = false
|
|
export let allowHub = false
|
|
export let itemKind: 'hub' | 'script' | 'flow' = allowHub ? 'hub' : 'script'
|
|
export let kind: Script.kind = Script.kind.SCRIPT
|
|
export let disabled = false
|
|
export let canRefresh = false
|
|
|
|
let items: { value: string; label: string }[] = []
|
|
let drawerViewer: Drawer
|
|
let drawerFlowViewer: Drawer
|
|
let code: string = ''
|
|
let lang: SupportedLanguage | undefined
|
|
|
|
let options: [[string, any, any, string | undefined]] = [['Script', 'script', Code2, undefined]]
|
|
allowHub && options.unshift(['Hub', 'hub', Globe, undefined])
|
|
allowFlow && options.push(['Flow', 'flow', FlowIcon, '#14b8a6'])
|
|
const dispatch = createEventDispatcher()
|
|
|
|
async function loadItems(): Promise<void> {
|
|
if (itemKind == 'flow') {
|
|
items = (await FlowService.listFlows({ workspace: $workspaceStore! })).map((flow) => ({
|
|
value: flow.path,
|
|
label: `${flow.path}${flow.summary ? ` | ${flow.summary}` : ''}`
|
|
}))
|
|
} else if (itemKind == 'script') {
|
|
items = (await ScriptService.listScripts({ workspace: $workspaceStore!, kind })).map(
|
|
(script) => ({
|
|
value: script.path,
|
|
label: `${script.path}${script.summary ? ` | ${script.summary}` : ''}`
|
|
})
|
|
)
|
|
} else {
|
|
items =
|
|
$hubScripts?.map((x) => ({
|
|
value: x.path,
|
|
label: `${x.path}${x.summary ? ` | ${x.summary}` : ''}`
|
|
})) ?? []
|
|
}
|
|
}
|
|
|
|
$: itemKind && $workspaceStore && loadItems()
|
|
</script>
|
|
|
|
<Drawer bind:this={drawerViewer} size="900px">
|
|
<DrawerContent title="Script {scriptPath}" on:close={drawerViewer.closeDrawer}>
|
|
<HighlightCode {code} language={lang} />
|
|
</DrawerContent>
|
|
</Drawer>
|
|
|
|
<Drawer bind:this={drawerFlowViewer} size="900px">
|
|
<DrawerContent title="Flow {scriptPath}" on:close={drawerFlowViewer.closeDrawer}>
|
|
<FlowPathViewer path={scriptPath ?? ''} />
|
|
</DrawerContent>
|
|
</Drawer>
|
|
|
|
<div class="flex flex-row items-center gap-4 w-full mt-2">
|
|
{#if options.length > 1}
|
|
<div>
|
|
<ToggleButtonGroup bind:selected={itemKind}>
|
|
{#each options as [label, value, icon, selectedColor]}
|
|
<ToggleButton {icon} {disabled} {value} {label} {selectedColor} />
|
|
{/each}
|
|
</ToggleButtonGroup>
|
|
</div>
|
|
{/if}
|
|
|
|
{#if disabled}
|
|
<input type="text" value={scriptPath} disabled />
|
|
{:else}
|
|
<Select
|
|
value={items.find((x) => x.value == initialPath)}
|
|
class="grow"
|
|
on:change={() => {
|
|
dispatch('select', { path: scriptPath })
|
|
}}
|
|
on:input={(ev) => {
|
|
if (!ev.detail) {
|
|
dispatch('select', { path: undefined })
|
|
}
|
|
}}
|
|
bind:justValue={scriptPath}
|
|
{items}
|
|
placeholder="Pick a {itemKind}"
|
|
inputStyles={SELECT_INPUT_DEFAULT_STYLE.inputStyles}
|
|
containerStyles={SELECT_INPUT_DEFAULT_STYLE.containerStyles}
|
|
portal={false}
|
|
/>
|
|
{/if}
|
|
|
|
{#if canRefresh}
|
|
<Button variant="border" color="light" wrapperClasses="self-stretch" on:click={loadItems}
|
|
><Icon scale={0.8} data={faRotateRight} /></Button
|
|
>
|
|
{/if}
|
|
|
|
{#if scriptPath !== undefined && scriptPath !== ''}
|
|
{#if itemKind == 'flow'}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
on:click={async () => {
|
|
drawerFlowViewer.openDrawer()
|
|
}}
|
|
>
|
|
Show flow
|
|
</Button>
|
|
{:else}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
on:click={async () => {
|
|
const { language, content } = await getScriptByPath(scriptPath ?? '')
|
|
code = content
|
|
lang = language
|
|
drawerViewer.openDrawer()
|
|
}}
|
|
>
|
|
Show code
|
|
</Button>
|
|
{/if}
|
|
{/if}
|
|
</div>
|