-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathtable-body-cell.svelte
153 lines (146 loc) · 5.19 KB
/
table-body-cell.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<script lang="ts">
import WorkflowStatus from '$lib/components/workflow-status.svelte';
import Badge from '$lib/holocene/badge.svelte';
import type { ConfigurableTableHeader } from '$lib/stores/configurable-table-columns';
import {
customSearchAttributes,
isCustomSearchAttribute,
workflowIncludesSearchAttribute,
} from '$lib/stores/search-attributes';
import { relativeTime, timeFormat } from '$lib/stores/time-format';
import {
SEARCH_ATTRIBUTE_TYPE,
type WorkflowExecution,
} from '$lib/types/workflows';
import { formatBytes } from '$lib/utilities/format-bytes';
import { formatDate } from '$lib/utilities/format-date';
import { formatDistance } from '$lib/utilities/format-time';
import FilterableTableCell from './filterable-table-cell.svelte';
export let column: ConfigurableTableHeader;
export let workflow: WorkflowExecution;
$: ({ label } = column);
let filterOrCopyButtonsVisible = false;
const showFilterOrCopy = () => (filterOrCopyButtonsVisible = true);
const hideFilterOrCopy = () => (filterOrCopyButtonsVisible = false);
const handleFocusOut = (e: FocusEvent) => {
const nextTarget = e.relatedTarget as HTMLElement;
if (
nextTarget &&
!['filter-button', 'copy-button'].includes(nextTarget.id)
) {
hideFilterOrCopy();
}
};
</script>
{#if label === 'Run ID' || label === 'Workflow ID' || label === 'Type'}
<td
class="workflows-summary-table-body-cell filterable"
data-testid="workflows-summary-table-body-cell"
on:mouseover={showFilterOrCopy}
on:focus={showFilterOrCopy}
on:focusin={showFilterOrCopy}
on:focusout={handleFocusOut}
on:mouseleave={hideFilterOrCopy}
on:blur={hideFilterOrCopy}
>
{#if label === 'Type'}
<FilterableTableCell
{filterOrCopyButtonsVisible}
attribute="WorkflowType"
{workflow}
/>
{:else if label === 'Workflow ID'}
<FilterableTableCell
{filterOrCopyButtonsVisible}
attribute="WorkflowId"
{workflow}
/>
{:else if label === 'Run ID'}
<FilterableTableCell
{filterOrCopyButtonsVisible}
attribute="RunId"
{workflow}
/>
{/if}
</td>
{:else}
<td
class="workflows-summary-table-body-cell"
data-testid="workflows-summary-table-body-cell"
>
{#if label === 'Status'}
<WorkflowStatus status={workflow.status} />
{:else if label === 'End'}
{formatDate(workflow.endTime, $timeFormat, {
relative: $relativeTime,
})}
{:else if label === 'Start'}
{formatDate(workflow.startTime, $timeFormat, {
relative: $relativeTime,
})}
{:else if label === 'Task Queue'}
{workflow.taskQueue}
{:else if label === 'Parent Namespace'}
{workflow?.parentNamespaceId ?? ''}
{:else if label === 'History Size'}
{formatBytes(parseInt(workflow.historySizeBytes, 10))}
{:else if label === 'State Transitions'}
{parseInt(workflow.stateTransitionCount, 10) > 0
? workflow.stateTransitionCount
: ''}
{:else if label === 'Execution Time'}
{formatDate(workflow.executionTime, $timeFormat, {
relative: $relativeTime,
})}
{:else if label === 'Execution Duration'}
{formatDistance({
start: workflow.startTime,
end: workflow.endTime,
includeMillisecondsForUnderSecond: true,
})}
{:else if label === 'History Length'}
{parseInt(workflow.historyEvents, 10) > 0 ? workflow.historyEvents : ''}
{:else if label === 'Scheduled By ID'}
{workflow.searchAttributes?.indexedFields?.TemporalScheduledById ?? ''}
{:else if label === 'Scheduled Start Time'}
{@const content =
workflow.searchAttributes?.indexedFields?.TemporalScheduledStartTime}
{content && typeof content === 'string'
? formatDate(content, $timeFormat, { relative: $relativeTime })
: ''}
{:else if label === 'Deployment'}
{@const content =
workflow.searchAttributes?.indexedFields?.TemporalWorkerDeployment}
{content && typeof content === 'string' ? content : ''}
{:else if label === 'Deployment Version'}
{@const content =
workflow.searchAttributes?.indexedFields
?.TemporalWorkerDeploymentVersion}
{content && typeof content === 'string' ? content : ''}
{:else if label === 'Versioning Behavior'}
{@const content =
workflow.searchAttributes?.indexedFields
?.TemporalWorkflowVersioningBehavior}
{content && typeof content === 'string' ? content : ''}
{:else if isCustomSearchAttribute(label) && workflowIncludesSearchAttribute(workflow, label)}
{@const content = workflow.searchAttributes.indexedFields[label]}
{#if $customSearchAttributes[label] === SEARCH_ATTRIBUTE_TYPE.DATETIME && typeof content === 'string'}
{formatDate(content, $timeFormat, {
relative: $relativeTime,
})}
{:else if $customSearchAttributes[label] === SEARCH_ATTRIBUTE_TYPE.BOOL}
<Badge>{content}</Badge>
{:else}
{content}
{/if}
{/if}
</td>
{/if}
<style lang="postcss">
.workflows-summary-table-body-cell {
@apply h-10 whitespace-nowrap;
&.filterable {
@apply relative pr-24;
}
}
</style>