mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 08:00:45 +00:00
303 lines
8.5 KiB
Svelte
303 lines
8.5 KiB
Svelte
<script lang="ts">
|
|
import { Script, ScriptService } from '$lib/gen'
|
|
|
|
import { goto } from '$app/navigation'
|
|
import { page } from '$app/stores'
|
|
import { inferArgs } from '$lib/infer'
|
|
import { initialCode, isInitialCode } from '$lib/script_helpers'
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { encodeState, sendUserToast, setQueryWithoutLoad } from '$lib/utils'
|
|
import Path from './Path.svelte'
|
|
import RadioButton from './RadioButton.svelte'
|
|
import Required from './Required.svelte'
|
|
import ScriptEditor from './ScriptEditor.svelte'
|
|
import ScriptSchema from './ScriptSchema.svelte'
|
|
import CenteredPage from './CenteredPage.svelte'
|
|
import UnsavedConfirmationModal from './common/confirmationModal/UnsavedConfirmationModal.svelte'
|
|
import { dirtyStore } from './common/confirmationModal/dirtyStore'
|
|
import { Button } from './common'
|
|
import { faChevronDown, faChevronUp, faPen } from '@fortawesome/free-solid-svg-icons'
|
|
import Breadcrumb from './common/breadcrumb/Breadcrumb.svelte'
|
|
import Toggle from './Toggle.svelte'
|
|
|
|
export let script: Script
|
|
export let initialPath: string = ''
|
|
export let template: 'pgsql' | 'script' = 'script'
|
|
export let initialArgs: Record<string, any> = {}
|
|
|
|
let viewScriptKind = script.kind !== Script.kind.SCRIPT
|
|
let viewTemplate = script.kind !== Script.kind.SCRIPT && script.language == Script.language.DENO
|
|
|
|
let pathError = ''
|
|
|
|
let summaryC: HTMLInputElement | undefined = undefined
|
|
let pathC: Path | undefined = undefined
|
|
|
|
$: setQueryWithoutLoad($page.url, 'state', encodeState(script))
|
|
$: step = Number($page.url.searchParams.get('step')) || 1
|
|
|
|
if (script.content == '') {
|
|
initContent(script.language, script.kind, template)
|
|
}
|
|
|
|
function initContent(
|
|
language: 'deno' | 'python3' | 'go',
|
|
kind: Script.kind,
|
|
template: 'pgsql' | 'script'
|
|
) {
|
|
script.content = initialCode(language, kind, template)
|
|
}
|
|
|
|
async function editScript(): Promise<void> {
|
|
try {
|
|
$dirtyStore = false
|
|
if (!script.schema) {
|
|
await inferArgs(script.language, script.content, script.schema)
|
|
}
|
|
const newHash = await ScriptService.createScript({
|
|
workspace: $workspaceStore!,
|
|
requestBody: {
|
|
path: script.path,
|
|
summary: script.summary,
|
|
description: script.description ?? '',
|
|
content: script.content,
|
|
parent_hash: script.hash != '' ? script.hash : undefined,
|
|
schema: script.schema,
|
|
is_template: script.is_template,
|
|
language: script.language,
|
|
kind: script.kind
|
|
}
|
|
})
|
|
sendUserToast(`Success! New script version created with hash ${newHash}`)
|
|
goto(`/scripts/get/${newHash}`)
|
|
} catch (error) {
|
|
sendUserToast(`Impossible to save the script: ${error.body}`, true)
|
|
}
|
|
}
|
|
|
|
async function changeStep(step: number) {
|
|
if (step > 1) {
|
|
await inferArgs(script.language, script.content, script.schema)
|
|
}
|
|
goto(`?step=${step}`)
|
|
}
|
|
</script>
|
|
|
|
<UnsavedConfirmationModal />
|
|
<div class="flex flex-col h-screen">
|
|
<!-- Nav between steps-->
|
|
<div class="flex flex-col w-full px-4 py-2 border-b shadow-sm">
|
|
<div class="justify-between flex flex-row w-full items-center overflow-x-auto scrollbar-hidden">
|
|
<div class="flex flex-row">
|
|
<Breadcrumb
|
|
items={['Metadata', 'Code', 'UI Customisation']}
|
|
selectedIndex={step}
|
|
on:select={(e) => changeStep(e.detail.index + 1)}
|
|
disabled={pathError != ''}
|
|
>
|
|
<svelte:fragment slot="separator">/</svelte:fragment>
|
|
</Breadcrumb>
|
|
</div>
|
|
|
|
<div class="gap-1 flex-row hidden md:flex shrink overflow-hidden">
|
|
<Button
|
|
btnClasses="hidden lg:inline-flex"
|
|
startIcon={{ icon: faPen }}
|
|
variant="contained"
|
|
color="light"
|
|
size="xs"
|
|
on:click={async () => {
|
|
await changeStep(1)
|
|
setTimeout(() => pathC?.focus(), 100)
|
|
}}
|
|
>
|
|
{script.path}
|
|
</Button>
|
|
|
|
<Button
|
|
startIcon={{ icon: faPen }}
|
|
variant="contained"
|
|
color="light"
|
|
size="xs"
|
|
on:click={async () => {
|
|
await changeStep(1)
|
|
setTimeout(() => summaryC?.focus(), 100)
|
|
}}
|
|
>
|
|
<div class="max-w-[10em] !truncate">
|
|
{script.summary == '' || !script.summary ? 'No summary' : script.summary}
|
|
</div>
|
|
</Button>
|
|
</div>
|
|
|
|
<div class="flex flex-row gap-x-2">
|
|
<Button
|
|
size="sm"
|
|
variant={step == 1 ? 'border' : 'contained'}
|
|
disabled={step === 1 && pathError !== ''}
|
|
btnClasses={step == 1 && initialPath == '' ? 'invisible' : ''}
|
|
on:click={editScript}>Save (commit)</Button
|
|
>
|
|
<Button
|
|
variant="border"
|
|
size="sm"
|
|
btnClasses={step == 1 ? 'invisible' : ''}
|
|
on:click={() => changeStep(step - 1)}
|
|
>
|
|
Back
|
|
</Button>
|
|
{#if step < 3}
|
|
<Button
|
|
size="sm"
|
|
btnClasses={step == 3 ? 'invisible' : ''}
|
|
disabled={step === 1 && pathError !== ''}
|
|
on:click={() => changeStep(step + 1)}
|
|
>
|
|
Next
|
|
</Button>
|
|
{:else}
|
|
<Button size="sm" on:click={editScript}>Save</Button>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- metadata -->
|
|
{#if step === 1}
|
|
<CenteredPage>
|
|
<div class="space-y-6">
|
|
<h2 class="border-b pb-1 mt-4">Path & Summary</h2>
|
|
<Path
|
|
bind:this={pathC}
|
|
bind:error={pathError}
|
|
bind:path={script.path}
|
|
{initialPath}
|
|
on:enter={() => changeStep(2)}
|
|
namePlaceholder="my_script"
|
|
kind="script"
|
|
/>
|
|
<label class="block ">
|
|
<span class="text-gray-700 text-sm">Summary <Required required={false} /></span>
|
|
<input
|
|
type="text"
|
|
bind:this={summaryC}
|
|
bind:value={script.summary}
|
|
placeholder="A very short summary of the script displayed when the script is listed"
|
|
rows="1"
|
|
/>
|
|
</label>
|
|
<h2 class="border-b pb-1 mt-4">Language</h2>
|
|
<div class="max-w-md">
|
|
<RadioButton
|
|
label="Language"
|
|
options={[
|
|
['Typescript (Deno)', 'deno'],
|
|
['Python 3.10', 'python3'],
|
|
['Go', 'go']
|
|
]}
|
|
on:change={(e) => initContent(e.detail, script.kind, template)}
|
|
bind:value={script.language}
|
|
/>
|
|
</div>
|
|
<h2 class="border-b pb-1 mt-4"> Metadata </h2>
|
|
<div>
|
|
<Button
|
|
color="light"
|
|
size="sm"
|
|
endIcon={{ icon: viewScriptKind ? faChevronUp : faChevronDown }}
|
|
on:click={() => (viewScriptKind = !viewScriptKind)}
|
|
>
|
|
Specialize the script as a specific module kind for flows
|
|
</Button>
|
|
</div>
|
|
{#if viewScriptKind}
|
|
<div class="max-w-lg">
|
|
<RadioButton
|
|
label="Script Type"
|
|
options={[
|
|
['Common Script', Script.kind.SCRIPT],
|
|
[
|
|
{
|
|
title: 'Trigger Script',
|
|
desc: `First module of flows to trigger them based on watching changes external periodically using an internal state`
|
|
},
|
|
Script.kind.TRIGGER
|
|
],
|
|
[
|
|
{
|
|
title: 'Error Handler',
|
|
desc: `Handle errors for flows after all retries attempts have been exhausted`
|
|
},
|
|
Script.kind.FAILURE
|
|
],
|
|
[
|
|
{
|
|
title: 'Approval Script',
|
|
desc: `Send notification externally to ask for approval to continue a flow`
|
|
},
|
|
Script.kind.APPROVAL
|
|
]
|
|
|
|
// ['Command Handler', Script.kind.COMMAND]
|
|
]}
|
|
on:change={(e) => {
|
|
if (isInitialCode(script.content)) {
|
|
template = 'script'
|
|
initContent(script.language, e.detail, template)
|
|
}
|
|
}}
|
|
bind:value={script.kind}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
{#if script.language == 'deno' && script.kind == Script.kind.SCRIPT}
|
|
<div
|
|
><Button
|
|
color="light"
|
|
size="sm"
|
|
endIcon={{ icon: viewTemplate ? faChevronUp : faChevronDown }}
|
|
on:click={() => (viewTemplate = !viewTemplate)}
|
|
>
|
|
Use a predefined template specific to this language and script kind
|
|
</Button>
|
|
</div>
|
|
{#if viewTemplate}
|
|
<div class="max-w-lg">
|
|
<RadioButton
|
|
label="Template"
|
|
options={[
|
|
['Standard', 'script'],
|
|
['PostgreSQL Prepared Statement', 'pgsql']
|
|
]}
|
|
on:change={(e) => initContent(script.language, script.kind, e.detail)}
|
|
bind:value={template}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
|
|
<Toggle
|
|
bind:checked={script.is_template}
|
|
options={{ right: 'Save as a workspace template' }}
|
|
/>
|
|
</div>
|
|
</CenteredPage>
|
|
{:else if step === 2}
|
|
<ScriptEditor
|
|
bind:schema={script.schema}
|
|
path={script.path}
|
|
bind:code={script.content}
|
|
lang={script.language}
|
|
{initialArgs}
|
|
/>
|
|
{:else if step === 3}
|
|
<CenteredPage>
|
|
<ScriptSchema
|
|
bind:summary={script.summary}
|
|
bind:description={script.description}
|
|
bind:schema={script.schema}
|
|
/>
|
|
</CenteredPage>
|
|
{/if}
|
|
</div>
|