mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-26 08:01:38 +00:00
7082c2fbcd
* feat: no worker with tag warning * feat: better design and flow jobs * fix: sqlx * fix: clear timeout on destroy
50 lines
1.8 KiB
Svelte
50 lines
1.8 KiB
Svelte
<script lang="ts">
|
|
import { displayDate } from '$lib/utils'
|
|
import type { CompletedJob, QueuedJob } from '$lib/gen'
|
|
import Badge from './common/badge/Badge.svelte'
|
|
import { forLater } from '$lib/forLater'
|
|
import DurationMs from './DurationMs.svelte'
|
|
import { Calendar, CheckCircle2, Circle, Clock, XCircle } from 'lucide-svelte'
|
|
import NoWorkerWithTagWarning from './runs/NoWorkerWithTagWarning.svelte'
|
|
|
|
const SMALL_ICON_SIZE = 12
|
|
|
|
export let job: QueuedJob | CompletedJob | undefined
|
|
</script>
|
|
|
|
{#if job && 'success' in job && job.success}
|
|
<div class="flex flex-row flex-wrap gap-y-1 mb-1 gap-x-2">
|
|
<Badge large color="green" icon={{ icon: CheckCircle2, position: 'left' }}>
|
|
Success {job.is_skipped ? '(Skipped)' : ''}
|
|
</Badge>
|
|
<DurationMs duration_ms={job.duration_ms} />
|
|
</div>
|
|
{:else if job && 'success' in job}
|
|
<div class="flex flex-row flex-wrap gap-y-1 mb-1 gap-x-2">
|
|
<Badge large color="red" icon={{ icon: XCircle, position: 'left' }}>Failed</Badge>
|
|
<DurationMs duration_ms={job.duration_ms} />
|
|
</div>
|
|
{:else if job && 'running' in job && job.running}
|
|
<div>
|
|
<Badge large color="yellow" icon={{ icon: Clock, position: 'left' }}>
|
|
Running
|
|
{#if job.flow_status}
|
|
({job.flow_status?.step + 1 ?? ''} of {job.raw_flow?.modules?.length ?? '?'})
|
|
{/if}
|
|
</Badge>
|
|
</div>
|
|
{:else if job && 'running' in job && 'scheduled_for' in job && job.scheduled_for && forLater(job.scheduled_for)}
|
|
<div>
|
|
<Badge color="blue" icon={{ icon: Calendar, position: 'left' }}>
|
|
Scheduled for {displayDate(job.scheduled_for)}
|
|
</Badge>
|
|
</div>
|
|
{:else if job && 'running' in job}
|
|
<div class="flex flex-row gap-1 items-center">
|
|
<Badge icon={{ icon: Clock, position: 'left' }}>Queued</Badge>
|
|
<NoWorkerWithTagWarning tag={job.tag} />
|
|
</div>
|
|
{:else}
|
|
<Circle size={SMALL_ICON_SIZE} class="text-gray-200" />
|
|
{/if}
|