mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
90 lines
2.2 KiB
Svelte
90 lines
2.2 KiB
Svelte
<script lang="ts">
|
|
import type { Schema } from '$lib/common'
|
|
import { type FlowModule, type Job } from '$lib/gen'
|
|
import { CornerDownLeft, Loader2 } from 'lucide-svelte'
|
|
import Button from './common/button/Button.svelte'
|
|
import ModulePreviewForm from './ModulePreviewForm.svelte'
|
|
import type { PickableProperties } from './flows/previousResults'
|
|
import ModuleTest from './ModuleTest.svelte'
|
|
import { getContext } from 'svelte'
|
|
import type { FlowEditorContext } from './flows/types'
|
|
|
|
interface Props {
|
|
mod: FlowModule
|
|
schema: Schema | { properties?: Record<string, any> }
|
|
pickableProperties: PickableProperties | undefined
|
|
testJob?: Job | undefined
|
|
testIsLoading?: boolean
|
|
noEditor?: boolean
|
|
scriptProgress?: any
|
|
focusArg?: string
|
|
class?: string
|
|
onJobDone?: () => void
|
|
hideRunButton?: boolean
|
|
}
|
|
|
|
let {
|
|
mod,
|
|
schema,
|
|
pickableProperties,
|
|
testJob = $bindable(undefined),
|
|
testIsLoading = $bindable(false),
|
|
noEditor = false,
|
|
scriptProgress = $bindable(undefined),
|
|
focusArg = undefined,
|
|
class: className = '',
|
|
onJobDone,
|
|
hideRunButton = false
|
|
}: Props = $props()
|
|
|
|
const { flowStore } = getContext<FlowEditorContext>('FlowEditorContext')
|
|
let moduleTest: ModuleTest | undefined = $state()
|
|
|
|
export function runTestWithStepArgs() {
|
|
moduleTest?.runTestWithStepArgs()
|
|
}
|
|
</script>
|
|
|
|
<ModuleTest
|
|
{mod}
|
|
{noEditor}
|
|
bind:testJob
|
|
bind:testIsLoading
|
|
bind:scriptProgress
|
|
bind:this={moduleTest}
|
|
{onJobDone}
|
|
/>
|
|
|
|
<div class="p-4 {className}">
|
|
{#if flowStore.val.value.same_worker}
|
|
<div class="mb-1 bg-yellow-100 text-yellow-700 p-1 text-xs"
|
|
>The `./shared` folder is not passed across individual "Test this step"</div
|
|
>
|
|
{/if}
|
|
|
|
{#if !hideRunButton}
|
|
<div class="w-full justify-center flex">
|
|
{#if testIsLoading}
|
|
<Button size="sm" on:click={moduleTest?.cancelJob} btnClasses="w-full" color="red">
|
|
<Loader2 size={16} class="animate-spin mr-1" />
|
|
Cancel
|
|
</Button>
|
|
{:else}
|
|
<Button
|
|
variant="accent"
|
|
btnClasses="truncate"
|
|
size="sm"
|
|
on:click={runTestWithStepArgs}
|
|
shortCut={{
|
|
Icon: CornerDownLeft
|
|
}}
|
|
>
|
|
Run
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
|
|
<ModulePreviewForm {pickableProperties} {mod} {schema} {focusArg} />
|
|
</div>
|