mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
5d79f33590
* Remove $$props.field usage * Rename slots to ensure no hyphen * _props * _trigger * OnSelectedIteration type correct capitalization * rename _content * Remove afterUpdate * Migrate everything to svelte 5 * array bind * Fix popover * type never * nit fixes * Fixed many trivial errors * onClick * Fix errors * use let: * nit typing * fix: wrap state_referenced_locally vars with untrack() Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add untrack import * Fix all syntax errors due to untrack migration * Fix undefined errors * Fix more undefined errors * untrack(() => initialOpen) * svelte-ignore * Fix state_descriptors_fixed error in Chart.svelte Use $state.snapshot() to pass plain copies of data/options to Chart.js instead of $state proxies. Chart.js's listenArrayEvents tries to define property descriptors on data arrays, which Svelte 5 proxies reject. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * nit typing * Merge issue * Fix "path is not set" error in resource picker / editor * Fix InputTransformForm error when rerunning some flows * fix npm run check --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
43 lines
1.3 KiB
Svelte
43 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import type { FlowStatusModule } from '$lib/gen'
|
|
import { Badge } from './common'
|
|
import { forLater } from '$lib/forLater'
|
|
import { displayDate } from '$lib/utils'
|
|
import { Hourglass } from 'lucide-svelte'
|
|
|
|
interface Props {
|
|
type: FlowStatusModule['type'];
|
|
scheduled_for: Date | undefined;
|
|
skipped?: boolean;
|
|
}
|
|
|
|
let { type, scheduled_for, skipped = false }: Props = $props();
|
|
</script>
|
|
|
|
{#if type == 'WaitingForEvents'}
|
|
<span class="italic text-xs text-violet-700 dark:text-violet-400">
|
|
<Hourglass class="inline" size={14} />
|
|
Waiting to be resumed by resume events such as approvals
|
|
</span>
|
|
{:else if type == 'WaitingForPriorSteps'}
|
|
<span class="italic text-xs text-primary">
|
|
<Hourglass class="inline" size={14} />
|
|
Waiting for prior steps to complete
|
|
</span>
|
|
{:else if type == 'WaitingForExecutor'}
|
|
<span class="italic text-xs text-primary">
|
|
<Hourglass class="inline" />
|
|
{#if scheduled_for && forLater(scheduled_for.toString())}
|
|
Job is scheduled to be executed at {displayDate(scheduled_for, true)}
|
|
{:else}
|
|
Job is waiting for an executor
|
|
{/if}
|
|
</span>
|
|
{:else if skipped}
|
|
<Badge color="blue">Skipped</Badge>
|
|
{:else if type == 'Success'}
|
|
<Badge color="green">Success</Badge>
|
|
{:else if type == 'Failure'}
|
|
<Badge color="red">Failure</Badge>
|
|
{/if}
|