mirror of https://github.com/portainer/portainer
45 lines
1012 B
TypeScript
45 lines
1012 B
TypeScript
![]() |
import { useQuery } from 'react-query';
|
||
|
|
||
|
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
||
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
||
|
|
||
|
import { buildAgentUrl } from './build-url';
|
||
|
|
||
|
interface Node {
|
||
|
IPAddress: string;
|
||
|
NodeName: string;
|
||
|
NodeRole: string;
|
||
|
}
|
||
|
|
||
|
export function useAgentNodes<T = Array<Node>>(
|
||
|
environmentId: EnvironmentId,
|
||
|
apiVersion: number,
|
||
|
{
|
||
|
select,
|
||
|
enabled,
|
||
|
}: {
|
||
|
select?: (data: Array<Node>) => T;
|
||
|
enabled?: boolean;
|
||
|
} = {}
|
||
|
) {
|
||
|
return useQuery(
|
||
|
['environment', environmentId, 'agent', 'nodes'],
|
||
|
() => getNodes(environmentId, apiVersion),
|
||
|
{
|
||
|
select,
|
||
|
enabled,
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
async function getNodes(environmentId: EnvironmentId, apiVersion: number) {
|
||
|
try {
|
||
|
const response = await axios.get<Array<Node>>(
|
||
|
buildAgentUrl(environmentId, apiVersion, 'agents')
|
||
|
);
|
||
|
return response.data;
|
||
|
} catch (error) {
|
||
|
throw parseAxiosError(error as Error, 'Unable to retrieve nodes');
|
||
|
}
|
||
|
}
|