generated from openshift/console-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathPipelineRunsTotalCard.tsx
164 lines (151 loc) · 4.46 KB
/
PipelineRunsTotalCard.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
import * as React from 'react';
import classNames from 'classnames';
import { useTranslation } from 'react-i18next';
import { CheckIcon } from '@patternfly/react-icons';
import {
Card,
CardBody,
CardTitle,
Divider,
Grid,
GridItem,
Label,
} from '@patternfly/react-core';
import { SummaryProps, useInterval } from './utils';
import { PipelineModel, RepositoryModel } from '../../models';
import { getResultsSummary } from '../utils/summary-api';
import { ALL_NAMESPACES_KEY } from '../../consts';
import { getDropDownDate } from './dateTime';
import { LoadingInline } from '../Loading';
import { DataType } from '../../types';
import './PipelineRunsTotalCard.scss';
interface PipelinesRunsDurationProps {
namespace: string;
timespan: number;
interval: number;
summaryData?: SummaryProps;
bordered?: boolean;
}
const PipelinesRunsTotalCard: React.FC<PipelinesRunsDurationProps> = ({
namespace,
timespan,
interval,
bordered,
}) => {
const { t } = useTranslation('plugin__pipelines-console-plugin');
const [totalRun, setTotalRun] = React.useState(0);
const [plrRun, setPlrRun] = React.useState(0);
const [repoRun, setRepoRun] = React.useState(0);
const [loaded, setLoaded] = React.useState(false);
if (namespace == ALL_NAMESPACES_KEY) {
namespace = '-';
}
React.useEffect(() => {
setLoaded(false);
}, [namespace, timespan]);
const date = getDropDownDate(timespan).toISOString();
const getSummaryData = (filter, setData) => {
getResultsSummary(namespace, {
summary: 'total',
data_type: DataType?.PipelineRun,
filter,
})
.then((response) => {
setLoaded(true);
setData(response.summary?.[0].total);
})
.catch((e) => {
console.error('Error in getSummary', e);
});
};
const pipelineFilter = `data.spec.pipelineRef.contains("name") && data.status.startTime>timestamp("${date}")`;
useInterval(
() => getSummaryData(pipelineFilter, setPlrRun),
interval,
namespace,
date,
);
const pacFilter = `data.metadata.labels.contains("pipelinesascode.tekton.dev/repository") && data.status.startTime>timestamp("${date}")`;
useInterval(
() => getSummaryData(pacFilter, setRepoRun),
interval,
namespace,
date,
);
const allFilter = `data.status.startTime>timestamp("${date}")`;
useInterval(
() => getSummaryData(allFilter, setTotalRun),
interval,
namespace,
date,
);
return (
<>
<Card
className={classNames('pipeline-overview__totals-card', {
'card-border': bordered,
})}
>
<CardTitle>
<span>{t('Total runs')}</span>
</CardTitle>
<Divider />
<CardBody>
<Grid hasGutter className="pipeline-overview__totals-card__grid">
<GridItem span={9}>
<span>
<Label
variant="outline"
className="pipeline-overview__totals-card__label"
>
{PipelineModel.abbr}
</Label>
{t('Runs in pipelines')}
</span>
</GridItem>
<GridItem
span={3}
className="pipeline-overview__totals-card__value"
>
{loaded ? plrRun : <LoadingInline />}
</GridItem>
</Grid>
<Grid hasGutter className="pipeline-overview__totals-card__grid">
<GridItem span={9}>
<span>
<Label
variant="outline"
className="pipeline-overview__totals-card__repo-label"
>
{RepositoryModel.abbr}
</Label>
{t('Runs in repositories')}
</span>
</GridItem>
<GridItem
span={3}
className="pipeline-overview__totals-card__value"
>
{loaded ? repoRun : <LoadingInline />}
</GridItem>
</Grid>
<Grid hasGutter>
<GridItem span={9}>
<span>
<CheckIcon className="pipeline-overview__totals-card__icon" />
{t('Total runs')}
</span>
</GridItem>
<GridItem
span={3}
className="pipeline-overview__totals-card__value"
>
{loaded ? totalRun : <LoadingInline />}
</GridItem>
</Grid>
</CardBody>
</Card>
</>
);
};
export default PipelinesRunsTotalCard;