mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 06:49:40 +02:00
* 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>
37 lines
1 KiB
TypeScript
37 lines
1 KiB
TypeScript
import { useQuery } from 'react-query';
|
|
|
|
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
|
import { EnvironmentId } from '@/portainer/environments/types';
|
|
import { withError } from '@/react-tools/react-query';
|
|
|
|
import { azureErrorParser } from '../services/utils';
|
|
import { Subscription } from '../types';
|
|
|
|
import { queryKeys } from './query-keys';
|
|
import { buildSubscriptionsUrl } from './utils';
|
|
|
|
export function useSubscriptions(environmentId: EnvironmentId) {
|
|
return useQuery(
|
|
queryKeys.subscriptions(environmentId),
|
|
() => getSubscriptions(environmentId),
|
|
{
|
|
...withError('Unable to retrieve Azure subscriptions'),
|
|
}
|
|
);
|
|
}
|
|
|
|
async function getSubscriptions(environmentId: EnvironmentId) {
|
|
try {
|
|
const { data } = await axios.get<{ value: Subscription[] }>(
|
|
buildSubscriptionsUrl(environmentId),
|
|
{ params: { 'api-version': '2016-06-01' } }
|
|
);
|
|
return data.value;
|
|
} catch (e) {
|
|
throw parseAxiosError(
|
|
e as Error,
|
|
'Unable to retrieve subscriptions',
|
|
azureErrorParser
|
|
);
|
|
}
|
|
}
|