generated from openshift/console-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathPipelineRunsStatusCard.tsx
462 lines (444 loc) · 13.7 KB
/
PipelineRunsStatusCard.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
import * as React from 'react';
import classNames from 'classnames';
import { useTranslation } from 'react-i18next';
import { DomainPropType, DomainTuple } from 'victory-core';
import {
Chart,
ChartAxis,
ChartAxisProps,
ChartDonut,
ChartGroup,
ChartLabel,
ChartLegend,
ChartLine,
ChartVoronoiContainer,
} from '@patternfly/react-charts';
import {
Card,
CardBody,
CardTitle,
Grid,
GridItem,
Popover,
} from '@patternfly/react-core';
import { chart_color_black_200 as othersColor } from '@patternfly/react-tokens/dist/js/chart_color_black_200';
import { chart_color_black_500 as cancelledColor } from '@patternfly/react-tokens/dist/js/chart_color_black_500';
import { chart_color_green_400 as successColor } from '@patternfly/react-tokens/dist/js/chart_color_green_400';
import { global_danger_color_100 as failureColor } from '@patternfly/react-tokens/dist/js/global_danger_color_100';
import { chart_color_blue_300 as runningColor } from '@patternfly/react-tokens/dist/js/chart_color_blue_300';
import {
formatDate,
getDropDownDate,
getXaxisValues,
hourformat,
parsePrometheusDuration,
monthYear,
} from './dateTime';
import { getFilter, useInterval } from './utils';
import { getResultsSummary } from '../utils/summary-api';
import './PipelinesOverview.scss';
import { LoadingInline } from '../Loading';
import { ALL_NAMESPACES_KEY } from '../../consts';
import { DataType, SummaryResponse } from '../../types';
import { OutlinedQuestionCircleIcon } from '@patternfly/react-icons';
interface PipelinesRunsStatusCardProps {
timespan?: number;
domain?: DomainPropType;
bordered?: boolean;
namespace: string;
interval: number;
kind?: string;
parentName?: string;
}
type DomainType = { x?: DomainTuple; y?: DomainTuple };
const getChartData = (
tickValues: number[] | Date[],
data: SummaryResponse,
key: string,
type: string,
): {
x: number;
y: number;
name: string;
}[] => {
const { t } = useTranslation('plugin__pipelines-console-plugin');
const k = key.toLowerCase();
const chartData = tickValues?.map((value) => {
const s = data?.summary?.find((d) => {
const group_date = new Date(Number(d.group_value) * 1000);
if (type == 'hour') {
return group_date.getHours() === value;
}
if (type == 'day' || type == 'week') {
return group_date.toDateString() === new Date(value).toDateString();
}
if (type == 'month') {
return group_date.getMonth() === value.getMonth();
}
});
return {
x: value,
y: Math.round((100 * s?.[k]) / s?.total) || 0,
name: t(key),
};
});
return chartData;
};
const PipelinesRunsStatusCard: React.FC<PipelinesRunsStatusCardProps> = ({
timespan,
domain,
bordered,
namespace,
interval,
parentName,
kind,
}) => {
const { t } = useTranslation('plugin__pipelines-console-plugin');
const [data, setData] = React.useState<SummaryResponse>();
const [data2, setData2] = React.useState<SummaryResponse>();
const [loaded, setLoaded] = React.useState(false);
const startTimespan = timespan - parsePrometheusDuration('1d');
const endDate = new Date(Date.now()).setHours(0, 0, 0, 0);
const startDate = new Date(Date.now() - startTimespan).setHours(0, 0, 0, 0);
const { x: domainX, y: domainY } = (domain as DomainType) || {};
const domainValue: DomainPropType = {
x: domainX || [startDate, endDate],
y: domainY || undefined,
};
const date = getDropDownDate(timespan).toISOString();
if (namespace == ALL_NAMESPACES_KEY) {
namespace = '-';
}
const getSummaryData = (summary, setData, groupBy?) => {
const summaryOpt = {
summary,
filter: getFilter(date, parentName, kind),
data_type: DataType?.PipelineRun,
};
groupBy && (summaryOpt['groupBy'] = groupBy);
getResultsSummary(namespace, summaryOpt)
.then((d) => {
setLoaded(true);
setData(d);
})
.catch((e) => {
throw e;
});
};
useInterval(
() =>
getSummaryData(
'succeeded,cancelled,failed,others,running,total',
setData,
),
interval,
namespace,
date,
);
React.useEffect(() => {
setLoaded(false);
}, [namespace, timespan]);
const [tickValues, type] = getXaxisValues(timespan);
let xTickFormat;
let dayLabel;
let showLabel = false;
let chartDataSucceeded = [];
let chartDataFailed = [];
let chartDataCancelled = [];
let chartDataOthers = [];
switch (type) {
case 'hour':
xTickFormat = (d) => hourformat(d);
showLabel = true;
domainValue.x = [0, 23];
useInterval(
() =>
getSummaryData(
'succeeded,cancelled,failed,others,total',
setData2,
'hour',
),
interval,
namespace,
date,
);
dayLabel = formatDate(new Date());
chartDataSucceeded = getChartData(tickValues, data2, 'Succeeded', 'hour');
chartDataFailed = getChartData(tickValues, data2, 'Failed', 'hour');
chartDataCancelled = getChartData(tickValues, data2, 'Cancelled', 'hour');
chartDataOthers = getChartData(tickValues, data2, 'Others', 'hour');
break;
case 'day':
xTickFormat = (d) => formatDate(d);
domainValue.x = [startDate, endDate];
useInterval(
() =>
getSummaryData(
'succeeded,cancelled,failed,others,total',
setData2,
'day',
),
interval,
namespace,
date,
);
chartDataSucceeded = getChartData(tickValues, data2, 'Succeeded', 'day');
chartDataFailed = getChartData(tickValues, data2, 'Failed', 'day');
chartDataCancelled = getChartData(tickValues, data2, 'Cancelled', 'day');
chartDataOthers = getChartData(tickValues, data2, 'Others', 'day');
break;
case 'week':
xTickFormat = (d) => formatDate(d);
domainValue.x = [new Date(tickValues[0]), new Date(tickValues[11])];
useInterval(
() =>
getSummaryData(
'succeeded,cancelled,failed,others,total',
setData2,
'week',
),
interval,
namespace,
date,
);
chartDataSucceeded = getChartData(tickValues, data2, 'Succeeded', 'week');
chartDataFailed = getChartData(tickValues, data2, 'Failed', 'week');
chartDataCancelled = getChartData(tickValues, data2, 'Cancelled', 'week');
chartDataOthers = getChartData(tickValues, data2, 'Others', 'week');
break;
case 'month':
xTickFormat = (d) => monthYear(d);
domainValue.x = [new Date(tickValues[0]), new Date(tickValues[11])];
useInterval(
() =>
getSummaryData(
'succeeded,cancelled,failed,others,total',
setData2,
'month',
),
interval,
namespace,
date,
);
chartDataSucceeded = getChartData(
tickValues,
data2,
'Succeeded',
'month',
);
chartDataFailed = getChartData(tickValues, data2, 'Failed', 'month');
chartDataCancelled = getChartData(
tickValues,
data2,
'Cancelled',
'month',
);
chartDataOthers = getChartData(tickValues, data2, 'Others', 'month');
break;
default:
console.log('Received wrong data');
break;
}
let xAxisStyle: ChartAxisProps['style'] = {
tickLabels: { fill: 'var(--pf-v5-global--Color--100)' },
};
const yAxisStyle: ChartAxisProps['style'] = {
tickLabels: { fill: 'var(--pf-v5-global--Color--100)' },
};
if (tickValues?.length > 7) {
xAxisStyle = {
tickLabels: {
fill: 'var(--pf-v5-global--Color--100)',
angle: 320,
fontSize: 10,
textAnchor: 'end',
verticalAnchor: 'end',
},
};
}
const colorScale = [
successColor.value,
failureColor.value,
runningColor.value,
cancelledColor.value,
othersColor.value,
];
const colorScaleLineChart = [
successColor.value,
failureColor.value,
cancelledColor.value,
othersColor.value,
];
const donutData = [
{
x: t('Succeeded'),
y: Math.round(
(100 * data?.summary?.[0].succeeded) / data?.summary?.[0].total,
),
},
{
x: t('Failed'),
y: Math.round(
(100 * data?.summary?.[0].failed) / data?.summary?.[0].total,
),
},
{
x: t('Running'),
y: Math.round(
(100 * data?.summary?.[0].running) / data?.summary?.[0].total,
),
},
{
x: t('Cancelled'),
y: Math.round(
(100 * data?.summary?.[0].cancelled) / data?.summary?.[0].total,
),
},
{
x: t('Others'),
y: Math.round(
(100 * data?.summary?.[0].others) / data?.summary?.[0].total,
),
},
];
const legendData = donutData.map((data) => {
return {
name: `${data.x}: ${isNaN(data.y) ? 0 : data.y}%`,
};
});
return (
<>
<Card
className={classNames('pipeline-overview__pipelinerun-status-card', {
'card-border': bordered,
})}
>
<CardTitle className="pipeline-overview__pipelinerun-status-card__title">
<span>
{t('PipelineRun status')}{' '}
<Popover
bodyContent={
<>
{t(
'PipelineRun Status shows the % of PipelineRuns for various status like "Succeeded", "Failed", "Running", "Cancelled" and "Others". Here, Others includes statuses like "Started", "CreateRunFailed", "PipelineRunTimeout"',
)}
</>
}
>
<span
role="button"
aria-label={t('More info')}
className="ocs-getting-started-grid__tooltip-icon"
>
<OutlinedQuestionCircleIcon />
</span>
</Popover>
</span>
</CardTitle>
<CardBody className="pipeline-overview__pipelinerun-status-card__title">
<Grid>
<GridItem xl2={4} xl={12} lg={12} md={12} sm={12}>
<div className="pipeline-overview__pipelinerun-status-card__donut-chart-div">
{loaded ? (
<ChartDonut
constrainToVisibleArea={true}
data={donutData}
labels={({ datum }) => `${datum.x}: ${datum.y}%`}
legendData={legendData}
colorScale={colorScale}
legendOrientation="vertical"
legendPosition="right"
padding={{
bottom: 30,
right: 140, // Adjusted to accommodate legend
top: 20,
}}
legendComponent={
<ChartLegend
data={legendData}
style={{
labels: {
fill: 'var(--pf-v5-global--Color--100)',
fontSize: 14,
},
}}
/>
}
subTitle={t('Succeeded')}
subTitleComponent={
<ChartLabel
style={{
fill: 'var(--pf-v5-global--Color--400)',
fontSize: 14,
}}
/>
}
title={`${data?.summary?.[0].succeeded}/${data?.summary?.[0].total}`}
titleComponent={
<ChartLabel
style={{
fill: 'var(--pf-v5-global--Color--100)',
fontSize: 24,
}}
/>
}
width={350}
/>
) : (
<LoadingInline />
)}
</div>
</GridItem>
<GridItem xl2={8} xl={12} lg={12} md={12} sm={12}>
<div className="pipeline-overview__pipelinerun-status-card__bar-chart-div">
{loaded ? (
<Chart
containerComponent={
<ChartVoronoiContainer
labels={({ datum }) => `${datum.name}: ${datum.y}%`}
constrainToVisibleArea
/>
}
scale={{ x: 'time', y: 'linear' }}
domain={domainValue}
domainPadding={{ x: [30, 25] }}
height={200}
padding={{
top: 20,
bottom: 40,
right: 40,
left: 50,
}}
colorScale={colorScaleLineChart}
width={1000}
>
<ChartAxis
tickValues={tickValues}
style={xAxisStyle}
tickFormat={xTickFormat}
label={showLabel ? dayLabel : ''}
/>
<ChartAxis
dependentAxis
tickFormat={(v) => `${v}%`}
style={yAxisStyle}
/>
<ChartGroup>
<ChartLine data={chartDataSucceeded} />
<ChartLine data={chartDataFailed} />
<ChartLine data={chartDataCancelled} />
<ChartLine data={chartDataOthers} />
</ChartGroup>
</Chart>
) : (
<LoadingInline />
)}
</div>
</GridItem>
</Grid>
</CardBody>
</Card>
</>
);
};
export default PipelinesRunsStatusCard;