-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathworkflow-summary.svelte
115 lines (112 loc) · 3.64 KB
/
workflow-summary.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<script lang="ts">
import { page } from '$app/stores';
import WorkflowDetail from '$lib/components/workflow/workflow-detail.svelte';
import Accordion from '$lib/holocene/accordion.svelte';
import { translate } from '$lib/i18n/translate';
import { relativeTime, timeFormat } from '$lib/stores/time-format';
import {
workflowRun,
workflowSummaryViewOpen,
} from '$lib/stores/workflow-run';
import { formatDate } from '$lib/utilities/format-date';
import { formatDistanceAbbreviated } from '$lib/utilities/format-time';
import { routeForWorkers } from '$lib/utilities/route-for';
$: ({ workflow } = $workflowRun);
$: elapsedTime = formatDistanceAbbreviated({
start: workflow?.startTime,
end: workflow?.endTime,
includeMilliseconds: true,
});
</script>
<section>
<Accordion
title={translate('common.summary')}
icon="summary"
data-testid="summary-accordion"
open={$workflowSummaryViewOpen}
onToggle={() => {
$workflowSummaryViewOpen = !$workflowSummaryViewOpen;
}}
>
<div class="flex flex-col gap-2 xl:flex-row">
<div class="grow basis-1/3 overflow-hidden">
<h3 class="font-medium">{translate('common.execution-details')}</h3>
<div class="h-0.5 rounded-full bg-inverse" />
<WorkflowDetail
title={translate('common.workflow-type')}
content={workflow?.name}
copyable
textSize="sm"
/>
<WorkflowDetail
title={translate('common.run-id')}
content={workflow?.runId}
copyable
textSize="sm"
/>
<WorkflowDetail
title={translate('common.history-size-bytes')}
content={workflow?.historySizeBytes}
copyable
textSize="sm"
/>
</div>
<div class="grow overflow-hidden">
<h3 class="font-medium">{translate('common.task-queue')}</h3>
<div class="h-0.5 rounded-full bg-inverse" />
<WorkflowDetail
content={workflow?.taskQueue}
href={routeForWorkers({
namespace: $page.params.namespace,
workflow: workflow?.id,
run: workflow?.runId,
})}
copyable
textSize="sm"
/>
<WorkflowDetail
title={translate('workflows.state-transitions')}
content={workflow?.stateTransitionCount}
textSize="sm"
/>
</div>
<div class="grow-0">
<h3 class="font-medium">
{translate('workflows.start-and-close-time')}
</h3>
<div class="h-0.5 rounded-full bg-inverse" />
<WorkflowDetail
title={translate('common.start-time')}
tooltip={$relativeTime
? formatDate(workflow?.startTime, $timeFormat, {
relative: false,
})
: formatDate(workflow?.startTime, $timeFormat, {
relative: true,
})}
content={formatDate(workflow?.startTime, $timeFormat, {
relative: $relativeTime,
})}
textSize="sm"
/>
<WorkflowDetail
title={translate('common.close-time')}
tooltip={$relativeTime
? formatDate(workflow?.endTime, $timeFormat, {
relative: false,
})
: formatDate(workflow?.endTime, $timeFormat, {
relative: true,
})}
content={formatDate(workflow?.endTime, $timeFormat, {
relative: $relativeTime,
})}
textSize="sm"
/>
{#if elapsedTime}
<WorkflowDetail icon="clock" content={elapsedTime} textSize="sm" />
{/if}
</div>
</div>
</Accordion>
</section>