mirror of https://github.com/portainer/portainer
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
|
|
import { withError } from '@/react-tools/react-query';
|
|
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
|
|
const queryKeys = {
|
|
list: (environmentId: EnvironmentId) =>
|
|
['environments', environmentId, 'dashboard', 'ingressesCount'] as const,
|
|
};
|
|
|
|
export function useGetIngressesCountQuery(
|
|
environmentId: EnvironmentId,
|
|
options?: { autoRefreshRate?: number }
|
|
) {
|
|
return useQuery(
|
|
queryKeys.list(environmentId),
|
|
async () => getIngressesCount(environmentId),
|
|
{
|
|
...withError('Unable to get ingresses count'),
|
|
refetchInterval() {
|
|
return options?.autoRefreshRate ?? false;
|
|
},
|
|
}
|
|
);
|
|
}
|
|
|
|
async function getIngressesCount(environmentId: EnvironmentId) {
|
|
try {
|
|
const { data: ingressesCount } = await axios.get<number>(
|
|
`kubernetes/${environmentId}/ingresses/count`
|
|
);
|
|
|
|
return ingressesCount;
|
|
} catch (e) {
|
|
throw parseAxiosError(
|
|
e,
|
|
'Unable to get dashboard stats. Some counts may be inaccurate.'
|
|
);
|
|
}
|
|
}
|