mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
105 lines
2.9 KiB
Svelte
105 lines
2.9 KiB
Svelte
<script lang="ts">
|
|
import InputTransformForm from '$lib/components/InputTransformForm.svelte'
|
|
import type SimpleEditor from '$lib/components/SimpleEditor.svelte'
|
|
import Toggle from '$lib/components/Toggle.svelte'
|
|
import Tooltip from '$lib/components/Tooltip.svelte'
|
|
import type { FlowModule } from '$lib/gen'
|
|
import { emptySchema } from '$lib/utils'
|
|
import { getContext } from 'svelte'
|
|
import PropPickerWrapper from '../propPicker/PropPickerWrapper.svelte'
|
|
import type { FlowEditorContext } from '../types'
|
|
import { SecondsInput } from '../../common'
|
|
import Section from '$lib/components/Section.svelte'
|
|
import Label from '$lib/components/Label.svelte'
|
|
import { getStepPropPicker } from '../previousResults'
|
|
|
|
interface Props {
|
|
flowModule: FlowModule
|
|
previousModuleId: string | undefined
|
|
}
|
|
|
|
let { flowModule = $bindable(), previousModuleId }: Props = $props()
|
|
|
|
const { selectedId, flowStore, flowStateStore, previewArgs } =
|
|
getContext<FlowEditorContext>('FlowEditorContext')
|
|
let schema = $state(emptySchema())
|
|
schema.properties['sleep'] = {
|
|
type: 'number'
|
|
}
|
|
|
|
let editor: SimpleEditor | undefined = $state(undefined)
|
|
|
|
let stepPropPicker = $derived(
|
|
getStepPropPicker(
|
|
flowStateStore.val,
|
|
undefined,
|
|
undefined,
|
|
flowModule.id,
|
|
flowStore.val,
|
|
previewArgs.val,
|
|
false
|
|
)
|
|
)
|
|
|
|
const result = flowStateStore.val[$selectedId]?.previewResult ?? {}
|
|
|
|
let isSleepEnabled = $derived(Boolean(flowModule.sleep))
|
|
</script>
|
|
|
|
<Section label="Sleep" class="w-full">
|
|
{#snippet header()}
|
|
<Tooltip documentationLink="https://www.windmill.dev/docs/flows/sleep">
|
|
If defined, at the end of the step, the flow will sleep for a number of seconds before
|
|
scheduling the next job (if any, no effect if the step is the last one).
|
|
</Tooltip>
|
|
{/snippet}
|
|
|
|
<Toggle
|
|
checked={isSleepEnabled}
|
|
class="mb-6"
|
|
on:change={() => {
|
|
if (isSleepEnabled && flowModule.sleep != undefined) {
|
|
flowModule.sleep = undefined
|
|
} else {
|
|
flowModule.sleep = {
|
|
type: 'static',
|
|
value: 0
|
|
}
|
|
}
|
|
}}
|
|
options={{
|
|
right: 'Sleep after module successful execution'
|
|
}}
|
|
/>
|
|
<Label label="Sleep for duration">
|
|
{#if flowModule.sleep && schema.properties['sleep']}
|
|
<div class="border rounded-md overflow-auto">
|
|
<PropPickerWrapper
|
|
noFlowPlugConnect={true}
|
|
flow_input={stepPropPicker.pickableProperties.flow_input}
|
|
notSelectable
|
|
{result}
|
|
displayContext={false}
|
|
pickableProperties={undefined}
|
|
on:select={({ detail }) => {
|
|
editor?.insertAtCursor(detail)
|
|
editor?.focus()
|
|
}}
|
|
>
|
|
<InputTransformForm
|
|
bind:arg={flowModule.sleep}
|
|
argName="sleep"
|
|
{schema}
|
|
{previousModuleId}
|
|
argExtra={{ seconds: true }}
|
|
bind:editor
|
|
/>
|
|
</PropPickerWrapper>
|
|
</div>
|
|
{:else}
|
|
<SecondsInput disabled />
|
|
<div class="text-secondary text-xs">OR use a dynamic expression</div>
|
|
{/if}
|
|
</Label>
|
|
</Section>
|