mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
refactor(azure): migrate module to react [EE-2782] (#6689)
* refactor(azure): migrate module to react [EE-2782] * fix(azure): remove optional chain * feat(azure): apply new icons in dashboard * feat(azure): apply new icons in dashboard * feat(ui): allow single string for breadcrumbs * refactor(azure/containers): use Table.content * feat(azure/containers): implement new ui [EE-3538] * fix(azure/containers): use correct icon * chore(tests): mock svg as component * fix(azure): fix tests Co-authored-by: matias.spinarolli <matias.spinarolli@portainer.io>
This commit is contained in:
parent
b059641c80
commit
82b848af0c
97 changed files with 1723 additions and 1430 deletions
59
app/react/azure/queries/useContainerGroups.ts
Normal file
59
app/react/azure/queries/useContainerGroups.ts
Normal file
|
@ -0,0 +1,59 @@
|
|||
import _ from 'lodash';
|
||||
import { useMemo } from 'react';
|
||||
import { useQueries } from 'react-query';
|
||||
|
||||
import { withError } from '@/react-tools/react-query';
|
||||
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
||||
import { EnvironmentId } from '@/portainer/environments/types';
|
||||
|
||||
import { Subscription, ContainerGroup } from '../types';
|
||||
|
||||
import { queryKeys } from './query-keys';
|
||||
import { buildContainerGroupUrl } from './utils';
|
||||
|
||||
export function useContainerGroups(
|
||||
environmentId: EnvironmentId,
|
||||
subscriptions: Subscription[] = [],
|
||||
enabled?: boolean
|
||||
) {
|
||||
const queries = useQueries(
|
||||
useMemo(
|
||||
() =>
|
||||
subscriptions.map((subscription) => ({
|
||||
queryKey: queryKeys.containerGroups(
|
||||
environmentId,
|
||||
subscription.subscriptionId
|
||||
),
|
||||
queryFn: async () =>
|
||||
getContainerGroups(environmentId, subscription.subscriptionId),
|
||||
...withError('Unable to retrieve Azure container groups'),
|
||||
enabled,
|
||||
})),
|
||||
[subscriptions, enabled, environmentId]
|
||||
)
|
||||
);
|
||||
|
||||
return useMemo(
|
||||
() => ({
|
||||
containerGroups: _.flatMap(_.compact(queries.map((q) => q.data))),
|
||||
isLoading: queries.some((q) => q.isLoading),
|
||||
}),
|
||||
[queries]
|
||||
);
|
||||
}
|
||||
|
||||
export async function getContainerGroups(
|
||||
environmentId: EnvironmentId,
|
||||
subscriptionId: string
|
||||
) {
|
||||
try {
|
||||
const { data } = await axios.get<{ value: ContainerGroup[] }>(
|
||||
buildContainerGroupUrl(environmentId, subscriptionId),
|
||||
{ params: { 'api-version': '2018-04-01' } }
|
||||
);
|
||||
|
||||
return data.value;
|
||||
} catch (e) {
|
||||
throw parseAxiosError(e as Error, 'Unable to retrieve container groups');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue