mirror of https://github.com/portainer/portainer
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
|
|
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
|
import { notifyError } from '@/portainer/services/notifications';
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
|
|
import { PortainerNamespace } from '../types';
|
|
|
|
import { queryKeys } from './queryKeys';
|
|
|
|
type QueryParams = 'withResourceQuota';
|
|
|
|
export function useNamespaceQuery<T = PortainerNamespace>(
|
|
environmentId: EnvironmentId,
|
|
namespace: string,
|
|
{
|
|
select,
|
|
enabled,
|
|
params,
|
|
}: {
|
|
select?(namespace: PortainerNamespace): T;
|
|
params?: Record<QueryParams, string>;
|
|
enabled?: boolean;
|
|
} = {}
|
|
) {
|
|
return useQuery(
|
|
queryKeys.namespace(environmentId, namespace),
|
|
() => getNamespace(environmentId, namespace, params),
|
|
{
|
|
enabled: !!environmentId && !!namespace && enabled,
|
|
onError: (err) => {
|
|
notifyError('Failure', err as Error, 'Unable to get namespace.');
|
|
},
|
|
select,
|
|
}
|
|
);
|
|
}
|
|
|
|
// getNamespace is used to retrieve a namespace using the Portainer backend
|
|
export async function getNamespace(
|
|
environmentId: EnvironmentId,
|
|
namespace: string,
|
|
params?: Record<QueryParams, string>
|
|
) {
|
|
try {
|
|
const { data: ns } = await axios.get<PortainerNamespace>(
|
|
`kubernetes/${environmentId}/namespaces/${namespace}`,
|
|
{
|
|
params,
|
|
}
|
|
);
|
|
return ns;
|
|
} catch (e) {
|
|
throw parseAxiosError(e, 'Unable to retrieve namespace');
|
|
}
|
|
}
|