refactor: rewrite useAdminSamlAuthProviderRoleMappings with RQ

This commit is contained in:
Rıdvan Akca
2024-03-15 19:03:54 +03:00
parent f0793992a6
commit 6a1350fd00
7 changed files with 48 additions and 58 deletions

View File

@@ -0,0 +1,24 @@
import { useQuery } from '@tanstack/react-query';
import api from 'helpers/api';
export default function useAdminSamlAuthProviderRoleMappings({
adminSamlAuthProviderId,
}) {
const query = useQuery({
queryKey: ['adminSamlAuthProviderRoleMappings', adminSamlAuthProviderId],
queryFn: async ({ signal }) => {
const { data } = await api.get(
`/v1/admin/saml-auth-providers/${adminSamlAuthProviderId}/role-mappings`,
{
signal,
},
);
return data;
},
enabled: !!adminSamlAuthProviderId,
});
return query;
}

View File

@@ -1,21 +0,0 @@
import * as React from 'react';
import { useLazyQuery } from '@apollo/client';
import { GET_SAML_AUTH_PROVIDER_ROLE_MAPPINGS } from 'graphql/queries/get-saml-auth-provider-role-mappings';
export default function useSamlAuthProviderRoleMappings(providerId) {
const [getSamlAuthProviderRoleMappings, { data, loading }] = useLazyQuery(
GET_SAML_AUTH_PROVIDER_ROLE_MAPPINGS,
);
React.useEffect(() => {
if (providerId) {
getSamlAuthProviderRoleMappings({
variables: {
id: providerId,
},
});
}
}, [providerId]);
return {
roleMappings: data?.getSamlAuthProviderRoleMappings || [],
loading,
};
}