{"version":3,"file":"pinia-9cbf8c88.js","sources":["../../node_modules/pinia/node_modules/vue-demi/lib/index.mjs","../../node_modules/pinia/dist/pinia.mjs"],"sourcesContent":["import Vue from 'vue'\nimport { getCurrentInstance } from 'vue'\n\nvar isVue2 = true\nvar isVue3 = false\nvar Vue2 = Vue\nvar warn = Vue.util.warn\n\nfunction install() {}\n\n// createApp polyfill\nexport function createApp(rootComponent, rootProps) {\n var vm\n var provide = {}\n var app = {\n config: Vue.config,\n use: Vue.use.bind(Vue),\n mixin: Vue.mixin.bind(Vue),\n component: Vue.component.bind(Vue),\n provide: function (key, value) {\n provide[key] = value\n return this\n },\n directive: function (name, dir) {\n if (dir) {\n Vue.directive(name, dir)\n return app\n } else {\n return Vue.directive(name)\n }\n },\n mount: function (el, hydrating) {\n if (!vm) {\n vm = new Vue(Object.assign({ propsData: rootProps }, rootComponent, { provide: Object.assign(provide, rootComponent.provide) }))\n vm.$mount(el, hydrating)\n return vm\n } else {\n return vm\n }\n },\n unmount: function () {\n if (vm) {\n vm.$destroy()\n vm = undefined\n }\n },\n }\n return app\n}\n\nexport {\n Vue,\n Vue2,\n isVue2,\n isVue3,\n install,\n warn\n}\n\n// Vue 3 components mock\nfunction createMockComponent(name) {\n return {\n setup() {\n throw new Error('[vue-demi] ' + name + ' is not supported in Vue 2. It\\'s provided to avoid compiler errors.')\n }\n }\n}\nexport var Fragment = /*#__PURE__*/ createMockComponent('Fragment')\nexport var Transition = /*#__PURE__*/ createMockComponent('Transition')\nexport var TransitionGroup = /*#__PURE__*/ createMockComponent('TransitionGroup')\nexport var Teleport = /*#__PURE__*/ createMockComponent('Teleport')\nexport var Suspense = /*#__PURE__*/ createMockComponent('Suspense')\nexport var KeepAlive = /*#__PURE__*/ createMockComponent('KeepAlive')\n\nexport * from 'vue'\n\n// Not implemented https://github.com/vuejs/core/pull/8111, falls back to getCurrentInstance()\nexport function hasInjectionContext() {\n return !!getCurrentInstance()\n}\n","/*!\n * pinia v2.1.3\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n return (o &&\n typeof o === 'object' &&\n Object.prototype.toString.call(o) === '[object Object]' &&\n typeof o.toJSON !== 'function');\n}\n// type DeepReadonly = { readonly [P in keyof T]: DeepReadonly }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n /**\n * Direct mutation of the state:\n *\n * - `store.name = 'new name'`\n * - `store.$state.name = 'new name'`\n * - `store.list.push('new item')`\n */\n MutationType[\"direct\"] = \"direct\";\n /**\n * Mutated the state with `$patch` and an object\n *\n * - `store.$patch({ name: 'newName' })`\n */\n MutationType[\"patchObject\"] = \"patch object\";\n /**\n * Mutated the state with `$patch` and a function\n *\n * - `store.$patch(state => state.name = 'newName')`\n */\n MutationType[\"patchFunction\"] = \"patch function\";\n // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n ? window\n : typeof self === 'object' && self.self === self\n ? self\n : typeof global === 'object' && global.global === global\n ? global\n : typeof globalThis === 'object'\n ? globalThis\n : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n // prepend BOM for UTF-8 XML and text/* types (including HTML)\n // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n if (autoBom &&\n /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n }\n return blob;\n}\nfunction download(url, name, opts) {\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url);\n xhr.responseType = 'blob';\n xhr.onload = function () {\n saveAs(xhr.response, name, opts);\n };\n xhr.onerror = function () {\n console.error('could not download file');\n };\n xhr.send();\n}\nfunction corsEnabled(url) {\n const xhr = new XMLHttpRequest();\n // use sync to avoid popup blocker\n xhr.open('HEAD', url, false);\n try {\n xhr.send();\n }\n catch (e) { }\n return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n try {\n node.dispatchEvent(new MouseEvent('click'));\n }\n catch (e) {\n const evt = document.createEvent('MouseEvents');\n evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n node.dispatchEvent(evt);\n }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n /AppleWebKit/.test(_navigator.userAgent) &&\n !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n ? () => { } // noop\n : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n typeof HTMLAnchorElement !== 'undefined' &&\n 'download' in HTMLAnchorElement.prototype &&\n !isMacOSWebView\n ? downloadSaveAs\n : // Use msSaveOrOpenBlob as a second approach\n 'msSaveOrOpenBlob' in _navigator\n ? msSaveAs\n : // Fallback to using FileReader and a popup\n fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n const a = document.createElement('a');\n a.download = name;\n a.rel = 'noopener'; // tabnabbing\n // TODO: detect chrome extensions & packaged apps\n // a.target = '_blank'\n if (typeof blob === 'string') {\n // Support regular links\n a.href = blob;\n if (a.origin !== location.origin) {\n if (corsEnabled(a.href)) {\n download(blob, name, opts);\n }\n else {\n a.target = '_blank';\n click(a);\n }\n }\n else {\n click(a);\n }\n }\n else {\n // Support blobs\n a.href = URL.createObjectURL(blob);\n setTimeout(function () {\n URL.revokeObjectURL(a.href);\n }, 4e4); // 40s\n setTimeout(function () {\n click(a);\n }, 0);\n }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n if (typeof blob === 'string') {\n if (corsEnabled(blob)) {\n download(blob, name, opts);\n }\n else {\n const a = document.createElement('a');\n a.href = blob;\n a.target = '_blank';\n setTimeout(function () {\n click(a);\n });\n }\n }\n else {\n // @ts-ignore: works on windows\n navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n // Open a popup immediately do go around popup blocker\n // Mostly only available on user interaction and the fileReader is async so...\n popup = popup || open('', '_blank');\n if (popup) {\n popup.document.title = popup.document.body.innerText = 'downloading...';\n }\n if (typeof blob === 'string')\n return download(blob, name, opts);\n const force = blob.type === 'application/octet-stream';\n const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n typeof FileReader !== 'undefined') {\n // Safari doesn't allow downloading of blob URLs\n const reader = new FileReader();\n reader.onloadend = function () {\n let url = reader.result;\n if (typeof url !== 'string') {\n popup = null;\n throw new Error('Wrong reader.result type');\n }\n url = isChromeIOS\n ? url\n : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n if (popup) {\n popup.location.href = url;\n }\n else {\n location.assign(url);\n }\n popup = null; // reverse-tabnabbing #460\n };\n reader.readAsDataURL(blob);\n }\n else {\n const url = URL.createObjectURL(blob);\n if (popup)\n popup.location.assign(url);\n else\n location.href = url;\n popup = null; // reverse-tabnabbing #460\n setTimeout(function () {\n URL.revokeObjectURL(url);\n }, 4e4); // 40s\n }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n const piniaMessage = '๐Ÿ ' + message;\n if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n }\n else if (type === 'error') {\n console.error(piniaMessage);\n }\n else if (type === 'warn') {\n console.warn(piniaMessage);\n }\n else {\n console.log(piniaMessage);\n }\n}\nfunction isPinia(o) {\n return '_a' in o && 'install' in o;\n}\n\nfunction checkClipboardAccess() {\n if (!('clipboard' in navigator)) {\n toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n return true;\n }\n}\nfunction checkNotFocusedError(error) {\n if (error instanceof Error &&\n error.message.toLowerCase().includes('document is not focused')) {\n toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n return true;\n }\n return false;\n}\nasync function actionGlobalCopyState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n toastMessage('Global state copied to clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalPasteState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n pinia.state.value = JSON.parse(await navigator.clipboard.readText());\n toastMessage('Global state pasted from clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalSaveState(pinia) {\n try {\n saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n type: 'text/plain;charset=utf-8',\n }), 'pinia-state.json');\n }\n catch (error) {\n toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nlet fileInput;\nfunction getFileOpener() {\n if (!fileInput) {\n fileInput = document.createElement('input');\n fileInput.type = 'file';\n fileInput.accept = '.json';\n }\n function openFile() {\n return new Promise((resolve, reject) => {\n fileInput.onchange = async () => {\n const files = fileInput.files;\n if (!files)\n return resolve(null);\n const file = files.item(0);\n if (!file)\n return resolve(null);\n return resolve({ text: await file.text(), file });\n };\n // @ts-ignore: TODO: changed from 4.3 to 4.4\n fileInput.oncancel = () => resolve(null);\n fileInput.onerror = reject;\n fileInput.click();\n });\n }\n return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n try {\n const open = await getFileOpener();\n const result = await open();\n if (!result)\n return;\n const { text, file } = result;\n pinia.state.value = JSON.parse(text);\n toastMessage(`Global state imported from \"${file.name}\".`);\n }\n catch (error) {\n toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\n\nfunction formatDisplay(display) {\n return {\n _custom: {\n display,\n },\n };\n}\nconst PINIA_ROOT_LABEL = '๐Ÿ Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n return isPinia(store)\n ? {\n id: PINIA_ROOT_ID,\n label: PINIA_ROOT_LABEL,\n }\n : {\n id: store.$id,\n label: store.$id,\n };\n}\nfunction formatStoreForInspectorState(store) {\n if (isPinia(store)) {\n const storeNames = Array.from(store._s.keys());\n const storeMap = store._s;\n const state = {\n state: storeNames.map((storeId) => ({\n editable: true,\n key: storeId,\n value: store.state.value[storeId],\n })),\n getters: storeNames\n .filter((id) => storeMap.get(id)._getters)\n .map((id) => {\n const store = storeMap.get(id);\n return {\n editable: false,\n key: id,\n value: store._getters.reduce((getters, key) => {\n getters[key] = store[key];\n return getters;\n }, {}),\n };\n }),\n };\n return state;\n }\n const state = {\n state: Object.keys(store.$state).map((key) => ({\n editable: true,\n key,\n value: store.$state[key],\n })),\n };\n // avoid adding empty getters\n if (store._getters && store._getters.length) {\n state.getters = store._getters.map((getterName) => ({\n editable: false,\n key: getterName,\n value: store[getterName],\n }));\n }\n if (store._customProperties.size) {\n state.customProperties = Array.from(store._customProperties).map((key) => ({\n editable: true,\n key,\n value: store[key],\n }));\n }\n return state;\n}\nfunction formatEventData(events) {\n if (!events)\n return {};\n if (Array.isArray(events)) {\n // TODO: handle add and delete for arrays and objects\n return events.reduce((data, event) => {\n data.keys.push(event.key);\n data.operations.push(event.type);\n data.oldValue[event.key] = event.oldValue;\n data.newValue[event.key] = event.newValue;\n return data;\n }, {\n oldValue: {},\n keys: [],\n operations: [],\n newValue: {},\n });\n }\n else {\n return {\n operation: formatDisplay(events.type),\n key: formatDisplay(events.key),\n oldValue: events.oldValue,\n newValue: events.newValue,\n };\n }\n}\nfunction formatMutationType(type) {\n switch (type) {\n case MutationType.direct:\n return 'mutation';\n case MutationType.patchFunction:\n return '$patch';\n case MutationType.patchObject:\n return '$patch';\n default:\n return 'unknown';\n }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '๐Ÿ ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia ๐Ÿ',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n }, (api) => {\n if (typeof api.now !== 'function') {\n toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n }\n api.addTimelineLayer({\n id: MUTATIONS_LAYER_ID,\n label: `Pinia ๐Ÿ`,\n color: 0xe5df88,\n });\n api.addInspector({\n id: INSPECTOR_ID,\n label: 'Pinia ๐Ÿ',\n icon: 'storage',\n treeFilterPlaceholder: 'Search stores',\n actions: [\n {\n icon: 'content_copy',\n action: () => {\n actionGlobalCopyState(pinia);\n },\n tooltip: 'Serialize and copy the state',\n },\n {\n icon: 'content_paste',\n action: async () => {\n await actionGlobalPasteState(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Replace the state with the content of your clipboard',\n },\n {\n icon: 'save',\n action: () => {\n actionGlobalSaveState(pinia);\n },\n tooltip: 'Save the state as a JSON file',\n },\n {\n icon: 'folder_open',\n action: async () => {\n await actionGlobalOpenStateFile(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Import the state from a JSON file',\n },\n ],\n nodeActions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state (with \"$reset\")',\n action: (nodeId) => {\n const store = pinia._s.get(nodeId);\n if (!store) {\n toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n }\n else if (typeof store.$reset !== 'function') {\n toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n }\n else {\n store.$reset();\n toastMessage(`Store \"${nodeId}\" reset.`);\n }\n },\n },\n ],\n });\n api.on.inspectComponent((payload, ctx) => {\n const proxy = (payload.componentInstance &&\n payload.componentInstance.proxy);\n if (proxy && proxy._pStores) {\n const piniaStores = payload.componentInstance.proxy._pStores;\n Object.values(piniaStores).forEach((store) => {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'state',\n editable: true,\n value: store._isOptionsAPI\n ? {\n _custom: {\n value: toRaw(store.$state),\n actions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state of this store',\n action: () => store.$reset(),\n },\n ],\n },\n }\n : // NOTE: workaround to unwrap transferred refs\n Object.keys(store.$state).reduce((state, key) => {\n state[key] = store.$state[key];\n return state;\n }, {}),\n });\n if (store._getters && store._getters.length) {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'getters',\n editable: false,\n value: store._getters.reduce((getters, key) => {\n try {\n getters[key] = store[key];\n }\n catch (error) {\n // @ts-expect-error: we just want to show it in devtools\n getters[key] = error;\n }\n return getters;\n }, {}),\n });\n }\n });\n }\n });\n api.on.getInspectorTree((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n let stores = [pinia];\n stores = stores.concat(Array.from(pinia._s.values()));\n payload.rootNodes = (payload.filter\n ? stores.filter((store) => '$id' in store\n ? store.$id\n .toLowerCase()\n .includes(payload.filter.toLowerCase())\n : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n : stores).map(formatStoreForInspectorTree);\n }\n });\n api.on.getInspectorState((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n // this could be the selected store restored for a different project\n // so it's better not to say anything here\n return;\n }\n if (inspectedStore) {\n payload.state = formatStoreForInspectorState(inspectedStore);\n }\n }\n });\n api.on.editInspectorState((payload, ctx) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (!isPinia(inspectedStore)) {\n // access only the state\n if (path.length !== 1 ||\n !inspectedStore._customProperties.has(path[0]) ||\n path[0] in inspectedStore.$state) {\n path.unshift('$state');\n }\n }\n else {\n // Root access, we can omit the `.value` because the devtools API does it for us\n path.unshift('state');\n }\n isTimelineActive = false;\n payload.set(inspectedStore, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n api.on.editComponentState((payload) => {\n if (payload.type.startsWith('๐Ÿ')) {\n const storeId = payload.type.replace(/^๐Ÿ\\s*/, '');\n const store = pinia._s.get(storeId);\n if (!store) {\n return toastMessage(`store \"${storeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (path[0] !== 'state') {\n return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n }\n // rewrite the first entry to be able to directly set the state as\n // well as any other path\n path[0] = '$state';\n isTimelineActive = false;\n payload.set(store, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n });\n}\nfunction addStoreToDevtools(app, store) {\n if (!componentStateTypes.includes(getStoreType(store.$id))) {\n componentStateTypes.push(getStoreType(store.$id));\n }\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia ๐Ÿ',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n settings: {\n logStoreChanges: {\n label: 'Notify about new/deleted stores',\n type: 'boolean',\n defaultValue: true,\n },\n // useEmojis: {\n // label: 'Use emojis in messages โšก๏ธ',\n // type: 'boolean',\n // defaultValue: true,\n // },\n },\n }, (api) => {\n // gracefully handle errors\n const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n store.$onAction(({ after, onError, name, args }) => {\n const groupId = runningActionId++;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '๐Ÿ›ซ ' + name,\n subtitle: 'start',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n },\n groupId,\n },\n });\n after((result) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '๐Ÿ›ฌ ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n result,\n },\n groupId,\n },\n });\n });\n onError((error) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n logType: 'error',\n title: '๐Ÿ’ฅ ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n error,\n },\n groupId,\n },\n });\n });\n }, true);\n store._customProperties.forEach((name) => {\n watch(() => unref(store[name]), (newValue, oldValue) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (isTimelineActive) {\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: 'Change',\n subtitle: name,\n data: {\n newValue,\n oldValue,\n },\n groupId: activeAction,\n },\n });\n }\n }, { deep: true });\n });\n store.$subscribe(({ events, type }, state) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (!isTimelineActive)\n return;\n // rootStore.state[store.id] = state\n const eventData = {\n time: now(),\n title: formatMutationType(type),\n data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n groupId: activeAction,\n };\n // reset for the next mutation\n activeAction = undefined;\n if (type === MutationType.patchFunction) {\n eventData.subtitle = 'โคต๏ธ';\n }\n else if (type === MutationType.patchObject) {\n eventData.subtitle = '๐Ÿงฉ';\n }\n else if (events && !Array.isArray(events)) {\n eventData.subtitle = events.type;\n }\n if (events) {\n eventData.data['rawEvent(s)'] = {\n _custom: {\n display: 'DebuggerEvent',\n type: 'object',\n tooltip: 'raw DebuggerEvent[]',\n value: events,\n },\n };\n }\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: eventData,\n });\n }, { detached: true, flush: 'sync' });\n const hotUpdate = store._hotUpdate;\n store._hotUpdate = markRaw((newStore) => {\n hotUpdate(newStore);\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '๐Ÿ”ฅ ' + store.$id,\n subtitle: 'HMR update',\n data: {\n store: formatDisplay(store.$id),\n info: formatDisplay(`HMR update`),\n },\n },\n });\n // update the devtools too\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n });\n const { $dispose } = store;\n store.$dispose = () => {\n $dispose();\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`Disposed \"${store.$id}\" store ๐Ÿ—‘`);\n };\n // trigger an update so it can display new registered stores\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`\"${store.$id}\" store installed ๐Ÿ†•`);\n });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames) {\n // original actions of the store as they are given by pinia. We are going to override them\n const actions = actionNames.reduce((storeActions, actionName) => {\n // use toRaw to avoid tracking #541\n storeActions[actionName] = toRaw(store)[actionName];\n return storeActions;\n }, {});\n for (const actionName in actions) {\n store[actionName] = function () {\n // setActivePinia(store._p)\n // the running action id is incremented in a before action hook\n const _actionId = runningActionId;\n const trackedStore = new Proxy(store, {\n get(...args) {\n activeAction = _actionId;\n return Reflect.get(...args);\n },\n set(...args) {\n activeAction = _actionId;\n return Reflect.set(...args);\n },\n });\n return actions[actionName].apply(trackedStore, arguments);\n };\n }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n // HMR module\n if (store.$id.startsWith('__hot:')) {\n return;\n }\n // detect option api vs setup api\n if (options.state) {\n store._isOptionsAPI = true;\n }\n // only wrap actions in option-defined stores as this technique relies on\n // wrapping the context of the action with a proxy\n if (typeof options.state === 'function') {\n patchActionForGrouping(\n // @ts-expect-error: can cast the store...\n store, Object.keys(options.actions));\n const originalHotUpdate = store._hotUpdate;\n // Upgrade the HMR to also update the new actions\n toRaw(store)._hotUpdate = function (newStore) {\n originalHotUpdate.apply(this, arguments);\n patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions));\n };\n }\n addStoreToDevtools(app, \n // FIXME: is there a way to allow the assignment from Store to StoreGeneric?\n store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n const scope = effectScope(true);\n // NOTE: here we could check the window object for a state and directly set it\n // if there is anything like it with Vue 3 SSR\n const state = scope.run(() => ref({}));\n let _p = [];\n // plugins added before calling app.use(pinia)\n let toBeInstalled = [];\n const pinia = markRaw({\n install(app) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n if (!isVue2) {\n pinia._a = app;\n app.provide(piniaSymbol, pinia);\n app.config.globalProperties.$pinia = pinia;\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(app, pinia);\n }\n toBeInstalled.forEach((plugin) => _p.push(plugin));\n toBeInstalled = [];\n }\n },\n use(plugin) {\n if (!this._a && !isVue2) {\n toBeInstalled.push(plugin);\n }\n else {\n _p.push(plugin);\n }\n return this;\n },\n _p,\n // it's actually undefined here\n // @ts-expect-error\n _a: null,\n _e: scope,\n _s: new Map(),\n state,\n });\n // pinia devtools rely on dev only features so they cannot be forced unless\n // the dev build of Vue is used. Avoid old browsers like IE11.\n if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n pinia.use(devtoolsPlugin);\n }\n return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in oldState) {\n const subPatch = oldState[key];\n // skip the whole sub tree\n if (!(key in newState)) {\n continue;\n }\n const targetValue = newState[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n newState[key] = patchObject(targetValue, subPatch);\n }\n else {\n // objects are either a bit more complex (e.g. refs) or primitives, so we\n // just set the whole thing\n if (isVue2) {\n set(newState, key, subPatch);\n }\n else {\n newState[key] = subPatch;\n }\n }\n }\n return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n * import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n // strip as much as possible from iife.prod\n if (!(process.env.NODE_ENV !== 'production')) {\n return () => { };\n }\n return (newModule) => {\n const pinia = hot.data.pinia || initialUseStore._pinia;\n if (!pinia) {\n // this store is still not used\n return;\n }\n // preserve the pinia instance across loads\n hot.data.pinia = pinia;\n // console.log('got data', newStore)\n for (const exportName in newModule) {\n const useStore = newModule[exportName];\n // console.log('checking for', exportName)\n if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n // console.log('Accepting update for', useStore.$id)\n const id = useStore.$id;\n if (id !== initialUseStore.$id) {\n console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n // return import.meta.hot.invalidate()\n return hot.invalidate();\n }\n const existingStore = pinia._s.get(id);\n if (!existingStore) {\n console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n return;\n }\n useStore(pinia, existingStore);\n }\n }\n };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n subscriptions.push(callback);\n const removeSubscription = () => {\n const idx = subscriptions.indexOf(callback);\n if (idx > -1) {\n subscriptions.splice(idx, 1);\n onCleanup();\n }\n };\n if (!detached && getCurrentScope()) {\n onScopeDispose(removeSubscription);\n }\n return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n subscriptions.slice().forEach((callback) => {\n callback(...args);\n });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n // Handle Map instances\n if (target instanceof Map && patchToApply instanceof Map) {\n patchToApply.forEach((value, key) => target.set(key, value));\n }\n // Handle Set instances\n if (target instanceof Set && patchToApply instanceof Set) {\n patchToApply.forEach(target.add, target);\n }\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in patchToApply) {\n if (!patchToApply.hasOwnProperty(key))\n continue;\n const subPatch = patchToApply[key];\n const targetValue = target[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n target.hasOwnProperty(key) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n target[key] = mergeReactiveObjects(targetValue, subPatch);\n }\n else {\n // @ts-expect-error: subPatch is a valid value\n target[key] = subPatch;\n }\n }\n return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n ? Symbol('pinia:skipHydration')\n : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n return isVue2\n ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n return isVue2\n ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n const { state, actions, getters } = options;\n const initialState = pinia.state.value[id];\n let store;\n function setup() {\n if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, id, state ? state() : {});\n }\n else {\n pinia.state.value[id] = state ? state() : {};\n }\n }\n // avoid creating a state in pinia.state.value\n const localState = (process.env.NODE_ENV !== 'production') && hot\n ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n toRefs(ref(state ? state() : {}).value)\n : toRefs(pinia.state.value[id]);\n return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n if ((process.env.NODE_ENV !== 'production') && name in localState) {\n console.warn(`[๐Ÿ]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n }\n computedGetters[name] = markRaw(computed(() => {\n setActivePinia(pinia);\n // it was created just before\n const store = pinia._s.get(id);\n // allow cross using stores\n /* istanbul ignore next */\n if (isVue2 && !store._r)\n return;\n // @ts-expect-error\n // return getters![name].call(context, context)\n // TODO: avoid reading the getter while assigning with a global variable\n return getters[name].call(store, store);\n }));\n return computedGetters;\n }, {}));\n }\n store = createSetupStore(id, setup, options, pinia, hot, true);\n return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n let scope;\n const optionsForPlugin = assign({ actions: {} }, options);\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n throw new Error('Pinia destroyed');\n }\n // watcher options for $subscribe\n const $subscribeOptions = {\n deep: true,\n // flush: 'post',\n };\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n $subscribeOptions.onTrigger = (event) => {\n /* istanbul ignore else */\n if (isListening) {\n debuggerEvents = event;\n // avoid triggering this while the store is being built and the state is being set in pinia\n }\n else if (isListening == false && !store._hotUpdating) {\n // let patch send all the events together later\n /* istanbul ignore else */\n if (Array.isArray(debuggerEvents)) {\n debuggerEvents.push(event);\n }\n else {\n console.error('๐Ÿ debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n }\n }\n };\n }\n // internal state\n let isListening; // set to true at the end\n let isSyncListening; // set to true at the end\n let subscriptions = [];\n let actionSubscriptions = [];\n let debuggerEvents;\n const initialState = pinia.state.value[$id];\n // avoid setting the state for option stores if it is set\n // by the setup\n if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, $id, {});\n }\n else {\n pinia.state.value[$id] = {};\n }\n }\n const hotState = ref({});\n // avoid triggering too many listeners\n // https://github.com/vuejs/pinia/issues/1129\n let activeListener;\n function $patch(partialStateOrMutator) {\n let subscriptionMutation;\n isListening = isSyncListening = false;\n // reset the debugger events since patches are sync\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n debuggerEvents = [];\n }\n if (typeof partialStateOrMutator === 'function') {\n partialStateOrMutator(pinia.state.value[$id]);\n subscriptionMutation = {\n type: MutationType.patchFunction,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n else {\n mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n subscriptionMutation = {\n type: MutationType.patchObject,\n payload: partialStateOrMutator,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n const myListenerId = (activeListener = Symbol());\n nextTick().then(() => {\n if (activeListener === myListenerId) {\n isListening = true;\n }\n });\n isSyncListening = true;\n // because we paused the watcher, we need to manually call the subscriptions\n triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n }\n const $reset = isOptionsStore\n ? function $reset() {\n const { state } = options;\n const newState = state ? state() : {};\n // we use a patch to group all changes into one single subscription\n this.$patch(($state) => {\n assign($state, newState);\n });\n }\n : /* istanbul ignore next */\n (process.env.NODE_ENV !== 'production')\n ? () => {\n throw new Error(`๐Ÿ: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n }\n : noop;\n function $dispose() {\n scope.stop();\n subscriptions = [];\n actionSubscriptions = [];\n pinia._s.delete($id);\n }\n /**\n * Wraps an action to handle subscriptions.\n *\n * @param name - name of the action\n * @param action - action to wrap\n * @returns a wrapped action to handle subscriptions\n */\n function wrapAction(name, action) {\n return function () {\n setActivePinia(pinia);\n const args = Array.from(arguments);\n const afterCallbackList = [];\n const onErrorCallbackList = [];\n function after(callback) {\n afterCallbackList.push(callback);\n }\n function onError(callback) {\n onErrorCallbackList.push(callback);\n }\n // @ts-expect-error\n triggerSubscriptions(actionSubscriptions, {\n args,\n name,\n store,\n after,\n onError,\n });\n let ret;\n try {\n ret = action.apply(this && this.$id === $id ? this : store, args);\n // handle sync errors\n }\n catch (error) {\n triggerSubscriptions(onErrorCallbackList, error);\n throw error;\n }\n if (ret instanceof Promise) {\n return ret\n .then((value) => {\n triggerSubscriptions(afterCallbackList, value);\n return value;\n })\n .catch((error) => {\n triggerSubscriptions(onErrorCallbackList, error);\n return Promise.reject(error);\n });\n }\n // trigger after callbacks\n triggerSubscriptions(afterCallbackList, ret);\n return ret;\n };\n }\n const _hmrPayload = /*#__PURE__*/ markRaw({\n actions: {},\n getters: {},\n state: [],\n hotState,\n });\n const partialStore = {\n _p: pinia,\n // _s: scope,\n $id,\n $onAction: addSubscription.bind(null, actionSubscriptions),\n $patch,\n $reset,\n $subscribe(callback, options = {}) {\n const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n if (options.flush === 'sync' ? isSyncListening : isListening) {\n callback({\n storeId: $id,\n type: MutationType.direct,\n events: debuggerEvents,\n }, state);\n }\n }, assign({}, $subscribeOptions, options)));\n return removeSubscription;\n },\n $dispose,\n };\n /* istanbul ignore if */\n if (isVue2) {\n // start as non ready\n partialStore._r = false;\n }\n const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n ? assign({\n _hmrPayload,\n _customProperties: markRaw(new Set()), // devtools custom properties\n }, partialStore\n // must be added later\n // setupStore\n )\n : partialStore);\n // store the partial store now so the setup of stores can instantiate each other before they are finished without\n // creating infinite loops.\n pinia._s.set($id, store);\n const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n const setupStore = pinia._e.run(() => {\n scope = effectScope();\n return runWithContext(() => scope.run(setup));\n });\n // overwrite existing actions to support $onAction\n for (const key in setupStore) {\n const prop = setupStore[key];\n if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n // mark it as a piece of state to be serialized\n if ((process.env.NODE_ENV !== 'production') && hot) {\n set(hotState.value, key, toRef(setupStore, key));\n // createOptionStore directly sets the state in pinia.state.value so we\n // can just skip that\n }\n else if (!isOptionsStore) {\n // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n if (initialState && shouldHydrate(prop)) {\n if (isRef(prop)) {\n prop.value = initialState[key];\n }\n else {\n // probably a reactive object, lets recursively assign\n // @ts-expect-error: prop is unknown\n mergeReactiveObjects(prop, initialState[key]);\n }\n }\n // transfer the ref to the pinia state to keep everything in sync\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value[$id], key, prop);\n }\n else {\n pinia.state.value[$id][key] = prop;\n }\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.state.push(key);\n }\n // action\n }\n else if (typeof prop === 'function') {\n // @ts-expect-error: we are overriding the function we avoid wrapping if\n const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n // this a hot module replacement store because the hotUpdate method needs\n // to do it with the right context\n /* istanbul ignore if */\n if (isVue2) {\n set(setupStore, key, actionValue);\n }\n else {\n // @ts-expect-error\n setupStore[key] = actionValue;\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.actions[key] = prop;\n }\n // list actions so they can be used in plugins\n // @ts-expect-error\n optionsForPlugin.actions[key] = prop;\n }\n else if ((process.env.NODE_ENV !== 'production')) {\n // add getters for devtools\n if (isComputed(prop)) {\n _hmrPayload.getters[key] = isOptionsStore\n ? // @ts-expect-error\n options.getters[key]\n : prop;\n if (IS_CLIENT) {\n const getters = setupStore._getters ||\n // @ts-expect-error: same\n (setupStore._getters = markRaw([]));\n getters.push(key);\n }\n }\n }\n }\n // add the state, getters, and action properties\n /* istanbul ignore if */\n if (isVue2) {\n Object.keys(setupStore).forEach((key) => {\n set(store, key, setupStore[key]);\n });\n }\n else {\n assign(store, setupStore);\n // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n // Make `storeToRefs()` work with `reactive()` #799\n assign(toRaw(store), setupStore);\n }\n // use this instead of a computed with setter to be able to create it anywhere\n // without linking the computed lifespan to wherever the store is first\n // created.\n Object.defineProperty(store, '$state', {\n get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n set: (state) => {\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && hot) {\n throw new Error('cannot set hotState');\n }\n $patch(($state) => {\n assign($state, state);\n });\n },\n });\n // add the hotUpdate before plugins to allow them to override it\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n store._hotUpdate = markRaw((newStore) => {\n store._hotUpdating = true;\n newStore._hmrPayload.state.forEach((stateKey) => {\n if (stateKey in store.$state) {\n const newStateTarget = newStore.$state[stateKey];\n const oldStateSource = store.$state[stateKey];\n if (typeof newStateTarget === 'object' &&\n isPlainObject(newStateTarget) &&\n isPlainObject(oldStateSource)) {\n patchObject(newStateTarget, oldStateSource);\n }\n else {\n // transfer the ref\n newStore.$state[stateKey] = oldStateSource;\n }\n }\n // patch direct access properties to allow store.stateProperty to work as\n // store.$state.stateProperty\n set(store, stateKey, toRef(newStore.$state, stateKey));\n });\n // remove deleted state properties\n Object.keys(store.$state).forEach((stateKey) => {\n if (!(stateKey in newStore.$state)) {\n del(store, stateKey);\n }\n });\n // avoid devtools logging this as a mutation\n isListening = false;\n isSyncListening = false;\n pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n isSyncListening = true;\n nextTick().then(() => {\n isListening = true;\n });\n for (const actionName in newStore._hmrPayload.actions) {\n const action = newStore[actionName];\n set(store, actionName, wrapAction(actionName, action));\n }\n // TODO: does this work in both setup and option store?\n for (const getterName in newStore._hmrPayload.getters) {\n const getter = newStore._hmrPayload.getters[getterName];\n const getterValue = isOptionsStore\n ? // special handling of options api\n computed(() => {\n setActivePinia(pinia);\n return getter.call(store, store);\n })\n : getter;\n set(store, getterName, getterValue);\n }\n // remove deleted getters\n Object.keys(store._hmrPayload.getters).forEach((key) => {\n if (!(key in newStore._hmrPayload.getters)) {\n del(store, key);\n }\n });\n // remove old actions\n Object.keys(store._hmrPayload.actions).forEach((key) => {\n if (!(key in newStore._hmrPayload.actions)) {\n del(store, key);\n }\n });\n // update the values used in devtools and to allow deleting new properties later on\n store._hmrPayload = newStore._hmrPayload;\n store._getters = newStore._getters;\n store._hotUpdating = false;\n });\n }\n if (USE_DEVTOOLS) {\n const nonEnumerable = {\n writable: true,\n configurable: true,\n // avoid warning on devtools trying to display this property\n enumerable: false,\n };\n ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n });\n }\n /* istanbul ignore if */\n if (isVue2) {\n // mark the store as ready before plugins\n store._r = true;\n }\n // apply all plugins\n pinia._p.forEach((extender) => {\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n const extensions = scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n }));\n Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n assign(store, extensions);\n }\n else {\n assign(store, scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n })));\n }\n });\n if ((process.env.NODE_ENV !== 'production') &&\n store.$state &&\n typeof store.$state === 'object' &&\n typeof store.$state.constructor === 'function' &&\n !store.$state.constructor.toString().includes('[native code]')) {\n console.warn(`[๐Ÿ]: The \"state\" must be a plain object. It cannot be\\n` +\n `\\tstate: () => new MyClass()\\n` +\n `Found in store \"${store.$id}\".`);\n }\n // only apply hydrate to option stores with an initial state in pinia\n if (initialState &&\n isOptionsStore &&\n options.hydrate) {\n options.hydrate(store.$state, initialState);\n }\n isListening = true;\n isSyncListening = true;\n return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n let id;\n let options;\n const isSetupStore = typeof setup === 'function';\n if (typeof idOrOptions === 'string') {\n id = idOrOptions;\n // the option store setup will contain the actual options in this case\n options = isSetupStore ? setupOptions : setup;\n }\n else {\n options = idOrOptions;\n id = idOrOptions.id;\n if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n throw new Error(`[๐Ÿ]: \"defineStore()\" must be passed a store id as its first argument.`);\n }\n }\n function useStore(pinia, hot) {\n const hasContext = hasInjectionContext();\n pinia =\n // in test mode, ignore the argument provided as we can always retrieve a\n // pinia instance with getActivePinia()\n ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n (hasContext ? inject(piniaSymbol, null) : null);\n if (pinia)\n setActivePinia(pinia);\n if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n throw new Error(`[๐Ÿ]: \"getActivePinia()\" was called but there was no active Pinia. Did you forget to install pinia?\\n` +\n `\\tconst pinia = createPinia()\\n` +\n `\\tapp.use(pinia)\\n` +\n `This will fail in production.`);\n }\n pinia = activePinia;\n if (!pinia._s.has(id)) {\n // creating the store registers it in `pinia._s`\n if (isSetupStore) {\n createSetupStore(id, setup, options, pinia);\n }\n else {\n createOptionsStore(id, options, pinia);\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n // @ts-expect-error: not the right inferred type\n useStore._pinia = pinia;\n }\n }\n const store = pinia._s.get(id);\n if ((process.env.NODE_ENV !== 'production') && hot) {\n const hotId = '__hot:' + id;\n const newStore = isSetupStore\n ? createSetupStore(hotId, setup, options, pinia, true)\n : createOptionsStore(hotId, assign({}, options), pinia, true);\n hot._hotUpdate(newStore);\n // cleanup the state properties and the store from the cache\n delete pinia.state.value[hotId];\n pinia._s.delete(hotId);\n }\n if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n const currentInstance = getCurrentInstance();\n // save stores in instances to access them devtools\n if (currentInstance &&\n currentInstance.proxy &&\n // avoid adding stores that are just built for hot module replacement\n !hot) {\n const vm = currentInstance.proxy;\n const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n cache[id] = store;\n }\n }\n // StoreGeneric cannot be casted towards Store\n return store;\n }\n useStore.$id = id;\n return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n * computed: {\n * // other computed properties\n * ...mapStores(useUserStore, useCartStore)\n * },\n *\n * created() {\n * this.userStore // store with id \"user\"\n * this.cartStore // store with id \"cart\"\n * }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n console.warn(`[๐Ÿ]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n `Replace\\n` +\n `\\tmapStores([useAuthStore, useCartStore])\\n` +\n `with\\n` +\n `\\tmapStores(useAuthStore, useCartStore)\\n` +\n `This will fail in production if not fixed.`);\n stores = stores[0];\n }\n return stores.reduce((reduced, useStore) => {\n // @ts-expect-error: $id is added by defineStore\n reduced[useStore.$id + mapStoreSuffix] = function () {\n return useStore(this.$pinia);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n reduced[key] = function () {\n return useStore(this.$pinia)[key];\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function () {\n const store = useStore(this.$pinia);\n const storeKey = keysOrMapper[key];\n // for some reason TS is unable to infer the type of storeKey to be a\n // function\n return typeof storeKey === 'function'\n ? storeKey.call(this, store)\n : store[storeKey];\n };\n return reduced;\n }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[key](...args);\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[keysOrMapper[key]](...args);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[key];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[key] = value);\n },\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[keysOrMapper[key]];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n },\n };\n return reduced;\n }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n // See https://github.com/vuejs/pinia/issues/852\n // It's easier to just use toRefs() even if it includes more stuff\n if (isVue2) {\n // @ts-expect-error: toRefs include methods and others\n return toRefs(store);\n }\n else {\n store = toRaw(store);\n const refs = {};\n for (const key in store) {\n const value = store[key];\n if (isRef(value) || isReactive(value)) {\n // @ts-expect-error: the key is state or getter\n refs[key] =\n // ---\n toRef(store, key);\n }\n }\n return refs;\n }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n * el: '#app',\n * // ...\n * pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n // Equivalent of\n // app.config.globalProperties.$pinia = pinia\n _Vue.mixin({\n beforeCreate() {\n const options = this.$options;\n if (options.pinia) {\n const pinia = options.pinia;\n // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n /* istanbul ignore else */\n if (!this._provided) {\n const provideCache = {};\n Object.defineProperty(this, '_provided', {\n get: () => provideCache,\n set: (v) => Object.assign(provideCache, v),\n });\n }\n this._provided[piniaSymbol] = pinia;\n // propagate the pinia instance in an SSR friendly way\n // avoid adding it to nuxt twice\n /* istanbul ignore else */\n if (!this.$pinia) {\n this.$pinia = pinia;\n }\n pinia._a = this;\n if (IS_CLIENT) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n }\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(pinia._a, pinia);\n }\n }\n else if (!this.$pinia && options.parent && options.parent.$pinia) {\n this.$pinia = options.parent.$pinia;\n }\n },\n destroyed() {\n delete this._pStores;\n },\n });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\n"],"names":["MutationType","store","ref","options"],"mappings":"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"}