mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* apply changes from EE * clear query cache when logging out * Text transitions in smoother
21 lines
672 B
TypeScript
21 lines
672 B
TypeScript
import { useQuery } from 'react-query';
|
|
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
import { withError } from '@/react-tools/react-query';
|
|
|
|
import { getApplicationsListForCluster } from './service';
|
|
|
|
// useQuery to get a list of all applications from an array of namespaces
|
|
export function useApplicationsForCluster(
|
|
environemtId: EnvironmentId,
|
|
namespaces?: string[]
|
|
) {
|
|
return useQuery(
|
|
['environments', environemtId, 'kubernetes', 'applications'],
|
|
() => namespaces && getApplicationsListForCluster(environemtId, namespaces),
|
|
{
|
|
...withError('Unable to retrieve applications'),
|
|
enabled: !!namespaces,
|
|
}
|
|
);
|
|
}
|