mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
233 lines
5.9 KiB
Svelte
233 lines
5.9 KiB
Svelte
<script lang="ts">
|
|
import { ScriptService, FlowService, type Script, AppService } from '$lib/gen'
|
|
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { base } from '$lib/base'
|
|
import { createEventDispatcher, untrack } from 'svelte'
|
|
|
|
import Select from './Select.svelte'
|
|
|
|
import { getScriptByPath } from '$lib/scripts'
|
|
import { Button, Drawer, DrawerContent } from './common'
|
|
import HighlightCode from './HighlightCode.svelte'
|
|
import FlowPathViewer from './flows/content/FlowPathViewer.svelte'
|
|
import ToggleButton from './common/toggleButton-v2/ToggleButton.svelte'
|
|
import ToggleButtonGroup from './common/toggleButton-v2/ToggleButtonGroup.svelte'
|
|
import { Code, Code2, ExternalLink, Pen, RefreshCw } from 'lucide-svelte'
|
|
import type { SupportedLanguage } from '$lib/common'
|
|
import FlowIcon from './home/FlowIcon.svelte'
|
|
import DarkModeObserver from './DarkModeObserver.svelte'
|
|
import { truncate } from '$lib/utils'
|
|
|
|
interface Props {
|
|
initialPath?: string | undefined
|
|
scriptPath?: string | undefined
|
|
allowFlow?: boolean
|
|
itemKind?: 'script' | 'flow' | 'app'
|
|
kinds?: Script['kind'][]
|
|
disabled?: boolean
|
|
allowRefresh?: boolean
|
|
allowEdit?: boolean
|
|
allowView?: boolean
|
|
}
|
|
|
|
let {
|
|
initialPath = undefined,
|
|
scriptPath = $bindable(undefined),
|
|
allowFlow = false,
|
|
itemKind = $bindable('script'),
|
|
kinds = ['script'],
|
|
disabled = false,
|
|
allowRefresh = false,
|
|
allowEdit = true,
|
|
allowView = true
|
|
}: Props = $props()
|
|
|
|
let items: { value: string; label: string }[] = $state([])
|
|
let drawerViewer: Drawer | undefined = $state()
|
|
let drawerFlowViewer: Drawer | undefined = $state()
|
|
let code: string = $state('')
|
|
let lang: SupportedLanguage | undefined = $state()
|
|
|
|
let options: [[string, any, any, string | undefined]] = [['Script', 'script', Code2, 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 ? ` | ${truncate(flow.summary, 20)}` : ''}`
|
|
}))
|
|
} else if (itemKind == 'script') {
|
|
items = (
|
|
await ScriptService.listScripts({
|
|
workspace: $workspaceStore!,
|
|
kinds: kinds.join(',')
|
|
})
|
|
).map((script) => ({
|
|
value: script.path,
|
|
label: `${script.path}${script.summary ? ` | ${truncate(script.summary, 20)}` : ''}`
|
|
}))
|
|
} else if (itemKind == 'app') {
|
|
items = (await AppService.listApps({ workspace: $workspaceStore! })).map((app) => ({
|
|
value: app.path,
|
|
label: `${app.path}${app.summary ? ` | ${truncate(app.summary, 20)}` : ''}`
|
|
}))
|
|
}
|
|
}
|
|
|
|
$effect(() => {
|
|
itemKind && $workspaceStore && untrack(() => loadItems())
|
|
})
|
|
let darkMode: boolean = $state(false)
|
|
</script>
|
|
|
|
<DarkModeObserver bind:darkMode />
|
|
|
|
<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}
|
|
on:selected={() => {
|
|
scriptPath = ''
|
|
}}
|
|
>
|
|
{#snippet children({ item })}
|
|
{#each options as [label, value, icon, selectedColor]}
|
|
<ToggleButton {icon} {disabled} {value} {label} {selectedColor} {item} />
|
|
{/each}
|
|
{/snippet}
|
|
</ToggleButtonGroup>
|
|
</div>
|
|
{/if}
|
|
|
|
{#if disabled}
|
|
<input type="text" value={scriptPath ?? initialPath ?? ''} disabled />
|
|
{:else}
|
|
<Select
|
|
bind:value={
|
|
() => scriptPath ?? initialPath,
|
|
(path) => {
|
|
scriptPath = path
|
|
dispatch('select', { path, itemKind })
|
|
}
|
|
}
|
|
class="grow shrink max-w-full"
|
|
{items}
|
|
placeholder="Pick {itemKind === 'app' ? 'an' : 'a'} {itemKind}"
|
|
/>
|
|
{/if}
|
|
|
|
{#if allowRefresh}
|
|
<Button
|
|
variant="border"
|
|
color="light"
|
|
wrapperClasses="self-stretch"
|
|
on:click={loadItems}
|
|
startIcon={{ icon: RefreshCw }}
|
|
iconOnly
|
|
/>
|
|
{/if}
|
|
|
|
{#if scriptPath !== undefined && scriptPath !== ''}
|
|
{#if itemKind == 'flow'}
|
|
<div class="flex gap-2">
|
|
{#if allowEdit}
|
|
<Button
|
|
endIcon={{ icon: ExternalLink }}
|
|
target="_blank"
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
href="{base}/flows/edit/{scriptPath}">Edit</Button
|
|
>
|
|
{/if}
|
|
{#if allowView}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
on:click={async () => {
|
|
drawerFlowViewer?.openDrawer()
|
|
}}
|
|
>
|
|
View
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{:else if itemKind == 'app'}
|
|
<div class="flex gap-2">
|
|
{#if allowEdit}
|
|
<Button
|
|
startIcon={{ icon: Pen }}
|
|
target="_blank"
|
|
color="light"
|
|
size="xs"
|
|
href="{base}/apps/edit/{scriptPath}"
|
|
variant="border"
|
|
>
|
|
Edit
|
|
</Button>
|
|
{/if}
|
|
{#if allowView}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
target="_blank"
|
|
startIcon={{ icon: Code }}
|
|
href="{base}/apps/get/{scriptPath}"
|
|
>
|
|
View
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{:else}
|
|
<div class="flex gap-2">
|
|
{#if allowEdit}
|
|
<Button
|
|
startIcon={{ icon: Pen }}
|
|
target="_blank"
|
|
color="light"
|
|
size="xs"
|
|
href="{base}/scripts/edit/{scriptPath}"
|
|
variant="border"
|
|
>
|
|
Edit
|
|
</Button>
|
|
{/if}
|
|
{#if allowView}
|
|
<Button
|
|
color="light"
|
|
size="xs"
|
|
variant="border"
|
|
startIcon={{ icon: Code }}
|
|
on:click={async () => {
|
|
const { language, content } = await getScriptByPath(scriptPath ?? '')
|
|
code = content
|
|
lang = language
|
|
drawerViewer?.openDrawer()
|
|
}}
|
|
>
|
|
View
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
</div>
|