mirror of https://github.com/portainer/portainer
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { EndpointsList } from 'kubernetes-types/core/v1';
|
|
import { useQuery } from 'react-query';
|
|
|
|
import axios from '@/portainer/services/axios';
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
import { withError } from '@/react-tools/react-query';
|
|
|
|
import { parseKubernetesAxiosError } from '../axiosError';
|
|
|
|
async function getKubernetesEndpoints(environmentId: EnvironmentId) {
|
|
try {
|
|
const { data: endpointsList } = await axios.get<EndpointsList>(
|
|
`/endpoints/${environmentId}/kubernetes/api/v1/endpoints`
|
|
);
|
|
return endpointsList.items;
|
|
} catch (e) {
|
|
throw parseKubernetesAxiosError(e, 'Unable to retrieve endpoints');
|
|
}
|
|
}
|
|
|
|
export function useKubernetesEndpointsQuery(
|
|
environmentId: EnvironmentId,
|
|
options?: { autoRefreshRate?: number }
|
|
) {
|
|
return useQuery(
|
|
['environments', environmentId, 'kubernetes', 'endpoints'],
|
|
() => getKubernetesEndpoints(environmentId),
|
|
{
|
|
...withError('Unable to retrieve Kubernetes endpoints'),
|
|
refetchInterval() {
|
|
return options?.autoRefreshRate ?? false;
|
|
},
|
|
}
|
|
);
|
|
}
|