UNPKG

@reduxjs/toolkit

Version:

The official, opinionated, batteries-included toolset for efficient Redux development

718 lines (704 loc) 26.6 kB
// src/query/react/index.ts import { buildCreateApi, coreModule } from "@reduxjs/toolkit/query"; // src/query/react/module.ts import { formatProdErrorMessage as _formatProdErrorMessage3 } from "@reduxjs/toolkit"; import { batch as rrBatch, useDispatch as rrUseDispatch, useSelector as rrUseSelector, useStore as rrUseStore } from "react-redux"; import { createSelector as _createSelector } from "reselect"; // src/query/utils/capitalize.ts function capitalize(str) { return str.replace(str[0], str[0].toUpperCase()); } // src/query/utils/countObjectKeys.ts function countObjectKeys(obj) { let count = 0; for (const _key in obj) { count++; } return count; } // src/query/endpointDefinitions.ts function isQueryDefinition(e) { return e.type === "query" /* query */; } function isMutationDefinition(e) { return e.type === "mutation" /* mutation */; } function isInfiniteQueryDefinition(e) { return e.type === "infinitequery" /* infinitequery */; } // src/query/tsHelpers.ts function safeAssign(target, ...args) { return Object.assign(target, ...args); } // src/query/react/buildHooks.ts import { formatProdErrorMessage as _formatProdErrorMessage, formatProdErrorMessage as _formatProdErrorMessage2 } from "@reduxjs/toolkit"; import { defaultSerializeQueryArgs, QueryStatus, skipToken } from "@reduxjs/toolkit/query"; import { useCallback, useDebugValue, useEffect as useEffect3, useLayoutEffect, useMemo as useMemo2, useRef as useRef3, useState } from "react"; import { shallowEqual as shallowEqual2 } from "react-redux"; // src/query/react/constants.ts var UNINITIALIZED_VALUE = Symbol(); // src/query/react/useSerializedStableValue.ts import { useEffect, useRef, useMemo } from "react"; function useStableQueryArgs(queryArgs, serialize, endpointDefinition, endpointName) { const incoming = useMemo(() => ({ queryArgs, serialized: typeof queryArgs == "object" ? serialize({ queryArgs, endpointDefinition, endpointName }) : queryArgs }), [queryArgs, serialize, endpointDefinition, endpointName]); const cache = useRef(incoming); useEffect(() => { if (cache.current.serialized !== incoming.serialized) { cache.current = incoming; } }, [incoming]); return cache.current.serialized === incoming.serialized ? cache.current.queryArgs : queryArgs; } // src/query/react/useShallowStableValue.ts import { useEffect as useEffect2, useRef as useRef2 } from "react"; import { shallowEqual } from "react-redux"; function useShallowStableValue(value) { const cache = useRef2(value); useEffect2(() => { if (!shallowEqual(cache.current, value)) { cache.current = value; } }, [value]); return shallowEqual(cache.current, value) ? cache.current : value; } // src/query/react/buildHooks.ts var canUseDOM = () => !!(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined"); var isDOM = /* @__PURE__ */ canUseDOM(); var isRunningInReactNative = () => typeof navigator !== "undefined" && navigator.product === "ReactNative"; var isReactNative = /* @__PURE__ */ isRunningInReactNative(); var getUseIsomorphicLayoutEffect = () => isDOM || isReactNative ? useLayoutEffect : useEffect3; var useIsomorphicLayoutEffect = /* @__PURE__ */ getUseIsomorphicLayoutEffect(); var noPendingQueryStateSelector = (selected) => { if (selected.isUninitialized) { return { ...selected, isUninitialized: false, isFetching: true, isLoading: selected.data !== void 0 ? false : true, status: QueryStatus.pending }; } return selected; }; function pick(obj, ...keys) { const ret = {}; keys.forEach((key) => { ret[key] = obj[key]; }); return ret; } var COMMON_HOOK_DEBUG_FIELDS = ["data", "status", "isLoading", "isSuccess", "isError", "error"]; function buildHooks({ api, moduleOptions: { batch, hooks: { useDispatch, useSelector, useStore }, unstable__sideEffectsInRender, createSelector }, serializeQueryArgs, context }) { const usePossiblyImmediateEffect = unstable__sideEffectsInRender ? (cb) => cb() : useEffect3; return { buildQueryHooks, buildInfiniteQueryHooks, buildMutationHook, usePrefetch }; function queryStatePreSelector(currentState, lastResult, queryArgs) { if (lastResult?.endpointName && currentState.isUninitialized) { const { endpointName } = lastResult; const endpointDefinition = context.endpointDefinitions[endpointName]; if (queryArgs !== skipToken && serializeQueryArgs({ queryArgs: lastResult.originalArgs, endpointDefinition, endpointName }) === serializeQueryArgs({ queryArgs, endpointDefinition, endpointName })) lastResult = void 0; } let data = currentState.isSuccess ? currentState.data : lastResult?.data; if (data === void 0) data = currentState.data; const hasData = data !== void 0; const isFetching = currentState.isLoading; const isLoading = (!lastResult || lastResult.isLoading || lastResult.isUninitialized) && !hasData && isFetching; const isSuccess = currentState.isSuccess || hasData && (isFetching && !lastResult?.isError || currentState.isUninitialized); return { ...currentState, data, currentData: currentState.data, isFetching, isLoading, isSuccess }; } function infiniteQueryStatePreSelector(currentState, lastResult, queryArgs) { if (lastResult?.endpointName && currentState.isUninitialized) { const { endpointName } = lastResult; const endpointDefinition = context.endpointDefinitions[endpointName]; if (queryArgs !== skipToken && serializeQueryArgs({ queryArgs: lastResult.originalArgs, endpointDefinition, endpointName }) === serializeQueryArgs({ queryArgs, endpointDefinition, endpointName })) lastResult = void 0; } let data = currentState.isSuccess ? currentState.data : lastResult?.data; if (data === void 0) data = currentState.data; const hasData = data !== void 0; const isFetching = currentState.isLoading; const isLoading = (!lastResult || lastResult.isLoading || lastResult.isUninitialized) && !hasData && isFetching; const isSuccess = currentState.isSuccess || isFetching && hasData; return { ...currentState, data, currentData: currentState.data, isFetching, isLoading, isSuccess }; } function usePrefetch(endpointName, defaultOptions) { const dispatch = useDispatch(); const stableDefaultOptions = useShallowStableValue(defaultOptions); return useCallback((arg, options) => dispatch(api.util.prefetch(endpointName, arg, { ...stableDefaultOptions, ...options })), [endpointName, dispatch, stableDefaultOptions]); } function useQuerySubscriptionCommonImpl(endpointName, arg, { refetchOnReconnect, refetchOnFocus, refetchOnMountOrArgChange, skip = false, pollingInterval = 0, skipPollingIfUnfocused = false, ...rest } = {}) { const { initiate } = api.endpoints[endpointName]; const dispatch = useDispatch(); const subscriptionSelectorsRef = useRef3(void 0); if (!subscriptionSelectorsRef.current) { const returnedValue = dispatch(api.internalActions.internal_getRTKQSubscriptions()); if (process.env.NODE_ENV !== "production") { if (typeof returnedValue !== "object" || typeof returnedValue?.type === "string") { throw new Error(process.env.NODE_ENV === "production" ? _formatProdErrorMessage(37) : `Warning: Middleware for RTK-Query API at reducerPath "${api.reducerPath}" has not been added to the store. You must add the middleware for RTK-Query to function correctly!`); } } subscriptionSelectorsRef.current = returnedValue; } const stableArg = useStableQueryArgs( skip ? skipToken : arg, // Even if the user provided a per-endpoint `serializeQueryArgs` with // a consistent return value, _here_ we want to use the default behavior // so we can tell if _anything_ actually changed. Otherwise, we can end up // with a case where the query args did change but the serialization doesn't, // and then we never try to initiate a refetch. defaultSerializeQueryArgs, context.endpointDefinitions[endpointName], endpointName ); const stableSubscriptionOptions = useShallowStableValue({ refetchOnReconnect, refetchOnFocus, pollingInterval, skipPollingIfUnfocused }); const initialPageParam = rest.initialPageParam; const stableInitialPageParam = useShallowStableValue(initialPageParam); const promiseRef = useRef3(void 0); let { queryCacheKey, requestId } = promiseRef.current || {}; let currentRenderHasSubscription = false; if (queryCacheKey && requestId) { currentRenderHasSubscription = subscriptionSelectorsRef.current.isRequestSubscribed(queryCacheKey, requestId); } const subscriptionRemoved = !currentRenderHasSubscription && promiseRef.current !== void 0; usePossiblyImmediateEffect(() => { if (subscriptionRemoved) { promiseRef.current = void 0; } }, [subscriptionRemoved]); usePossiblyImmediateEffect(() => { const lastPromise = promiseRef.current; if (typeof process !== "undefined" && process.env.NODE_ENV === "removeMeOnCompilation") { console.log(subscriptionRemoved); } if (stableArg === skipToken) { lastPromise?.unsubscribe(); promiseRef.current = void 0; return; } const lastSubscriptionOptions = promiseRef.current?.subscriptionOptions; if (!lastPromise || lastPromise.arg !== stableArg) { lastPromise?.unsubscribe(); const promise = dispatch(initiate(stableArg, { subscriptionOptions: stableSubscriptionOptions, forceRefetch: refetchOnMountOrArgChange, ...isInfiniteQueryDefinition(context.endpointDefinitions[endpointName]) ? { initialPageParam: stableInitialPageParam } : {} })); promiseRef.current = promise; } else if (stableSubscriptionOptions !== lastSubscriptionOptions) { lastPromise.updateSubscriptionOptions(stableSubscriptionOptions); } }, [dispatch, initiate, refetchOnMountOrArgChange, stableArg, stableSubscriptionOptions, subscriptionRemoved, stableInitialPageParam, endpointName]); return [promiseRef, dispatch, initiate, stableSubscriptionOptions]; } function buildUseQueryState(endpointName, preSelector) { const useQueryState = (arg, { skip = false, selectFromResult } = {}) => { const { select } = api.endpoints[endpointName]; const stableArg = useStableQueryArgs(skip ? skipToken : arg, serializeQueryArgs, context.endpointDefinitions[endpointName], endpointName); const lastValue = useRef3(void 0); const selectDefaultResult = useMemo2(() => ( // Normally ts-ignores are bad and should be avoided, but we're // already casting this selector to be `Selector<any>` anyway, // so the inconsistencies don't matter here // @ts-ignore createSelector([ // @ts-ignore select(stableArg), (_, lastResult) => lastResult, (_) => stableArg ], preSelector, { memoizeOptions: { resultEqualityCheck: shallowEqual2 } }) ), [select, stableArg]); const querySelector = useMemo2(() => selectFromResult ? createSelector([selectDefaultResult], selectFromResult, { devModeChecks: { identityFunctionCheck: "never" } }) : selectDefaultResult, [selectDefaultResult, selectFromResult]); const currentState = useSelector((state) => querySelector(state, lastValue.current), shallowEqual2); const store = useStore(); const newLastValue = selectDefaultResult(store.getState(), lastValue.current); useIsomorphicLayoutEffect(() => { lastValue.current = newLastValue; }, [newLastValue]); return currentState; }; return useQueryState; } function usePromiseRefUnsubscribeOnUnmount(promiseRef) { useEffect3(() => { return () => { promiseRef.current?.unsubscribe?.(); promiseRef.current = void 0; }; }, [promiseRef]); } function refetchOrErrorIfUnmounted(promiseRef) { if (!promiseRef.current) throw new Error(process.env.NODE_ENV === "production" ? _formatProdErrorMessage2(38) : "Cannot refetch a query that has not been started yet."); return promiseRef.current.refetch(); } function buildQueryHooks(endpointName) { const useQuerySubscription = (arg, options = {}) => { const [promiseRef] = useQuerySubscriptionCommonImpl(endpointName, arg, options); usePromiseRefUnsubscribeOnUnmount(promiseRef); return useMemo2(() => ({ /** * A method to manually refetch data for the query */ refetch: () => refetchOrErrorIfUnmounted(promiseRef) }), [promiseRef]); }; const useLazyQuerySubscription = ({ refetchOnReconnect, refetchOnFocus, pollingInterval = 0, skipPollingIfUnfocused = false } = {}) => { const { initiate } = api.endpoints[endpointName]; const dispatch = useDispatch(); const [arg, setArg] = useState(UNINITIALIZED_VALUE); const promiseRef = useRef3(void 0); const stableSubscriptionOptions = useShallowStableValue({ refetchOnReconnect, refetchOnFocus, pollingInterval, skipPollingIfUnfocused }); usePossiblyImmediateEffect(() => { const lastSubscriptionOptions = promiseRef.current?.subscriptionOptions; if (stableSubscriptionOptions !== lastSubscriptionOptions) { promiseRef.current?.updateSubscriptionOptions(stableSubscriptionOptions); } }, [stableSubscriptionOptions]); const subscriptionOptionsRef = useRef3(stableSubscriptionOptions); usePossiblyImmediateEffect(() => { subscriptionOptionsRef.current = stableSubscriptionOptions; }, [stableSubscriptionOptions]); const trigger = useCallback(function(arg2, preferCacheValue = false) { let promise; batch(() => { promiseRef.current?.unsubscribe(); promiseRef.current = promise = dispatch(initiate(arg2, { subscriptionOptions: subscriptionOptionsRef.current, forceRefetch: !preferCacheValue })); setArg(arg2); }); return promise; }, [dispatch, initiate]); const reset = useCallback(() => { if (promiseRef.current?.queryCacheKey) { dispatch(api.internalActions.removeQueryResult({ queryCacheKey: promiseRef.current?.queryCacheKey })); } }, [dispatch]); useEffect3(() => { return () => { promiseRef?.current?.unsubscribe(); }; }, []); useEffect3(() => { if (arg !== UNINITIALIZED_VALUE && !promiseRef.current) { trigger(arg, true); } }, [arg, trigger]); return useMemo2(() => [trigger, arg, { reset }], [trigger, arg, reset]); }; const useQueryState = buildUseQueryState(endpointName, queryStatePreSelector); return { useQueryState, useQuerySubscription, useLazyQuerySubscription, useLazyQuery(options) { const [trigger, arg, { reset }] = useLazyQuerySubscription(options); const queryStateResults = useQueryState(arg, { ...options, skip: arg === UNINITIALIZED_VALUE }); const info = useMemo2(() => ({ lastArg: arg }), [arg]); return useMemo2(() => [trigger, { ...queryStateResults, reset }, info], [trigger, queryStateResults, reset, info]); }, useQuery(arg, options) { const querySubscriptionResults = useQuerySubscription(arg, options); const queryStateResults = useQueryState(arg, { selectFromResult: arg === skipToken || options?.skip ? void 0 : noPendingQueryStateSelector, ...options }); const debugValue = pick(queryStateResults, ...COMMON_HOOK_DEBUG_FIELDS); useDebugValue(debugValue); return useMemo2(() => ({ ...queryStateResults, ...querySubscriptionResults }), [queryStateResults, querySubscriptionResults]); } }; } function buildInfiniteQueryHooks(endpointName) { const useInfiniteQuerySubscription = (arg, options = {}) => { const [promiseRef, dispatch, initiate, stableSubscriptionOptions] = useQuerySubscriptionCommonImpl(endpointName, arg, options); const subscriptionOptionsRef = useRef3(stableSubscriptionOptions); usePossiblyImmediateEffect(() => { subscriptionOptionsRef.current = stableSubscriptionOptions; }, [stableSubscriptionOptions]); const trigger = useCallback(function(arg2, direction) { let promise; batch(() => { promiseRef.current?.unsubscribe(); promiseRef.current = promise = dispatch(initiate(arg2, { subscriptionOptions: subscriptionOptionsRef.current, direction })); }); return promise; }, [promiseRef, dispatch, initiate]); usePromiseRefUnsubscribeOnUnmount(promiseRef); const stableArg = useStableQueryArgs( options.skip ? skipToken : arg, // Even if the user provided a per-endpoint `serializeQueryArgs` with // a consistent return value, _here_ we want to use the default behavior // so we can tell if _anything_ actually changed. Otherwise, we can end up // with a case where the query args did change but the serialization doesn't, // and then we never try to initiate a refetch. defaultSerializeQueryArgs, context.endpointDefinitions[endpointName], endpointName ); const refetch = useCallback(() => refetchOrErrorIfUnmounted(promiseRef), [promiseRef]); return useMemo2(() => { const fetchNextPage = () => { return trigger(stableArg, "forward"); }; const fetchPreviousPage = () => { return trigger(stableArg, "backward"); }; return { trigger, /** * A method to manually refetch data for the query */ refetch, fetchNextPage, fetchPreviousPage }; }, [refetch, trigger, stableArg]); }; const useInfiniteQueryState = buildUseQueryState(endpointName, infiniteQueryStatePreSelector); return { useInfiniteQueryState, useInfiniteQuerySubscription, useInfiniteQuery(arg, options) { const { refetch, fetchNextPage, fetchPreviousPage } = useInfiniteQuerySubscription(arg, options); const queryStateResults = useInfiniteQueryState(arg, { selectFromResult: arg === skipToken || options?.skip ? void 0 : noPendingQueryStateSelector, ...options }); const debugValue = pick(queryStateResults, ...COMMON_HOOK_DEBUG_FIELDS, "hasNextPage", "hasPreviousPage"); useDebugValue(debugValue); return useMemo2(() => ({ ...queryStateResults, fetchNextPage, fetchPreviousPage, refetch }), [queryStateResults, fetchNextPage, fetchPreviousPage, refetch]); } }; } function buildMutationHook(name) { return ({ selectFromResult, fixedCacheKey } = {}) => { const { select, initiate } = api.endpoints[name]; const dispatch = useDispatch(); const [promise, setPromise] = useState(); useEffect3(() => () => { if (!promise?.arg.fixedCacheKey) { promise?.reset(); } }, [promise]); const triggerMutation = useCallback(function(arg) { const promise2 = dispatch(initiate(arg, { fixedCacheKey })); setPromise(promise2); return promise2; }, [dispatch, initiate, fixedCacheKey]); const { requestId } = promise || {}; const selectDefaultResult = useMemo2(() => select({ fixedCacheKey, requestId: promise?.requestId }), [fixedCacheKey, promise, select]); const mutationSelector = useMemo2(() => selectFromResult ? createSelector([selectDefaultResult], selectFromResult) : selectDefaultResult, [selectFromResult, selectDefaultResult]); const currentState = useSelector(mutationSelector, shallowEqual2); const originalArgs = fixedCacheKey == null ? promise?.arg.originalArgs : void 0; const reset = useCallback(() => { batch(() => { if (promise) { setPromise(void 0); } if (fixedCacheKey) { dispatch(api.internalActions.removeMutationResult({ requestId, fixedCacheKey })); } }); }, [dispatch, fixedCacheKey, promise, requestId]); const debugValue = pick(currentState, ...COMMON_HOOK_DEBUG_FIELDS, "endpointName"); useDebugValue(debugValue); const finalState = useMemo2(() => ({ ...currentState, originalArgs, reset }), [currentState, originalArgs, reset]); return useMemo2(() => [triggerMutation, finalState], [triggerMutation, finalState]); }; } } // src/query/react/module.ts var reactHooksModuleName = /* @__PURE__ */ Symbol(); var reactHooksModule = ({ batch = rrBatch, hooks = { useDispatch: rrUseDispatch, useSelector: rrUseSelector, useStore: rrUseStore }, createSelector = _createSelector, unstable__sideEffectsInRender = false, ...rest } = {}) => { if (process.env.NODE_ENV !== "production") { const hookNames = ["useDispatch", "useSelector", "useStore"]; let warned = false; for (const hookName of hookNames) { if (countObjectKeys(rest) > 0) { if (rest[hookName]) { if (!warned) { console.warn("As of RTK 2.0, the hooks now need to be specified as one object, provided under a `hooks` key:\n`reactHooksModule({ hooks: { useDispatch, useSelector, useStore } })`"); warned = true; } } hooks[hookName] = rest[hookName]; } if (typeof hooks[hookName] !== "function") { throw new Error(process.env.NODE_ENV === "production" ? _formatProdErrorMessage3(36) : `When using custom hooks for context, all ${hookNames.length} hooks need to be provided: ${hookNames.join(", ")}. Hook ${hookName} was either not provided or not a function.`); } } } return { name: reactHooksModuleName, init(api, { serializeQueryArgs }, context) { const anyApi = api; const { buildQueryHooks, buildInfiniteQueryHooks, buildMutationHook, usePrefetch } = buildHooks({ api, moduleOptions: { batch, hooks, unstable__sideEffectsInRender, createSelector }, serializeQueryArgs, context }); safeAssign(anyApi, { usePrefetch }); safeAssign(context, { batch }); return { injectEndpoint(endpointName, definition) { if (isQueryDefinition(definition)) { const { useQuery, useLazyQuery, useLazyQuerySubscription, useQueryState, useQuerySubscription } = buildQueryHooks(endpointName); safeAssign(anyApi.endpoints[endpointName], { useQuery, useLazyQuery, useLazyQuerySubscription, useQueryState, useQuerySubscription }); api[`use${capitalize(endpointName)}Query`] = useQuery; api[`useLazy${capitalize(endpointName)}Query`] = useLazyQuery; } if (isMutationDefinition(definition)) { const useMutation = buildMutationHook(endpointName); safeAssign(anyApi.endpoints[endpointName], { useMutation }); api[`use${capitalize(endpointName)}Mutation`] = useMutation; } else if (isInfiniteQueryDefinition(definition)) { const { useInfiniteQuery, useInfiniteQuerySubscription, useInfiniteQueryState } = buildInfiniteQueryHooks(endpointName); safeAssign(anyApi.endpoints[endpointName], { useInfiniteQuery, useInfiniteQuerySubscription, useInfiniteQueryState }); api[`use${capitalize(endpointName)}InfiniteQuery`] = useInfiniteQuery; } } }; } }; }; // src/query/react/index.ts export * from "@reduxjs/toolkit/query"; // src/query/react/ApiProvider.tsx import { configureStore, formatProdErrorMessage as _formatProdErrorMessage4 } from "@reduxjs/toolkit"; import { useContext } from "react"; import { useEffect as useEffect4 } from "react"; import * as React from "react"; import { Provider, ReactReduxContext } from "react-redux"; import { setupListeners } from "@reduxjs/toolkit/query"; function ApiProvider(props) { const context = props.context || ReactReduxContext; const existingContext = useContext(context); if (existingContext) { throw new Error(process.env.NODE_ENV === "production" ? _formatProdErrorMessage4(35) : "Existing Redux context detected. If you already have a store set up, please use the traditional Redux setup."); } const [store] = React.useState(() => configureStore({ reducer: { [props.api.reducerPath]: props.api.reducer }, middleware: (gDM) => gDM().concat(props.api.middleware) })); useEffect4(() => props.setupListeners === false ? void 0 : setupListeners(store.dispatch, props.setupListeners), [props.setupListeners, store.dispatch]); return /* @__PURE__ */ React.createElement(Provider, { store, context }, props.children); } // src/query/react/index.ts var createApi = /* @__PURE__ */ buildCreateApi(coreModule(), reactHooksModule()); export { ApiProvider, UNINITIALIZED_VALUE, createApi, reactHooksModule, reactHooksModuleName }; //# sourceMappingURL=rtk-query-react.modern.mjs.map