mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
console: add reload metadata call to useInstallMetadata
hook
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6168 GitOrigin-RevId: f8f72ab47898594d6aa8327d44215c760756a160
This commit is contained in:
parent
000e9c2f24
commit
52873dba95
@ -16,18 +16,32 @@ type MutationFnArgs = {
|
||||
|
||||
/**
|
||||
* Mutation Function to install the metadata. Calls the `replace_metadata` api with the new
|
||||
* metadata to be replaced.
|
||||
* metadata to be replaced. Then calls the `reload_meatadata` api to get graphql engine in sync
|
||||
* with the latest matadata.
|
||||
*/
|
||||
const installMetadataMutationFn = (args: MutationFnArgs) => {
|
||||
const installMetadataMutationFn = async (args: MutationFnArgs) => {
|
||||
const { newMetadata, headers } = args;
|
||||
const payload = {
|
||||
|
||||
const replaceMetadataPayload = {
|
||||
type: 'replace_metadata',
|
||||
args: newMetadata,
|
||||
};
|
||||
return Api.post<Record<string, string>>({
|
||||
await Api.post<Record<string, string>>({
|
||||
url: Endpoints.metadata,
|
||||
headers,
|
||||
body: payload,
|
||||
body: replaceMetadataPayload,
|
||||
});
|
||||
|
||||
const reloadMetadataPayload = {
|
||||
type: 'reload_metadata',
|
||||
args: {
|
||||
reload_sources: true,
|
||||
},
|
||||
};
|
||||
await Api.post<Record<string, string>>({
|
||||
url: Endpoints.metadata,
|
||||
headers,
|
||||
body: reloadMetadataPayload,
|
||||
});
|
||||
};
|
||||
|
||||
@ -94,6 +108,9 @@ export function useInstallMetadata(
|
||||
});
|
||||
}
|
||||
}
|
||||
// not adding mutation to dependencies as its a non-memoised function, will trigger this useCallback
|
||||
// every time we do a mutation. https://github.com/TanStack/query/issues/1858
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [oldMetadata, templateMetadata, headers, dataSourceName]);
|
||||
|
||||
if (isError) {
|
||||
|
@ -74,6 +74,9 @@ export function useInstallMigration(
|
||||
headers,
|
||||
});
|
||||
}
|
||||
// not adding mutation to dependencies as its a non-memoised function, will trigger this useCallback
|
||||
// every time we do a mutation. https://github.com/TanStack/query/issues/1858
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [dataSourceName, migrationSQL, headers]);
|
||||
|
||||
if (isError) {
|
||||
|
@ -38,5 +38,7 @@ export const usePrefetchNeonOnboardingTemplateData = (
|
||||
queryClient.prefetchQuery(schemaImageUrl, () =>
|
||||
fetchTemplateDataQueryFn(schemaImageUrl, {})
|
||||
);
|
||||
// empty deps as it should only run once the component mounts
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, []);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user