-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathhooks.tsx
More file actions
465 lines (443 loc) · 14.7 KB
/
hooks.tsx
File metadata and controls
465 lines (443 loc) · 14.7 KB
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
463
464
465
import type { V1Node } from '@kubernetes/client-node';
import type { Serie } from '@scality/core-ui/dist/next';
import { useMetricsTimeSpan } from '@scality/core-ui/dist/next';
import React, {
createContext,
useCallback,
useEffect,
useMemo,
useRef,
useState,
} from 'react';
import type { UseQueryOptions } from 'react-query';
import { useQueries, useQuery } from 'react-query';
import { useSelector } from 'react-redux';
import {
CHART_COLOR_VALUES,
NODES_LIMIT_QUANTILE,
REFRESH_METRICS_GRAPH,
SAMPLE_DURATION_LAST_TWENTY_FOUR_HOURS,
STATUS_NONE,
VOLUME_CONDITION_LINK,
} from './constants';
import { useAlerts } from './containers/AlertProvider';
import { useAuth } from './containers/PrivateRoute';
import { useStartingTimeStamp } from './containers/StartTimeProvider';
import type { RootState } from './ducks/reducer';
import { getVolumeListData } from './services/NodeVolumesUtils';
import { filterAlerts, getHealthStatus } from './services/alertUtils';
import { getNodesInterfacesString } from './services/graphUtils';
import { useK8sApiConfig } from './services/k8s/api';
import type { TimeSpanProps } from './services/platformlibrary/metrics';
import type { PrometheusQueryResult } from './services/prometheus/api';
import { compareHealth } from './services/utils';
/**
* It brings automatic strong typing to native useSelector by anotating state with RootState.
* It should be used instead of useSelector to benefit from RootState typing
*/
export const useTypedSelector: <TSelected>(
selector: (state: RootState) => TSelected,
equalityFn?: (left: TSelected, right: TSelected) => boolean,
) => TSelected = useSelector;
/**
* It retrieves the nodes data through react-queries
*/
export const useNodes = (): V1Node[] => {
const { coreV1 } = useK8sApiConfig();
const { getToken } = useAuth();
const nodesQuery = useQuery(
'nodesNames',
async () => {
coreV1.setDefaultAuthentication({
applyToRequest: async (req) => {
req.headers.authorization = `Bearer ${await getToken()}`;
},
});
return coreV1.listNode().then((res) => {
if (res.response.statusCode === 200 && res.body?.items) {
return res.body.items;
}
return [];
});
},
{
refetchOnMount: false,
refetchOnWindowFocus: false,
refetchInterval: REFRESH_METRICS_GRAPH,
},
);
return nodesQuery.data || [];
};
export const useNodeAddressesSelector = (
nodes: V1Node[],
): Array<{
internalIP: string;
name: string;
}> => {
return nodes.map((item) => {
return {
internalIP: item?.status?.addresses?.find(
(ip) => ip.type === 'InternalIP',
).address,
name: item?.metadata?.name,
};
});
};
export type MetricsTimeSpan = number;
export type MetricsTimeSpanSetter = (metricsTimeSpan: MetricsTimeSpan) => void;
export type MetricsTimeSpanContextValue = {
metricsTimeSpan: MetricsTimeSpan;
setMetricsTimeSpan: MetricsTimeSpanSetter;
};
export const MetricsTimeSpanContext =
createContext<MetricsTimeSpanContextValue | null>(null);
export const MetricsTimeSpanProvider = ({
children,
}: {
children: React.ReactNode;
}) => {
const [metricsTimeSpan, setMetricsTimeSpan] = useState(
SAMPLE_DURATION_LAST_TWENTY_FOUR_HOURS,
);
return (
<MetricsTimeSpanContext.Provider
value={{
metricsTimeSpan,
setMetricsTimeSpan,
}}
>
{children}
</MetricsTimeSpanContext.Provider>
);
};
export const useVolumesWithAlerts = (nodeName?: string) => {
const { alerts } = useAlerts();
const volumeListData = useTypedSelector((state) =>
// @ts-expect-error - FIXME when you are working on it
getVolumeListData(state, null, nodeName),
);
// @ts-expect-error - FIXME when you are working on it
const volumeListWithStatus = volumeListData.map((volume) => {
const volumeAlerts = filterAlerts(alerts || [], {
persistentvolumeclaim: volume.persistentvolumeclaim,
});
// For the unbound volume, the health status should be none.
const isVolumeBound = volume.status === VOLUME_CONDITION_LINK;
const volumeHealth = getHealthStatus(volumeAlerts);
return { ...volume, health: isVolumeBound ? volumeHealth : STATUS_NONE };
});
volumeListWithStatus.sort((volumeA, volumeB) =>
compareHealth(volumeB.health, volumeA.health),
);
return volumeListWithStatus;
};
export const useSingleChartSerie = ({
getQuery,
transformPrometheusDataToSeries, //It should be memoised using useCallback
}: {
getQuery: (timeSpanProps: TimeSpanProps) => UseQueryOptions;
transformPrometheusDataToSeries: (
prometheusResult: PrometheusQueryResult,
) => Serie[];
}) => {
const { startingTimeISO, currentTimeISO } = useStartingTimeStamp();
const { interval } = useMetricsTimeSpan();
const startTimeRef = useRef(startingTimeISO);
const chartStartTimeRef = useRef(startingTimeISO);
const [series, setSeries] = useState<Serie[]>([]);
startTimeRef.current = startingTimeISO;
const query = useQuery(
getQuery({
startingTimeISO,
currentTimeISO,
frequency: interval,
}),
);
const isLoading = query.isLoading;
useEffect(() => {
if (!isLoading && query.data) {
chartStartTimeRef.current = startTimeRef.current;
// @ts-expect-error - FIXME when you are working on it
setSeries(transformPrometheusDataToSeries(query.data));
}
}, [isLoading, transformPrometheusDataToSeries, JSON.stringify(query.data)]);
return {
series: series,
startingTimeStamp: Date.parse(chartStartTimeRef.current) / 1000,
isLoading,
};
};
export const useChartSeries = ({
getQueries,
transformPrometheusDataToSeries, //It should be memoised using useCallback
}: {
getQueries: (timeSpanProps: TimeSpanProps) => UseQueryOptions[];
transformPrometheusDataToSeries: (
prometheusResults: PrometheusQueryResult[],
) => Serie[];
}) => {
const { startingTimeISO, currentTimeISO } = useStartingTimeStamp();
const { interval } = useMetricsTimeSpan();
const startTimeRef = useRef(startingTimeISO);
const chartStartTimeRef = useRef(startingTimeISO);
const [series, setSeries] = useState<Serie[]>([]);
startTimeRef.current = startingTimeISO;
const queries = useQueries(
getQueries({
startingTimeISO,
currentTimeISO,
frequency: interval,
}),
);
const isLoading = queries.some((query) => query.isLoading);
const queriesData = queries
.map((query) => {
return query.data;
})
/* useQueries is running the requests in paralel and given that
* in transformPrometheusDataToSeries (which is a generic function used by multiple charts)
* we make an assumption on the order of responses
* then we need to make sure that the average query is the second one in the array
* That is achieved by giving a key param to the response object (e.g. 'cpuUsage' and 'cpuUsageAvg')
* and sorting the array alphanumerically on its 'key' property
*/
// @ts-expect-error - FIXME when you are working on it
.sort((query1, query2) => (query1.key > query2.key ? 1 : -1));
useEffect(() => {
if (!isLoading && !queries.find((query) => !query.data)) {
chartStartTimeRef.current = startTimeRef.current;
// @ts-expect-error - FIXME when you are working on it
setSeries(transformPrometheusDataToSeries(queriesData));
}
}, [isLoading, transformPrometheusDataToSeries, JSON.stringify(queriesData)]);
return {
series: series,
startingTimeStamp: Date.parse(chartStartTimeRef.current) / 1000,
isLoading,
};
};
export const useSymetricalChartSeries = ({
getAboveQueries,
getBelowQueries,
transformPrometheusDataToSeries, //It should be memoised using useCallback
}: {
getAboveQueries: (timeSpanProps: TimeSpanProps) => UseQueryOptions[];
getBelowQueries: (timeSpanProps: TimeSpanProps) => UseQueryOptions[];
transformPrometheusDataToSeries: (
prometheusResultAbove: PrometheusQueryResult[],
prometheusResultBelow: PrometheusQueryResult[],
) => {
above: Serie[];
below: Serie[];
};
}) => {
const { startingTimeISO, currentTimeISO } = useStartingTimeStamp();
const { interval } = useMetricsTimeSpan();
const startTimeRef = useRef(startingTimeISO);
const chartStartTimeRef = useRef(startingTimeISO);
const [series, setSeries] = useState<{
above: Serie[];
below: Serie[];
}>({ above: [], below: [] });
startTimeRef.current = startingTimeISO;
const aboveQueries = useQueries(
getAboveQueries({
startingTimeISO,
currentTimeISO,
frequency: interval,
}),
);
const belowQueries = useQueries(
getBelowQueries({
startingTimeISO,
currentTimeISO,
frequency: interval,
}),
);
const isLoading =
aboveQueries.some((query) => query.isLoading || query.isIdle) ||
belowQueries.some((query) => query.isLoading || query.isIdle);
const queriesAboveData = aboveQueries
.map((query) => query.data)
/* useQueries is running the requests in paralel and given that
* in transformPrometheusDataToSeries (which is a generic function used by multiple charts)
* we make an assumption on the order of responses
* then we need to make sure that the average query is the second one in the array
* That is achieved by giving a key param to the response object (e.g. 'IOPSRead' and 'IOPSReadAvg')
* and sorting the array alphanumerically on its 'key' property
*/
// @ts-expect-error - FIXME when you are working on it
.sort((query1, query2) => (query1.key > query2.key ? 1 : -1));
const queriesBelowData = belowQueries
.map((query) => query.data)
// @ts-expect-error - FIXME when you are working on it
.sort((query1, query2) => (query1.key > query2.key ? 1 : -1));
useEffect(() => {
if (
!isLoading &&
!queriesAboveData.find((data) => !data) &&
!queriesBelowData.find((data) => !data)
) {
chartStartTimeRef.current = startTimeRef.current;
setSeries(
// @ts-expect-error - FIXME when you are working on it
transformPrometheusDataToSeries(queriesAboveData, queriesBelowData),
);
}
}, [
isLoading,
transformPrometheusDataToSeries,
JSON.stringify(queriesAboveData),
JSON.stringify(queriesBelowData),
]);
return {
series: series || { above: [], below: [] },
startingTimeStamp: Date.parse(chartStartTimeRef.current) / 1000,
isLoading,
};
};
export const useQuantileOnHover = ({
getQuantileHoverQuery,
metricPrefix,
}: {
getQuantileHoverQuery: (
timestamp?: string, // to be check the type
threshold?: number,
operator?: '>' | '<',
isOnHoverFetchingRequired?: boolean,
devices?: string,
) => UseQueryOptions;
metricPrefix?: string;
}) => {
const [hoverTimestamp, setHoverTimestamp] = useState<number>(0);
const [threshold90, setThreshold90] = useState<number>();
const [threshold5, setThreshold5] = useState<number>();
const [median, setMedian] = useState<number>();
const [valueBase, setValueBase] = useState(1);
// @ts-expect-error - FIXME when you are working on it
const nodeIPsInfo = useSelector((state) => state.app.nodes.IPsInfo);
const devices = getNodesInterfacesString(nodeIPsInfo);
// If the median value is the same as Q90 and Q5, then onHover fetching is not needed.
const isOnHoverFetchingNeeded =
median !== threshold90 && median !== threshold5;
const quantile90Result = useQuery(
getQuantileHoverQuery(
// @ts-expect-error - FIXME when you are working on it
hoverTimestamp / 1000,
threshold90,
'>',
isOnHoverFetchingNeeded,
devices,
),
);
const quantile5Result = useQuery(
getQuantileHoverQuery(
// @ts-expect-error - FIXME when you are working on it
hoverTimestamp / 1000,
threshold5,
'<',
isOnHoverFetchingNeeded,
devices,
),
);
const onHover = useCallback(
(datum) => {
if (!hoverTimestamp || datum.timestamp !== hoverTimestamp) {
setHoverTimestamp(datum.timestamp);
setThreshold90(
metricPrefix
? Math.abs(datum.originalData[`Q90-${metricPrefix}`])
: Math.abs(datum.originalData['Q90']),
);
setThreshold5(
metricPrefix
? Math.abs(datum.originalData[`Q5-${metricPrefix}`])
: Math.abs(datum.originalData['Q5']),
);
setMedian(
metricPrefix
? Math.abs(datum.originalData[`Median-${metricPrefix}`])
: Math.abs(datum.originalData['Median']),
);
setValueBase(datum.metadata.valueBase);
}
},
[hoverTimestamp, metricPrefix],
);
return {
quantile90Result,
quantile5Result,
valueBase,
isOnHoverFetchingNeeded,
onHover,
};
};
export const useShowQuantileChart = (): {
isShowQuantileChart: boolean;
} => {
const nodes = useNodes();
const { flags } = useTypedSelector((state) => state.config.api);
return {
isShowQuantileChart:
(flags && flags.includes('force_quantile_chart')) ||
nodes.length > NODES_LIMIT_QUANTILE,
};
};
// Chart color hooks
/**
* Hook to create dynamic color mapping for chart series
* @param items - Array of items that need color mapping
* @param getKey - Function to extract the key from each item (defaults to item => item)
* @returns Record mapping each key to a color
*/
export const useChartColors = function <T>(
items: T[],
getKey: (item: T) => string = (item) => String(item),
): Record<string, string> {
return useMemo(() => {
const colorMapping: Record<string, string> = {};
items.forEach((item, index) => {
const key = getKey(item);
// Cycle through available colors
const colorIndex = index % CHART_COLOR_VALUES.length;
colorMapping[key] = CHART_COLOR_VALUES[colorIndex];
});
return colorMapping;
}, [items, getKey]);
};
/**
* Hook specifically for node color mapping
* @param nodes - Array of node objects with metadata containing optional name
* @returns Record mapping each node name to a color
*/
export const useNodeColors = (
nodes: Array<{ metadata?: { name?: string } }>,
): Record<string, string> => {
return useChartColors(
nodes.filter((node) => node.metadata?.name),
(node) => node.metadata!.name!,
);
};
export type UserRoles = {
isUser: boolean;
isPlatformAdmin: boolean;
isStorageManager: boolean;
};
export const useUserRoles = (): UserRoles => {
const auth = useAuth();
const userRoles = auth.userData?.groups ?? [];
return {
isUser: userRoles.includes('user'),
isPlatformAdmin: userRoles.includes('PlatformAdmin'),
isStorageManager: userRoles.includes('StorageManager'),
};
};
export type UserAccessRight = {
canConfigureEmailNotification: boolean;
};
export const useUserAccessRight = (): UserAccessRight => {
const { isPlatformAdmin } = useUserRoles();
return {
canConfigureEmailNotification: isPlatformAdmin,
};
};