generated from openshift/console-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathuseTektonResults.ts
138 lines (129 loc) · 4.04 KB
/
useTektonResults.ts
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
import { K8sResourceCommon } from '@openshift-console/dynamic-plugin-sdk';
import * as React from 'react';
import {
PipelineRunKind,
RecordsList,
TaskRunKind,
TektonResultsOptions,
} from '../../types';
import { getPipelineRuns, getTaskRuns } from '../utils/tekton-results';
export type GetNextPage = () => void | undefined;
const useTRRuns = <Kind extends K8sResourceCommon>(
getRuns: (
namespace: string,
options?: TektonResultsOptions,
nextPageToken?: string,
cacheKey?: string,
) => Promise<[Kind[], RecordsList, boolean?]>,
namespace: string,
options?: TektonResultsOptions,
cacheKey?: string,
): [Kind[], boolean, unknown, GetNextPage] => {
const [nextPageToken, setNextPageToken] = React.useState<string>(null);
const [localCacheKey, setLocalCacheKey] = React.useState(cacheKey);
if (cacheKey !== localCacheKey) {
// force update local cache key
setLocalCacheKey(cacheKey);
}
const [result, setResult] = React.useState<
[Kind[], boolean, unknown, GetNextPage]
>([[], false, undefined, undefined]);
// reset token if namespace or options change
React.useEffect(() => {
setNextPageToken(null);
}, [namespace, options, cacheKey]);
// eslint-disable-next-line consistent-return
React.useEffect(() => {
let disposed = false;
(async () => {
try {
const tkPipelineRuns = await getRuns(
namespace,
options,
nextPageToken,
localCacheKey,
);
if (!disposed) {
const token = tkPipelineRuns[1].nextPageToken;
const callInflight = !!tkPipelineRuns?.[2];
const loaded = !callInflight;
if (!callInflight) {
setResult((cur) => [
nextPageToken
? [...cur[0], ...tkPipelineRuns[0]]
: tkPipelineRuns[0],
loaded,
undefined,
token
? (() => {
// ensure we can only call this once
let executed = false;
return () => {
if (!disposed && !executed) {
executed = true;
// trigger the update
setNextPageToken(token);
return true;
}
return false;
};
})()
: undefined,
]);
}
}
} catch (e) {
if (!disposed) {
if (nextPageToken) {
setResult((cur) => [cur[0], cur[1], e, undefined]);
} else {
setResult([[], false, e, undefined]);
}
}
}
})();
return () => {
disposed = true;
};
}, [namespace, options, nextPageToken, localCacheKey, getRuns]);
return result;
};
export const useTRPipelineRuns = (
namespace: string,
options?: TektonResultsOptions,
cacheKey?: string,
): [PipelineRunKind[], boolean, unknown, GetNextPage] =>
useTRRuns<PipelineRunKind>(getPipelineRuns, namespace, options, cacheKey);
export const useTRTaskRuns = (
namespace: string,
options?: TektonResultsOptions,
cacheKey?: string,
): [TaskRunKind[], boolean, unknown, GetNextPage] =>
useTRRuns<TaskRunKind>(getTaskRuns, namespace, options, cacheKey);
// export const useTRTaskRunLog = (
// namespace: string,
// taskRunName: string,
// ): [string, boolean, unknown] => {
// const [result, setResult] = React.useState<[string, boolean, unknown]>([null, false, undefined]);
// React.useEffect(() => {
// let disposed = false;
// if (namespace && taskRunName) {
// (async () => {
// try {
// const log = await getTaskRunLog(namespace, taskRunName);
// if (!disposed) {
// setResult([log, true, undefined]);
// }
// } catch (e) {
// if (!disposed) {
// setResult([null, false, e]);
// }
// }
// })();
// }
// return () => {
// disposed = true;
// };
// }, [namespace, taskRunName]);
// return result;
// };