{"version":3,"file":"useIsFetching-Cat55mxm.js","sources":["../../../node_modules/.pnpm/@tanstack+vue-query@5.66.0_vue@3.5.13_typescript@5.7.3_/node_modules/@tanstack/vue-query/build/modern/useIsFetching.js"],"sourcesContent":["// src/useIsFetching.ts\nimport { getCurrentScope, onScopeDispose, ref, watchEffect } from \"vue-demi\";\nimport { useQueryClient } from \"./useQueryClient.js\";\nfunction useIsFetching(fetchingFilters = {}, queryClient) {\n if (process.env.NODE_ENV === \"development\") {\n if (!getCurrentScope()) {\n console.warn(\n '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.'\n );\n }\n }\n const client = queryClient || useQueryClient();\n const isFetching = ref();\n const listener = () => {\n isFetching.value = client.isFetching(fetchingFilters);\n };\n const unsubscribe = client.getQueryCache().subscribe(listener);\n watchEffect(listener);\n onScopeDispose(() => {\n unsubscribe();\n });\n return isFetching;\n}\nexport {\n useIsFetching\n};\n//# sourceMappingURL=useIsFetching.js.map"],"names":["useIsFetching","fetchingFilters","queryClient","client","useQueryClient","isFetching","ref","listener","unsubscribe","watchEffect","onScopeDispose"],"mappings":"oGAGA,SAASA,EAAcC,EAAkB,CAAC,EAAGC,EAAa,CAQlD,MAAAC,EAAwBC,EAAe,EACvCC,EAAaC,EAAI,EACjBC,EAAW,IAAM,CACVF,EAAA,MAAQF,EAAO,WAAWF,CAAe,CACtD,EACMO,EAAcL,EAAO,cAAc,EAAE,UAAUI,CAAQ,EAC7D,OAAAE,EAAYF,CAAQ,EACpBG,EAAe,IAAM,CACPF,EAAA,CAAA,CACb,EACMH,CACT","x_google_ignoreList":[0]}