-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathuseFeatures.ts
53 lines (46 loc) · 1.57 KB
/
useFeatures.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
import * as React from 'react';
import { proxiedFetch } from '../proxied-fetch';
type features = {
'acm-alerting': boolean;
'perses-dashboards': boolean;
incidents: boolean;
};
type featuresResponse = {
'acm-alerting'?: boolean;
'perses-dashboards'?: boolean;
incidents?: boolean;
};
const noFeatures: features = {
'acm-alerting': false,
'perses-dashboards': false,
incidents: false,
};
// monitoring-console-plugin proxy via. cluster observability operator
// https://github.com/rhobs/observability-operator/blob/28ac1ba9e179d25cae60e8223bcf61816e23a311/pkg/controllers/uiplugin/monitoring.go#L44
const MCP_PROXY_PATH = '/api/proxy/plugin/monitoring-console-plugin/backend';
const featuresEndpoint = `${MCP_PROXY_PATH}/features`;
export const useFeatures = () => {
const [features, setFeatures] = React.useState<features>(noFeatures);
const dashboardsAbort = React.useRef<() => void | undefined>();
const getFeatures = React.useCallback(async () => {
try {
if (dashboardsAbort.current) {
dashboardsAbort.current();
}
const response = await proxiedFetch<featuresResponse>(featuresEndpoint);
setFeatures({ ...noFeatures, ...response });
} catch (error) {
setFeatures(noFeatures);
}
}, []);
// Use useEffect to call getFeatures only once after the component mounts
React.useEffect(() => {
getFeatures();
}, [getFeatures]);
return {
features,
isAcmAlertingActive: features['acm-alerting'],
arePersesDashboardsActive: features['perses-dashboards'],
areIncidentsActive: features.incidents,
};
};