{"version":3,"file":"useMutation-Bricz0Fg.js","sources":["../../../node_modules/.pnpm/@tanstack+query-core@5.66.0/node_modules/@tanstack/query-core/build/modern/mutationObserver.js","../../../node_modules/.pnpm/@tanstack+vue-query@5.66.0_vue@3.5.13_typescript@5.7.3_/node_modules/@tanstack/vue-query/build/modern/useMutation.js"],"sourcesContent":["// src/mutationObserver.ts\nimport { getDefaultState } from \"./mutation.js\";\nimport { notifyManager } from \"./notifyManager.js\";\nimport { Subscribable } from \"./subscribable.js\";\nimport { hashKey, shallowEqualObjects } from \"./utils.js\";\nvar MutationObserver = class extends Subscribable {\n #client;\n #currentResult = void 0;\n #currentMutation;\n #mutateOptions;\n constructor(client, options) {\n super();\n this.#client = client;\n this.setOptions(options);\n this.bindMethods();\n this.#updateResult();\n }\n bindMethods() {\n this.mutate = this.mutate.bind(this);\n this.reset = this.reset.bind(this);\n }\n setOptions(options) {\n const prevOptions = this.options;\n this.options = this.#client.defaultMutationOptions(options);\n if (!shallowEqualObjects(this.options, prevOptions)) {\n this.#client.getMutationCache().notify({\n type: \"observerOptionsUpdated\",\n mutation: this.#currentMutation,\n observer: this\n });\n }\n if (prevOptions?.mutationKey && this.options.mutationKey && hashKey(prevOptions.mutationKey) !== hashKey(this.options.mutationKey)) {\n this.reset();\n } else if (this.#currentMutation?.state.status === \"pending\") {\n this.#currentMutation.setOptions(this.options);\n }\n }\n onUnsubscribe() {\n if (!this.hasListeners()) {\n this.#currentMutation?.removeObserver(this);\n }\n }\n onMutationUpdate(action) {\n this.#updateResult();\n this.#notify(action);\n }\n getCurrentResult() {\n return this.#currentResult;\n }\n reset() {\n this.#currentMutation?.removeObserver(this);\n this.#currentMutation = void 0;\n this.#updateResult();\n this.#notify();\n }\n mutate(variables, options) {\n this.#mutateOptions = options;\n this.#currentMutation?.removeObserver(this);\n this.#currentMutation = this.#client.getMutationCache().build(this.#client, this.options);\n this.#currentMutation.addObserver(this);\n return this.#currentMutation.execute(variables);\n }\n #updateResult() {\n const state = this.#currentMutation?.state ?? getDefaultState();\n this.#currentResult = {\n ...state,\n isPending: state.status === \"pending\",\n isSuccess: state.status === \"success\",\n isError: state.status === \"error\",\n isIdle: state.status === \"idle\",\n mutate: this.mutate,\n reset: this.reset\n };\n }\n #notify(action) {\n notifyManager.batch(() => {\n if (this.#mutateOptions && this.hasListeners()) {\n const variables = this.#currentResult.variables;\n const context = this.#currentResult.context;\n if (action?.type === \"success\") {\n this.#mutateOptions.onSuccess?.(action.data, variables, context);\n this.#mutateOptions.onSettled?.(action.data, null, variables, context);\n } else if (action?.type === \"error\") {\n this.#mutateOptions.onError?.(action.error, variables, context);\n this.#mutateOptions.onSettled?.(\n void 0,\n action.error,\n variables,\n context\n );\n }\n }\n this.listeners.forEach((listener) => {\n listener(this.#currentResult);\n });\n });\n }\n};\nexport {\n MutationObserver\n};\n//# sourceMappingURL=mutationObserver.js.map","// src/useMutation.ts\nimport {\n computed,\n getCurrentScope,\n onScopeDispose,\n readonly,\n shallowReactive,\n shallowReadonly,\n toRefs,\n watch\n} from \"vue-demi\";\nimport { MutationObserver } from \"@tanstack/query-core\";\nimport { cloneDeepUnref, shouldThrowError, updateState } from \"./utils.js\";\nimport { useQueryClient } from \"./useQueryClient.js\";\nfunction useMutation(mutationOptions, 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 options = computed(() => {\n return client.defaultMutationOptions(cloneDeepUnref(mutationOptions));\n });\n const observer = new MutationObserver(client, options.value);\n const state = shallowReactive(observer.getCurrentResult());\n const unsubscribe = observer.subscribe((result) => {\n updateState(state, result);\n });\n const mutate = (variables, mutateOptions) => {\n observer.mutate(variables, mutateOptions).catch(() => {\n });\n };\n watch(options, () => {\n observer.setOptions(options.value);\n });\n onScopeDispose(() => {\n unsubscribe();\n });\n const readonlyState = process.env.NODE_ENV === \"production\" ? state : options.value.shallow ? shallowReadonly(state) : readonly(state);\n const resultRefs = toRefs(readonlyState);\n watch(\n () => state.error,\n (error) => {\n if (error && shouldThrowError(options.value.throwOnError, [error])) {\n throw error;\n }\n }\n );\n return {\n ...resultRefs,\n mutate,\n mutateAsync: state.mutate,\n reset: state.reset\n };\n}\nexport {\n useMutation\n};\n//# sourceMappingURL=useMutation.js.map"],"names":["MutationObserver","Subscribable","#client","#currentResult","#currentMutation","#mutateOptions","client","options","#updateResult","prevOptions","shallowEqualObjects","hashKey","action","#notify","variables","state","getDefaultState","notifyManager","context","listener","useMutation","mutationOptions","queryClient","useQueryClient","computed","cloneDeepUnref","observer","shallowReactive","unsubscribe","result","updateState","mutate","mutateOptions","watch","onScopeDispose","resultRefs","toRefs","error","shouldThrowError"],"mappings":"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","x_google_ignoreList":[0,1]}