1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-22 23:09:41 +02:00

refactor(app): persisted folders form section [EE-6235] (#10693)

* refactor(app): persisted folder section [EE-6235]
This commit is contained in:
Ali 2024-01-03 09:46:26 +13:00 committed by GitHub
parent 7a2412b1be
commit e07ee05ee7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 732 additions and 374 deletions

View file

@ -0,0 +1,46 @@
import { useQuery } from 'react-query';
import { PersistentVolumeClaimList } from 'kubernetes-types/core/v1';
import { EnvironmentId } from '@/react/portainer/environments/types';
import { withError } from '@/react-tools/react-query';
import axios from '@/portainer/services/axios';
import { parseKubernetesAxiosError } from '../axiosError';
// useQuery to get a list of all persistent volume claims from an array of namespaces
export function usePVCsQuery(
environmentId: EnvironmentId,
namespaces?: string[]
) {
return useQuery(
['environments', environmentId, 'kubernetes', 'pvcs'],
async () => {
if (!namespaces) {
return [];
}
const pvcs = await Promise.all(
namespaces?.map((namespace) => getPVCs(environmentId, namespace))
);
return pvcs.flat();
},
{
...withError('Unable to retrieve perrsistent volume claims'),
enabled: !!namespaces,
}
);
}
// get all persistent volume claims for a namespace
export async function getPVCs(environmentId: EnvironmentId, namespace: string) {
try {
const { data } = await axios.get<PersistentVolumeClaimList>(
`/endpoints/${environmentId}/kubernetes/api/v1/namespaces/${namespace}/persistentvolumeclaims`
);
return data.items;
} catch (e) {
throw parseKubernetesAxiosError(
e,
'Unable to retrieve persistent volume claims'
);
}
}