-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathNodeExecutionDetailsPanelContent.tsx
432 lines (390 loc) · 13.6 KB
/
NodeExecutionDetailsPanelContent.tsx
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
import React, { FC, useEffect, useMemo, useRef, useState } from 'react';
import IconButton from '@mui/material/IconButton';
import Typography from '@mui/material/Typography';
import Tab from '@mui/material/Tab';
import Tabs from '@mui/material/Tabs';
import ArrowBackIos from '@mui/icons-material/ArrowBackIos';
import Close from '@mui/icons-material/Close';
import classnames from 'classnames';
import { LocationDescriptor } from 'history';
import Skeleton from 'react-loading-skeleton';
import { useQueryClient } from 'react-query';
import { Link as RouterLink } from 'react-router-dom';
import isEqual from 'lodash/isEqual';
import values from 'lodash/values';
import styled from '@mui/system/styled';
import * as CommonStylesConstants from '@clients/theme/CommonStyles/constants';
import { useCommonStyles } from '../../common/styles';
import { ExecutionStatusBadge } from '../ExecutionStatusBadge';
import { useTabState } from '../../hooks/useTabState';
import { Workflow } from '../../../models/Workflow/types';
import {
MapTaskExecution,
NodeExecution,
NodeExecutionIdentifier,
} from '../../../models/Execution/types';
import { Routes } from '../../../routes/routes';
import { NoDataIsAvailable } from '../../Literals/LiteralMapViewer';
import { fetchWorkflow } from '../../../queries/workflowQueries';
import { PanelSection } from '../../common/PanelSection';
import { ReactJsonViewWrapper } from '../../common/ReactJsonView';
import { dNode } from '../../../models/Graph/types';
import { NodeExecutionPhase, TaskExecutionPhase } from '../../../models/Execution/enums';
import { transformWorkflowToKeyedDag, getNodeNameFromDag } from '../../WorkflowGraph/utils';
import { TaskVersionDetailsLink } from '../../Entities/VersionDetails/VersionDetailsLink';
import { Identifier } from '../../../models/Common/types';
import { extractCompiledNodes } from '../../hooks/utils';
import { NodeExecutionCacheStatus } from '../NodeExecutionCacheStatus';
import { NodeExecutionDetails } from '../types';
import { getTaskExecutionDetailReasons } from './utils';
import { fetchWorkflowExecution } from '../useWorkflowExecution';
import { NodeExecutionTabs } from './NodeExecutionTabs';
import { ExecutionDetailsActions } from './ExecutionDetailsActions';
import { getNodeFrontendPhase, isNodeGateNode } from '../utils';
import { useNodeExecutionsById } from '../contextProvider/NodeExecutionDetails/WorkflowNodeExecutionsProvider';
import { useNodeExecutionContext } from '../contextProvider/NodeExecutionDetails/NodeExecutionDetailsContextProvider';
import { useWorkflowNodeExecutionTaskExecutionsQuery } from '../../hooks/useWorkflowNodeExecutionTaskExecutionsQuery';
import { nodeExecutionRefreshIntervalMs } from '../constants';
import { ExpandableMonospaceText } from '../../common/ExpandableMonospaceText';
const NodeTypeLink = styled(RouterLink)(() => ({
fontWeight: 'normal',
}));
const StyledContent = styled('div')(() => ({
overflowY: 'auto',
}));
const StyledTabs = styled(Tabs)(({ theme }) => ({
borderBottom: `1px solid ${theme.palette.divider}`,
})) as typeof Tabs;
const CloseButton = styled(IconButton)(({ theme }) => ({
marginLeft: theme.spacing(1),
}));
const NodeTypeContainer = styled('div')(({ theme }) => ({
alignItems: 'flex-end',
borderTop: `1px solid ${theme.palette.divider}`,
display: 'flex',
flexDirection: 'row',
fontWeight: 'bold',
justifyContent: 'space-between',
marginTop: theme.spacing(2),
paddingTop: theme.spacing(2),
'& .nodeTypeContent': {
minWidth: theme.spacing(9),
},
}));
const StyledContainer = styled('section')(({ theme }) => ({
display: 'flex',
flexDirection: 'column',
height: '100%',
paddingTop: theme.spacing(2),
width: '100%',
'& .header': {
borderBottom: `${theme.spacing(1)} solid ${theme.palette.divider}`,
},
'& .headerContent': {
padding: `0 ${theme.spacing(3)} ${theme.spacing(2)} ${theme.spacing(3)}`,
},
'& .displayId': {
marginBottom: theme.spacing(1),
},
}));
const StatusContainer = styled('div')(({ theme }) => ({
display: 'flex',
flexDirection: 'column',
'& .statusHeaderContainer': {
display: 'flex',
alignItems: 'center',
},
'& .reasonsIcon': {
marginLeft: theme.spacing(1),
cursor: 'pointer',
},
'& .statusBody': {
marginTop: theme.spacing(2),
},
}));
const NotRunStatus = styled('div')(({ theme }) => ({
alignItems: 'center',
backgroundColor: 'gray',
borderRadius: '4px',
color: theme.palette.text.primary,
display: 'flex',
flex: '0 0 auto',
height: theme.spacing(3),
fontSize: CommonStylesConstants.smallFontSize,
justifyContent: 'center',
textTransform: 'uppercase',
width: theme.spacing(11),
fontFamily: CommonStylesConstants.bodyFontFamily,
fontWeight: 'bold',
}));
const tabIds = {
executions: 'executions',
inputs: 'inputs',
outputs: 'outputs',
task: 'task',
};
export interface LocationState {
backLink?: string;
}
interface NodeExecutionDetailsProps {
nodeExecutionId: NodeExecutionIdentifier;
taskPhase: TaskExecutionPhase;
onClose?: () => void;
}
const NodeExecutionLinkContent: React.FC<{
execution: NodeExecution;
}> = ({ execution }) => {
const commonStyles = useCommonStyles();
const { workflowNodeMetadata } = execution.closure;
if (!workflowNodeMetadata) {
return null;
}
const linkTarget: LocationDescriptor<LocationState> = {
pathname: Routes.ExecutionDetails.makeUrl(workflowNodeMetadata.executionId),
state: {
backLink: Routes.ExecutionDetails.makeUrl(execution.id.executionId),
},
};
return (
<NodeTypeLink className={classnames(commonStyles.primaryLinks)} to={linkTarget}>
View Sub-Workflow
</NodeTypeLink>
);
};
const ExecutionTypeDetails: React.FC<{
details?: NodeExecutionDetails;
execution: NodeExecution;
}> = ({ details, execution }) => {
const commonStyles = useCommonStyles();
return (
<NodeTypeContainer className={classnames(commonStyles.textSmall)}>
<div className="nodeTypeContent">
<div className={classnames(commonStyles.microHeader, commonStyles.textMuted)}>Type</div>
<div>{details ? details.displayType : <Skeleton />}</div>
</div>
<NodeExecutionLinkContent execution={execution} />
</NodeTypeContainer>
);
};
const QUERY_PARAM_TAB = 'wtab';
// TODO FC#393: Check if it could be replaced with tabsContent or simplified further.
// Check if we need to request task info instead of relying on dag
// Also check strange setDag pattern
const WorkflowTabs: React.FC<{
dagData: Record<string, dNode>;
nodeId: string;
}> = ({ dagData, nodeId }) => {
const { value, onChange } = useTabState(tabIds.inputs, QUERY_PARAM_TAB);
let tabContent: JSX.Element | null = null;
const id = nodeId.slice(nodeId.lastIndexOf('-') + 1);
const taskTemplate = dagData[id]?.nodeExecutionInfo?.taskTemplate;
// eslint-disable-next-line default-case
switch (value) {
case tabIds.task: {
tabContent = taskTemplate ? (
<PanelSection>
<TaskVersionDetailsLink id={taskTemplate.id as Identifier} />
<ReactJsonViewWrapper src={taskTemplate} />
</PanelSection>
) : null;
break;
}
case tabIds.inputs:
default: {
tabContent = taskTemplate ? (
<PanelSection>
<NoDataIsAvailable />
</PanelSection>
) : null;
break;
}
}
return (
<>
<StyledTabs value={value} onChange={onChange}>
<Tab value={tabIds.inputs} label="Inputs" />
{!!taskTemplate && <Tab value={tabIds.task} label="Task" />}
</StyledTabs>
<StyledContent>{tabContent}</StyledContent>
</>
);
};
interface NodeExecutionStatusProps {
nodeExecution?: NodeExecution;
frontendPhase: NodeExecutionPhase;
}
const NodeExecutionStatus: FC<NodeExecutionStatusProps> = ({ nodeExecution, frontendPhase }) => {
const nodeExecutionTasksQuery = useWorkflowNodeExecutionTaskExecutionsQuery({
nodeExecution,
refetchInterval: nodeExecutionRefreshIntervalMs,
});
const reasons = useMemo(
() => getTaskExecutionDetailReasons(nodeExecutionTasksQuery.data ?? []),
[nodeExecutionTasksQuery.data],
);
return nodeExecution ? (
<StatusContainer>
<div className="statusHeaderContainer">
<ExecutionStatusBadge phase={frontendPhase} type="node" />
</div>
{reasons?.length ? (
<div className="statusBody">
<ExpandableMonospaceText text={reasons.join('\n\n')} />
</div>
) : null}
</StatusContainer>
) : (
<NotRunStatus>NOT RUN</NotRunStatus>
);
};
/** DetailsPanel content which renders execution information about a given NodeExecution
*/
export const NodeExecutionDetailsPanelContent: React.FC<NodeExecutionDetailsProps> = ({
nodeExecutionId,
taskPhase,
onClose,
}) => {
const commonStyles = useCommonStyles();
const queryClient = useQueryClient();
const { nodeExecutionsById } = useNodeExecutionsById();
const nodeExecution = useMemo(() => {
const finalExecution = values(nodeExecutionsById).find((node) =>
isEqual(node.id, nodeExecutionId),
);
return finalExecution;
}, [nodeExecutionId, nodeExecutionsById]);
const [dag, setDag] = useState<any>(null);
const [nodeExecutionDetails, setNodeExecutionDetails] = useState<NodeExecutionDetails>();
const [selectedTaskExecution, setSelectedTaskExecution] = useState<MapTaskExecution>();
const { getNodeExecutionDetails, compiledWorkflowClosure } = useNodeExecutionContext();
const isGateNode = isNodeGateNode(
extractCompiledNodes(compiledWorkflowClosure),
nodeExecutionsById[nodeExecutionId.nodeId]?.metadata?.specNodeId || nodeExecutionId.nodeId,
);
const [nodeExecutionLoading, setNodeExecutionLoading] = useState<boolean>(false);
const isMounted = useRef(false);
useEffect(() => {
isMounted.current = true;
return () => {
setNodeExecutionDetails(undefined);
isMounted.current = false;
};
}, []);
// TODO: needs to be removed
useEffect(() => {
let isCurrent = true;
getNodeExecutionDetails(nodeExecution).then((res) => {
if (isCurrent) {
setNodeExecutionDetails(res);
}
});
return () => {
isCurrent = false;
};
}, [nodeExecution]);
useEffect(() => {
setSelectedTaskExecution(undefined);
}, [nodeExecutionId, taskPhase]);
// TODO: needs to be removed
const getWorkflowDag = async () => {
const workflowExecution = await fetchWorkflowExecution(
queryClient,
nodeExecutionId.executionId,
);
const workflowData: Workflow = await fetchWorkflow(
queryClient,
workflowExecution.closure.workflowId,
);
if (workflowData) {
const keyedDag = transformWorkflowToKeyedDag(workflowData);
if (isMounted.current) setDag(keyedDag);
}
};
if (!nodeExecution) {
getWorkflowDag();
} else if (dag) setDag(null);
const onBackClick = () => {
setSelectedTaskExecution(undefined);
};
const headerTitle = useMemo(() => {
const mapTaskHeader = `${selectedTaskExecution?.taskIndex} of ${nodeExecutionId.nodeId}`;
const header = selectedTaskExecution ? mapTaskHeader : nodeExecutionId.nodeId;
return (
<Typography
className={classnames(commonStyles.textWrapped)}
variant="h3"
sx={{ alignItems: 'flex-start', display: 'flex', justifyContent: 'space-between' }}
>
<div>
{!!selectedTaskExecution && (
<IconButton onClick={onBackClick} size="small">
<ArrowBackIos />
</IconButton>
)}
{header}
</div>
<CloseButton onClick={onClose} size="small">
<Close />
</CloseButton>
</Typography>
);
}, [nodeExecutionId, selectedTaskExecution]);
const frontendPhase = useMemo(() => {
const computedPhase = getNodeFrontendPhase(
nodeExecution?.closure.phase ?? NodeExecutionPhase.UNDEFINED,
isGateNode,
);
return computedPhase;
}, [nodeExecution, isGateNode]);
let detailsContent: JSX.Element | null = null;
if (nodeExecution) {
detailsContent = (
<>
<NodeExecutionCacheStatus
execution={nodeExecution}
selectedTaskExecution={selectedTaskExecution}
/>
<ExecutionTypeDetails details={nodeExecutionDetails} execution={nodeExecution} />
</>
);
}
const emptyName = isGateNode ? <></> : <Skeleton />;
const displayName = nodeExecutionDetails?.displayName ?? emptyName;
return (
<StyledContainer>
<header className="header">
<div className="headerContent">
{headerTitle}
<Typography
className={classnames(commonStyles.textWrapped, 'displayId')}
variant="subtitle1"
color="textSecondary"
>
{dag ? getNodeNameFromDag(dag, nodeExecutionId.nodeId) : displayName}
</Typography>
<NodeExecutionStatus nodeExecution={nodeExecution!} frontendPhase={frontendPhase} />
{!dag && detailsContent}
{nodeExecution?.scopedId === nodeExecutionDetails?.scopedId ? (
<ExecutionDetailsActions
nodeExecutionDetails={nodeExecutionDetails}
nodeExecution={nodeExecution!}
phase={frontendPhase}
/>
) : null}
</div>
</header>
{!nodeExecutionLoading && dag ? (
<WorkflowTabs nodeId={nodeExecutionId.nodeId} dagData={dag} />
) : nodeExecution ? (
<NodeExecutionTabs
nodeExecution={nodeExecution}
selectedTaskExecution={selectedTaskExecution}
phase={taskPhase}
taskTemplate={nodeExecutionDetails?.taskTemplate}
onTaskSelected={setSelectedTaskExecution}
taskIndex={selectedTaskExecution?.taskIndex!}
/>
) : null}
</StyledContainer>
);
};