mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +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>
34 lines
836 B
TypeScript
34 lines
836 B
TypeScript
import { ProviderViewModel, ResourceGroup } from '@/react/azure/types';
|
|
|
|
export function getSubscriptionResourceGroups(
|
|
subscriptionId?: string,
|
|
resourceGroups?: Record<string, ResourceGroup[]>
|
|
) {
|
|
if (!subscriptionId || !resourceGroups || !resourceGroups[subscriptionId]) {
|
|
return [];
|
|
}
|
|
|
|
return resourceGroups[subscriptionId].map(({ name, id }) => ({
|
|
value: id,
|
|
label: name,
|
|
}));
|
|
}
|
|
|
|
export function getSubscriptionLocations(
|
|
subscriptionId?: string,
|
|
containerInstanceProviders?: Record<string, ProviderViewModel | undefined>
|
|
) {
|
|
if (!subscriptionId || !containerInstanceProviders) {
|
|
return [];
|
|
}
|
|
|
|
const provider = containerInstanceProviders[subscriptionId];
|
|
if (!provider) {
|
|
return [];
|
|
}
|
|
|
|
return provider.locations.map((location) => ({
|
|
value: location,
|
|
label: location,
|
|
}));
|
|
}
|