@tanstack/react-query
Version:
Hooks for managing, caching and syncing asynchronous and remote data in React
66 lines (54 loc) • 1.95 kB
JavaScript
import * as React from 'react';
const defaultContext = /*#__PURE__*/React.createContext(undefined);
const QueryClientSharingContext = /*#__PURE__*/React.createContext(false); // If we are given a context, we will use it.
// Otherwise, if contextSharing is on, we share the first and at least one
// instance of the context across the window
// to ensure that if React Query is used across
// different bundles or microfrontends they will
// all use the same **instance** of context, regardless
// of module scoping.
function getQueryClientContext(context, contextSharing) {
if (context) {
return context;
}
if (contextSharing && typeof window !== 'undefined') {
if (!window.ReactQueryClientContext) {
window.ReactQueryClientContext = defaultContext;
}
return window.ReactQueryClientContext;
}
return defaultContext;
}
const useQueryClient = ({
context
} = {}) => {
const queryClient = React.useContext(getQueryClientContext(context, React.useContext(QueryClientSharingContext)));
if (!queryClient) {
throw new Error('No QueryClient set, use QueryClientProvider to set one');
}
return queryClient;
};
const QueryClientProvider = ({
client,
children,
context,
contextSharing = false
}) => {
React.useEffect(() => {
client.mount();
return () => {
client.unmount();
};
}, [client]);
if (process.env.NODE_ENV !== 'production' && contextSharing) {
client.getLogger().error("The contextSharing option has been deprecated and will be removed in the next major version");
}
const Context = getQueryClientContext(context, contextSharing);
return /*#__PURE__*/React.createElement(QueryClientSharingContext.Provider, {
value: !context && contextSharing
}, /*#__PURE__*/React.createElement(Context.Provider, {
value: client
}, children));
};
export { QueryClientProvider, defaultContext, useQueryClient };
//# sourceMappingURL=QueryClientProvider.mjs.map