UNPKG

@tanstack/vue-query

Version:

Hooks for managing, caching and syncing asynchronous and remote data in Vue

55 lines (54 loc) 2.24 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/usePrefetchInfiniteQuery.ts var usePrefetchInfiniteQuery_exports = {}; __export(usePrefetchInfiniteQuery_exports, { usePrefetchInfiniteQuery: () => usePrefetchInfiniteQuery }); module.exports = __toCommonJS(usePrefetchInfiniteQuery_exports); var import_vue_demi = require("vue-demi"); var import_useQueryClient = require("./useQueryClient.cjs"); var import_utils = require("./utils.cjs"); function isGetter(value) { return typeof value === "function"; } function usePrefetchInfiniteQuery(options, queryClient) { if (process.env.NODE_ENV === "development") { if (!(0, import_vue_demi.getCurrentScope)()) { console.warn( 'vue-query composable like "useQuery()" should only be used inside a "setup()" function or a running effect scope. They might otherwise lead to memory leaks.' ); } } const client = queryClient || (0, import_useQueryClient.useQueryClient)(); (0, import_vue_demi.watchEffect)(() => { const resolvedOptions = isGetter(options) ? options() : (0, import_vue_demi.unref)(options); const clonedOptions = (0, import_utils.cloneDeepUnref)(resolvedOptions); if (!client.getQueryState(clonedOptions.queryKey)) { void client.prefetchInfiniteQuery( clonedOptions ); } }); } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { usePrefetchInfiniteQuery }); //# sourceMappingURL=usePrefetchInfiniteQuery.cjs.map