1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

refactor(k8s): namespace core logic (#12142)

Co-authored-by: testA113 <aliharriss1995@gmail.com>
Co-authored-by: Anthony Lapenna <anthony.lapenna@portainer.io>
Co-authored-by: James Carppe <85850129+jamescarppe@users.noreply.github.com>
Co-authored-by: Ali <83188384+testA113@users.noreply.github.com>
This commit is contained in:
Steven Kang 2024-10-01 14:15:51 +13:00 committed by GitHub
parent da010f3d08
commit ea228c3d6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
276 changed files with 9241 additions and 3361 deletions

View file

@ -0,0 +1,6 @@
import { EnvironmentId } from '@/react/portainer/environments/types';
export const queryKeys = {
list: (environmentId: EnvironmentId) =>
['environments', environmentId, 'kubernetes', 'roles'] as const,
};

View file

@ -0,0 +1,29 @@
import { useMutation, useQueryClient } from '@tanstack/react-query';
import { withGlobalError, withInvalidate } from '@/react-tools/react-query';
import axios, { parseAxiosError } from '@/portainer/services/axios';
import { EnvironmentId } from '@/react/portainer/environments/types';
import { queryKeys } from './query-keys';
export function useDeleteRolesMutation(environmentId: EnvironmentId) {
const queryClient = useQueryClient();
return useMutation(deleteRole, {
...withInvalidate(queryClient, [queryKeys.list(environmentId)]),
...withGlobalError('Unable to delete roles'),
});
}
export async function deleteRole({
environmentId,
data,
}: {
environmentId: EnvironmentId;
data: Record<string, string[]>;
}) {
try {
return await axios.post(`kubernetes/${environmentId}/roles/delete`, data);
} catch (e) {
throw parseAxiosError(e, `Unable to delete roles`);
}
}

View file

@ -0,0 +1,41 @@
import { useQuery } from '@tanstack/react-query';
import { withGlobalError } from '@/react-tools/react-query';
import axios, { parseAxiosError } from '@/portainer/services/axios';
import { EnvironmentId } from '@/react/portainer/environments/types';
import { Role } from '../types';
const queryKeys = {
list: (environmentId: EnvironmentId) =>
['environments', environmentId, 'kubernetes', 'roles'] as const,
};
export function useGetAllRolesQuery(
environmentId: EnvironmentId,
options?: { autoRefreshRate?: number; enabled?: boolean }
) {
return useQuery(
queryKeys.list(environmentId),
async () => getAllRoles(environmentId),
{
...withGlobalError('Unable to get roles'),
refetchInterval() {
return options?.autoRefreshRate ?? false;
},
enabled: options?.enabled,
}
);
}
async function getAllRoles(environmentId: EnvironmentId) {
try {
const { data: roles } = await axios.get<Role[]>(
`kubernetes/${environmentId}/roles`
);
return roles;
} catch (e) {
throw parseAxiosError(e, 'Unable to get roles');
}
}