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', 'volumesCount'] as const, }; export function useGetVolumesCountQuery( environmentId: EnvironmentId, options?: { autoRefreshRate?: number } ) { return useQuery( queryKeys.list(environmentId), async () => getVolumesCount(environmentId), { ...withError('Unable to get volumes count'), refetchInterval() { return options?.autoRefreshRate ?? false; }, } ); } async function getVolumesCount(environmentId: EnvironmentId) { try { const { data: volumesCount } = await axios.get( `kubernetes/${environmentId}/volumes/count` ); return volumesCount; } catch (e) { throw parseAxiosError( e, 'Unable to get dashboard stats. Some counts may be inaccurate.' ); } }