{"version":3,"file":"vue-router.9b0ffb12.js","sources":["../../node_modules/vue-router/dist/vue-router.esm-bundler.js"],"sourcesContent":["/*!\n * vue-router v4.0.16\n * (c) 2022 Eduardo San Martin Morote\n * @license MIT\n */\nimport { getCurrentInstance, inject, onUnmounted, onDeactivated, onActivated, computed, unref, watchEffect, defineComponent, reactive, h, provide, ref, watch, shallowRef, nextTick } from 'vue';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\nconst hasSymbol = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';\r\nconst PolySymbol = (name) => \r\n// vr = vue router\r\nhasSymbol\r\n ? Symbol((process.env.NODE_ENV !== 'production') ? '[vue-router]: ' + name : name)\r\n : ((process.env.NODE_ENV !== 'production') ? '[vue-router]: ' : '_vr_') + name;\r\n// rvlm = Router View Location Matched\r\n/**\r\n * RouteRecord being rendered by the closest ancestor Router View. Used for\r\n * `onBeforeRouteUpdate` and `onBeforeRouteLeave`. rvlm stands for Router View\r\n * Location Matched\r\n *\r\n * @internal\r\n */\r\nconst matchedRouteKey = /*#__PURE__*/ PolySymbol((process.env.NODE_ENV !== 'production') ? 'router view location matched' : 'rvlm');\r\n/**\r\n * Allows overriding the router view depth to control which component in\r\n * `matched` is rendered. rvd stands for Router View Depth\r\n *\r\n * @internal\r\n */\r\nconst viewDepthKey = /*#__PURE__*/ PolySymbol((process.env.NODE_ENV !== 'production') ? 'router view depth' : 'rvd');\r\n/**\r\n * Allows overriding the router instance returned by `useRouter` in tests. r\r\n * stands for router\r\n *\r\n * @internal\r\n */\r\nconst routerKey = /*#__PURE__*/ PolySymbol((process.env.NODE_ENV !== 'production') ? 'router' : 'r');\r\n/**\r\n * Allows overriding the current route returned by `useRoute` in tests. rl\r\n * stands for route location\r\n *\r\n * @internal\r\n */\r\nconst routeLocationKey = /*#__PURE__*/ PolySymbol((process.env.NODE_ENV !== 'production') ? 'route location' : 'rl');\r\n/**\r\n * Allows overriding the current route used by router-view. Internally this is\r\n * used when the `route` prop is passed.\r\n *\r\n * @internal\r\n */\r\nconst routerViewLocationKey = /*#__PURE__*/ PolySymbol((process.env.NODE_ENV !== 'production') ? 'router view location' : 'rvl');\n\nconst isBrowser = typeof window !== 'undefined';\n\nfunction isESModule(obj) {\r\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module');\r\n}\r\nconst assign = Object.assign;\r\nfunction applyToParams(fn, params) {\r\n const newParams = {};\r\n for (const key in params) {\r\n const value = params[key];\r\n newParams[key] = Array.isArray(value) ? value.map(fn) : fn(value);\r\n }\r\n return newParams;\r\n}\r\nconst noop = () => { };\n\nfunction warn(msg) {\r\n // avoid using ...args as it breaks in older Edge builds\r\n const args = Array.from(arguments).slice(1);\r\n console.warn.apply(console, ['[Vue Router warn]: ' + msg].concat(args));\r\n}\n\nconst TRAILING_SLASH_RE = /\\/$/;\r\nconst removeTrailingSlash = (path) => path.replace(TRAILING_SLASH_RE, '');\r\n/**\r\n * Transforms an URI into a normalized history location\r\n *\r\n * @param parseQuery\r\n * @param location - URI to normalize\r\n * @param currentLocation - current absolute location. Allows resolving relative\r\n * paths. Must start with `/`. Defaults to `/`\r\n * @returns a normalized history location\r\n */\r\nfunction parseURL(parseQuery, location, currentLocation = '/') {\r\n let path, query = {}, searchString = '', hash = '';\r\n // Could use URL and URLSearchParams but IE 11 doesn't support it\r\n const searchPos = location.indexOf('?');\r\n const hashPos = location.indexOf('#', searchPos > -1 ? searchPos : 0);\r\n if (searchPos > -1) {\r\n path = location.slice(0, searchPos);\r\n searchString = location.slice(searchPos + 1, hashPos > -1 ? hashPos : location.length);\r\n query = parseQuery(searchString);\r\n }\r\n if (hashPos > -1) {\r\n path = path || location.slice(0, hashPos);\r\n // keep the # character\r\n hash = location.slice(hashPos, location.length);\r\n }\r\n // no search and no query\r\n path = resolveRelativePath(path != null ? path : location, currentLocation);\r\n // empty path means a relative query or hash `?foo=f`, `#thing`\r\n return {\r\n fullPath: path + (searchString && '?') + searchString + hash,\r\n path,\r\n query,\r\n hash,\r\n };\r\n}\r\n/**\r\n * Stringifies a URL object\r\n *\r\n * @param stringifyQuery\r\n * @param location\r\n */\r\nfunction stringifyURL(stringifyQuery, location) {\r\n const query = location.query ? stringifyQuery(location.query) : '';\r\n return location.path + (query && '?') + query + (location.hash || '');\r\n}\r\n/**\r\n * Strips off the base from the beginning of a location.pathname in a non\r\n * case-sensitive way.\r\n *\r\n * @param pathname - location.pathname\r\n * @param base - base to strip off\r\n */\r\nfunction stripBase(pathname, base) {\r\n // no base or base is not found at the beginning\r\n if (!base || !pathname.toLowerCase().startsWith(base.toLowerCase()))\r\n return pathname;\r\n return pathname.slice(base.length) || '/';\r\n}\r\n/**\r\n * Checks if two RouteLocation are equal. This means that both locations are\r\n * pointing towards the same {@link RouteRecord} and that all `params`, `query`\r\n * parameters and `hash` are the same\r\n *\r\n * @param a - first {@link RouteLocation}\r\n * @param b - second {@link RouteLocation}\r\n */\r\nfunction isSameRouteLocation(stringifyQuery, a, b) {\r\n const aLastIndex = a.matched.length - 1;\r\n const bLastIndex = b.matched.length - 1;\r\n return (aLastIndex > -1 &&\r\n aLastIndex === bLastIndex &&\r\n isSameRouteRecord(a.matched[aLastIndex], b.matched[bLastIndex]) &&\r\n isSameRouteLocationParams(a.params, b.params) &&\r\n stringifyQuery(a.query) === stringifyQuery(b.query) &&\r\n a.hash === b.hash);\r\n}\r\n/**\r\n * Check if two `RouteRecords` are equal. Takes into account aliases: they are\r\n * considered equal to the `RouteRecord` they are aliasing.\r\n *\r\n * @param a - first {@link RouteRecord}\r\n * @param b - second {@link RouteRecord}\r\n */\r\nfunction isSameRouteRecord(a, b) {\r\n // since the original record has an undefined value for aliasOf\r\n // but all aliases point to the original record, this will always compare\r\n // the original record\r\n return (a.aliasOf || a) === (b.aliasOf || b);\r\n}\r\nfunction isSameRouteLocationParams(a, b) {\r\n if (Object.keys(a).length !== Object.keys(b).length)\r\n return false;\r\n for (const key in a) {\r\n if (!isSameRouteLocationParamsValue(a[key], b[key]))\r\n return false;\r\n }\r\n return true;\r\n}\r\nfunction isSameRouteLocationParamsValue(a, b) {\r\n return Array.isArray(a)\r\n ? isEquivalentArray(a, b)\r\n : Array.isArray(b)\r\n ? isEquivalentArray(b, a)\r\n : a === b;\r\n}\r\n/**\r\n * Check if two arrays are the same or if an array with one single entry is the\r\n * same as another primitive value. Used to check query and parameters\r\n *\r\n * @param a - array of values\r\n * @param b - array of values or a single value\r\n */\r\nfunction isEquivalentArray(a, b) {\r\n return Array.isArray(b)\r\n ? a.length === b.length && a.every((value, i) => value === b[i])\r\n : a.length === 1 && a[0] === b;\r\n}\r\n/**\r\n * Resolves a relative path that starts with `.`.\r\n *\r\n * @param to - path location we are resolving\r\n * @param from - currentLocation.path, should start with `/`\r\n */\r\nfunction resolveRelativePath(to, from) {\r\n if (to.startsWith('/'))\r\n return to;\r\n if ((process.env.NODE_ENV !== 'production') && !from.startsWith('/')) {\r\n warn(`Cannot resolve a relative location without an absolute path. Trying to resolve \"${to}\" from \"${from}\". It should look like \"/${from}\".`);\r\n return to;\r\n }\r\n if (!to)\r\n return from;\r\n const fromSegments = from.split('/');\r\n const toSegments = to.split('/');\r\n let position = fromSegments.length - 1;\r\n let toPosition;\r\n let segment;\r\n for (toPosition = 0; toPosition < toSegments.length; toPosition++) {\r\n segment = toSegments[toPosition];\r\n // can't go below zero\r\n if (position === 1 || segment === '.')\r\n continue;\r\n if (segment === '..')\r\n position--;\r\n // found something that is not relative path\r\n else\r\n break;\r\n }\r\n return (fromSegments.slice(0, position).join('/') +\r\n '/' +\r\n toSegments\r\n .slice(toPosition - (toPosition === toSegments.length ? 1 : 0))\r\n .join('/'));\r\n}\n\nvar NavigationType;\r\n(function (NavigationType) {\r\n NavigationType[\"pop\"] = \"pop\";\r\n NavigationType[\"push\"] = \"push\";\r\n})(NavigationType || (NavigationType = {}));\r\nvar NavigationDirection;\r\n(function (NavigationDirection) {\r\n NavigationDirection[\"back\"] = \"back\";\r\n NavigationDirection[\"forward\"] = \"forward\";\r\n NavigationDirection[\"unknown\"] = \"\";\r\n})(NavigationDirection || (NavigationDirection = {}));\r\n/**\r\n * Starting location for Histories\r\n */\r\nconst START = '';\r\n// Generic utils\r\n/**\r\n * Normalizes a base by removing any trailing slash and reading the base tag if\r\n * present.\r\n *\r\n * @param base - base to normalize\r\n */\r\nfunction normalizeBase(base) {\r\n if (!base) {\r\n if (isBrowser) {\r\n // respect tag\r\n const baseEl = document.querySelector('base');\r\n base = (baseEl && baseEl.getAttribute('href')) || '/';\r\n // strip full URL origin\r\n base = base.replace(/^\\w+:\\/\\/[^\\/]+/, '');\r\n }\r\n else {\r\n base = '/';\r\n }\r\n }\r\n // ensure leading slash when it was removed by the regex above avoid leading\r\n // slash with hash because the file could be read from the disk like file://\r\n // and the leading slash would cause problems\r\n if (base[0] !== '/' && base[0] !== '#')\r\n base = '/' + base;\r\n // remove the trailing slash so all other method can just do `base + fullPath`\r\n // to build an href\r\n return removeTrailingSlash(base);\r\n}\r\n// remove any character before the hash\r\nconst BEFORE_HASH_RE = /^[^#]+#/;\r\nfunction createHref(base, location) {\r\n return base.replace(BEFORE_HASH_RE, '#') + location;\r\n}\n\nfunction getElementPosition(el, offset) {\r\n const docRect = document.documentElement.getBoundingClientRect();\r\n const elRect = el.getBoundingClientRect();\r\n return {\r\n behavior: offset.behavior,\r\n left: elRect.left - docRect.left - (offset.left || 0),\r\n top: elRect.top - docRect.top - (offset.top || 0),\r\n };\r\n}\r\nconst computeScrollPosition = () => ({\r\n left: window.pageXOffset,\r\n top: window.pageYOffset,\r\n});\r\nfunction scrollToPosition(position) {\r\n let scrollToOptions;\r\n if ('el' in position) {\r\n const positionEl = position.el;\r\n const isIdSelector = typeof positionEl === 'string' && positionEl.startsWith('#');\r\n /**\r\n * `id`s can accept pretty much any characters, including CSS combinators\r\n * like `>` or `~`. It's still possible to retrieve elements using\r\n * `document.getElementById('~')` but it needs to be escaped when using\r\n * `document.querySelector('#\\\\~')` for it to be valid. The only\r\n * requirements for `id`s are them to be unique on the page and to not be\r\n * empty (`id=\"\"`). Because of that, when passing an id selector, it should\r\n * be properly escaped for it to work with `querySelector`. We could check\r\n * for the id selector to be simple (no CSS combinators `+ >~`) but that\r\n * would make things inconsistent since they are valid characters for an\r\n * `id` but would need to be escaped when using `querySelector`, breaking\r\n * their usage and ending up in no selector returned. Selectors need to be\r\n * escaped:\r\n *\r\n * - `#1-thing` becomes `#\\31 -thing`\r\n * - `#with~symbols` becomes `#with\\\\~symbols`\r\n *\r\n * - More information about the topic can be found at\r\n * https://mathiasbynens.be/notes/html5-id-class.\r\n * - Practical example: https://mathiasbynens.be/demo/html5-id\r\n */\r\n if ((process.env.NODE_ENV !== 'production') && typeof position.el === 'string') {\r\n if (!isIdSelector || !document.getElementById(position.el.slice(1))) {\r\n try {\r\n const foundEl = document.querySelector(position.el);\r\n if (isIdSelector && foundEl) {\r\n warn(`The selector \"${position.el}\" should be passed as \"el: document.querySelector('${position.el}')\" because it starts with \"#\".`);\r\n // return to avoid other warnings\r\n return;\r\n }\r\n }\r\n catch (err) {\r\n warn(`The selector \"${position.el}\" is invalid. If you are using an id selector, make sure to escape it. You can find more information about escaping characters in selectors at https://mathiasbynens.be/notes/css-escapes or use CSS.escape (https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape).`);\r\n // return to avoid other warnings\r\n return;\r\n }\r\n }\r\n }\r\n const el = typeof positionEl === 'string'\r\n ? isIdSelector\r\n ? document.getElementById(positionEl.slice(1))\r\n : document.querySelector(positionEl)\r\n : positionEl;\r\n if (!el) {\r\n (process.env.NODE_ENV !== 'production') &&\r\n warn(`Couldn't find element using selector \"${position.el}\" returned by scrollBehavior.`);\r\n return;\r\n }\r\n scrollToOptions = getElementPosition(el, position);\r\n }\r\n else {\r\n scrollToOptions = position;\r\n }\r\n if ('scrollBehavior' in document.documentElement.style)\r\n window.scrollTo(scrollToOptions);\r\n else {\r\n window.scrollTo(scrollToOptions.left != null ? scrollToOptions.left : window.pageXOffset, scrollToOptions.top != null ? scrollToOptions.top : window.pageYOffset);\r\n }\r\n}\r\nfunction getScrollKey(path, delta) {\r\n const position = history.state ? history.state.position - delta : -1;\r\n return position + path;\r\n}\r\nconst scrollPositions = new Map();\r\nfunction saveScrollPosition(key, scrollPosition) {\r\n scrollPositions.set(key, scrollPosition);\r\n}\r\nfunction getSavedScrollPosition(key) {\r\n const scroll = scrollPositions.get(key);\r\n // consume it so it's not used again\r\n scrollPositions.delete(key);\r\n return scroll;\r\n}\r\n// TODO: RFC about how to save scroll position\r\n/**\r\n * ScrollBehavior instance used by the router to compute and restore the scroll\r\n * position when navigating.\r\n */\r\n// export interface ScrollHandler {\r\n// // returns a scroll position that can be saved in history\r\n// compute(): ScrollPositionEntry\r\n// // can take an extended ScrollPositionEntry\r\n// scroll(position: ScrollPosition): void\r\n// }\r\n// export const scrollHandler: ScrollHandler = {\r\n// compute: computeScroll,\r\n// scroll: scrollToPosition,\r\n// }\n\nlet createBaseLocation = () => location.protocol + '//' + location.host;\r\n/**\r\n * Creates a normalized history location from a window.location object\r\n * @param location -\r\n */\r\nfunction createCurrentLocation(base, location) {\r\n const { pathname, search, hash } = location;\r\n // allows hash bases like #, /#, #/, #!, #!/, /#!/, or even /folder#end\r\n const hashPos = base.indexOf('#');\r\n if (hashPos > -1) {\r\n let slicePos = hash.includes(base.slice(hashPos))\r\n ? base.slice(hashPos).length\r\n : 1;\r\n let pathFromHash = hash.slice(slicePos);\r\n // prepend the starting slash to hash so the url starts with /#\r\n if (pathFromHash[0] !== '/')\r\n pathFromHash = '/' + pathFromHash;\r\n return stripBase(pathFromHash, '');\r\n }\r\n const path = stripBase(pathname, base);\r\n return path + search + hash;\r\n}\r\nfunction useHistoryListeners(base, historyState, currentLocation, replace) {\r\n let listeners = [];\r\n let teardowns = [];\r\n // TODO: should it be a stack? a Dict. Check if the popstate listener\r\n // can trigger twice\r\n let pauseState = null;\r\n const popStateHandler = ({ state, }) => {\r\n const to = createCurrentLocation(base, location);\r\n const from = currentLocation.value;\r\n const fromState = historyState.value;\r\n let delta = 0;\r\n if (state) {\r\n currentLocation.value = to;\r\n historyState.value = state;\r\n // ignore the popstate and reset the pauseState\r\n if (pauseState && pauseState === from) {\r\n pauseState = null;\r\n return;\r\n }\r\n delta = fromState ? state.position - fromState.position : 0;\r\n }\r\n else {\r\n replace(to);\r\n }\r\n // console.log({ deltaFromCurrent })\r\n // Here we could also revert the navigation by calling history.go(-delta)\r\n // this listener will have to be adapted to not trigger again and to wait for the url\r\n // to be updated before triggering the listeners. Some kind of validation function would also\r\n // need to be passed to the listeners so the navigation can be accepted\r\n // call all listeners\r\n listeners.forEach(listener => {\r\n listener(currentLocation.value, from, {\r\n delta,\r\n type: NavigationType.pop,\r\n direction: delta\r\n ? delta > 0\r\n ? NavigationDirection.forward\r\n : NavigationDirection.back\r\n : NavigationDirection.unknown,\r\n });\r\n });\r\n };\r\n function pauseListeners() {\r\n pauseState = currentLocation.value;\r\n }\r\n function listen(callback) {\r\n // setup the listener and prepare teardown callbacks\r\n listeners.push(callback);\r\n const teardown = () => {\r\n const index = listeners.indexOf(callback);\r\n if (index > -1)\r\n listeners.splice(index, 1);\r\n };\r\n teardowns.push(teardown);\r\n return teardown;\r\n }\r\n function beforeUnloadListener() {\r\n const { history } = window;\r\n if (!history.state)\r\n return;\r\n history.replaceState(assign({}, history.state, { scroll: computeScrollPosition() }), '');\r\n }\r\n function destroy() {\r\n for (const teardown of teardowns)\r\n teardown();\r\n teardowns = [];\r\n window.removeEventListener('popstate', popStateHandler);\r\n window.removeEventListener('beforeunload', beforeUnloadListener);\r\n }\r\n // setup the listeners and prepare teardown callbacks\r\n window.addEventListener('popstate', popStateHandler);\r\n window.addEventListener('beforeunload', beforeUnloadListener);\r\n return {\r\n pauseListeners,\r\n listen,\r\n destroy,\r\n };\r\n}\r\n/**\r\n * Creates a state object\r\n */\r\nfunction buildState(back, current, forward, replaced = false, computeScroll = false) {\r\n return {\r\n back,\r\n current,\r\n forward,\r\n replaced,\r\n position: window.history.length,\r\n scroll: computeScroll ? computeScrollPosition() : null,\r\n };\r\n}\r\nfunction useHistoryStateNavigation(base) {\r\n const { history, location } = window;\r\n // private variables\r\n const currentLocation = {\r\n value: createCurrentLocation(base, location),\r\n };\r\n const historyState = { value: history.state };\r\n // build current history entry as this is a fresh navigation\r\n if (!historyState.value) {\r\n changeLocation(currentLocation.value, {\r\n back: null,\r\n current: currentLocation.value,\r\n forward: null,\r\n // the length is off by one, we need to decrease it\r\n position: history.length - 1,\r\n replaced: true,\r\n // don't add a scroll as the user may have an anchor and we want\r\n // scrollBehavior to be triggered without a saved position\r\n scroll: null,\r\n }, true);\r\n }\r\n function changeLocation(to, state, replace) {\r\n /**\r\n * if a base tag is provided and we are on a normal domain, we have to\r\n * respect the provided `base` attribute because pushState() will use it and\r\n * potentially erase anything before the `#` like at\r\n * https://github.com/vuejs/router/issues/685 where a base of\r\n * `/folder/#` but a base of `/` would erase the `/folder/` section. If\r\n * there is no host, the `` tag makes no sense and if there isn't a\r\n * base tag we can just use everything after the `#`.\r\n */\r\n const hashIndex = base.indexOf('#');\r\n const url = hashIndex > -1\r\n ? (location.host && document.querySelector('base')\r\n ? base\r\n : base.slice(hashIndex)) + to\r\n : createBaseLocation() + base + to;\r\n try {\r\n // BROWSER QUIRK\r\n // NOTE: Safari throws a SecurityError when calling this function 100 times in 30 seconds\r\n history[replace ? 'replaceState' : 'pushState'](state, '', url);\r\n historyState.value = state;\r\n }\r\n catch (err) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n warn('Error with push/replace State', err);\r\n }\r\n else {\r\n console.error(err);\r\n }\r\n // Force the navigation, this also resets the call count\r\n location[replace ? 'replace' : 'assign'](url);\r\n }\r\n }\r\n function replace(to, data) {\r\n const state = assign({}, history.state, buildState(historyState.value.back, \r\n // keep back and forward entries but override current position\r\n to, historyState.value.forward, true), data, { position: historyState.value.position });\r\n changeLocation(to, state, true);\r\n currentLocation.value = to;\r\n }\r\n function push(to, data) {\r\n // Add to current entry the information of where we are going\r\n // as well as saving the current position\r\n const currentState = assign({}, \r\n // use current history state to gracefully handle a wrong call to\r\n // history.replaceState\r\n // https://github.com/vuejs/router/issues/366\r\n historyState.value, history.state, {\r\n forward: to,\r\n scroll: computeScrollPosition(),\r\n });\r\n if ((process.env.NODE_ENV !== 'production') && !history.state) {\r\n warn(`history.state seems to have been manually replaced without preserving the necessary values. Make sure to preserve existing history state if you are manually calling history.replaceState:\\n\\n` +\r\n `history.replaceState(history.state, '', url)\\n\\n` +\r\n `You can find more information at https://next.router.vuejs.org/guide/migration/#usage-of-history-state.`);\r\n }\r\n changeLocation(currentState.current, currentState, true);\r\n const state = assign({}, buildState(currentLocation.value, to, null), { position: currentState.position + 1 }, data);\r\n changeLocation(to, state, false);\r\n currentLocation.value = to;\r\n }\r\n return {\r\n location: currentLocation,\r\n state: historyState,\r\n push,\r\n replace,\r\n };\r\n}\r\n/**\r\n * Creates an HTML5 history. Most common history for single page applications.\r\n *\r\n * @param base -\r\n */\r\nfunction createWebHistory(base) {\r\n base = normalizeBase(base);\r\n const historyNavigation = useHistoryStateNavigation(base);\r\n const historyListeners = useHistoryListeners(base, historyNavigation.state, historyNavigation.location, historyNavigation.replace);\r\n function go(delta, triggerListeners = true) {\r\n if (!triggerListeners)\r\n historyListeners.pauseListeners();\r\n history.go(delta);\r\n }\r\n const routerHistory = assign({\r\n // it's overridden right after\r\n location: '',\r\n base,\r\n go,\r\n createHref: createHref.bind(null, base),\r\n }, historyNavigation, historyListeners);\r\n Object.defineProperty(routerHistory, 'location', {\r\n enumerable: true,\r\n get: () => historyNavigation.location.value,\r\n });\r\n Object.defineProperty(routerHistory, 'state', {\r\n enumerable: true,\r\n get: () => historyNavigation.state.value,\r\n });\r\n return routerHistory;\r\n}\n\n/**\r\n * Creates a in-memory based history. The main purpose of this history is to handle SSR. It starts in a special location that is nowhere.\r\n * It's up to the user to replace that location with the starter location by either calling `router.push` or `router.replace`.\r\n *\r\n * @param base - Base applied to all urls, defaults to '/'\r\n * @returns a history object that can be passed to the router constructor\r\n */\r\nfunction createMemoryHistory(base = '') {\r\n let listeners = [];\r\n let queue = [START];\r\n let position = 0;\r\n base = normalizeBase(base);\r\n function setLocation(location) {\r\n position++;\r\n if (position === queue.length) {\r\n // we are at the end, we can simply append a new entry\r\n queue.push(location);\r\n }\r\n else {\r\n // we are in the middle, we remove everything from here in the queue\r\n queue.splice(position);\r\n queue.push(location);\r\n }\r\n }\r\n function triggerListeners(to, from, { direction, delta }) {\r\n const info = {\r\n direction,\r\n delta,\r\n type: NavigationType.pop,\r\n };\r\n for (const callback of listeners) {\r\n callback(to, from, info);\r\n }\r\n }\r\n const routerHistory = {\r\n // rewritten by Object.defineProperty\r\n location: START,\r\n // TODO: should be kept in queue\r\n state: {},\r\n base,\r\n createHref: createHref.bind(null, base),\r\n replace(to) {\r\n // remove current entry and decrement position\r\n queue.splice(position--, 1);\r\n setLocation(to);\r\n },\r\n push(to, data) {\r\n setLocation(to);\r\n },\r\n listen(callback) {\r\n listeners.push(callback);\r\n return () => {\r\n const index = listeners.indexOf(callback);\r\n if (index > -1)\r\n listeners.splice(index, 1);\r\n };\r\n },\r\n destroy() {\r\n listeners = [];\r\n queue = [START];\r\n position = 0;\r\n },\r\n go(delta, shouldTrigger = true) {\r\n const from = this.location;\r\n const direction = \r\n // we are considering delta === 0 going forward, but in abstract mode\r\n // using 0 for the delta doesn't make sense like it does in html5 where\r\n // it reloads the page\r\n delta < 0 ? NavigationDirection.back : NavigationDirection.forward;\r\n position = Math.max(0, Math.min(position + delta, queue.length - 1));\r\n if (shouldTrigger) {\r\n triggerListeners(this.location, from, {\r\n direction,\r\n delta,\r\n });\r\n }\r\n },\r\n };\r\n Object.defineProperty(routerHistory, 'location', {\r\n enumerable: true,\r\n get: () => queue[position],\r\n });\r\n return routerHistory;\r\n}\n\n/**\r\n * Creates a hash history. Useful for web applications with no host (e.g.\r\n * `file://`) or when configuring a server to handle any URL is not possible.\r\n *\r\n * @param base - optional base to provide. Defaults to `location.pathname +\r\n * location.search` If there is a `` tag in the `head`, its value will be\r\n * ignored in favor of this parameter **but note it affects all the\r\n * history.pushState() calls**, meaning that if you use a `` tag, it's\r\n * `href` value **has to match this parameter** (ignoring anything after the\r\n * `#`).\r\n *\r\n * @example\r\n * ```js\r\n * // at https://example.com/folder\r\n * createWebHashHistory() // gives a url of `https://example.com/folder#`\r\n * createWebHashHistory('/folder/') // gives a url of `https://example.com/folder/#`\r\n * // if the `#` is provided in the base, it won't be added by `createWebHashHistory`\r\n * createWebHashHistory('/folder/#/app/') // gives a url of `https://example.com/folder/#/app/`\r\n * // you should avoid doing this because it changes the original url and breaks copying urls\r\n * createWebHashHistory('/other-folder/') // gives a url of `https://example.com/other-folder/#`\r\n *\r\n * // at file:///usr/etc/folder/index.html\r\n * // for locations with no `host`, the base is ignored\r\n * createWebHashHistory('/iAmIgnored') // gives a url of `file:///usr/etc/folder/index.html#`\r\n * ```\r\n */\r\nfunction createWebHashHistory(base) {\r\n // Make sure this implementation is fine in terms of encoding, specially for IE11\r\n // for `file://`, directly use the pathname and ignore the base\r\n // location.pathname contains an initial `/` even at the root: `https://example.com`\r\n base = location.host ? base || location.pathname + location.search : '';\r\n // allow the user to provide a `#` in the middle: `/base/#/app`\r\n if (!base.includes('#'))\r\n base += '#';\r\n if ((process.env.NODE_ENV !== 'production') && !base.endsWith('#/') && !base.endsWith('#')) {\r\n warn(`A hash base must end with a \"#\":\\n\"${base}\" should be \"${base.replace(/#.*$/, '#')}\".`);\r\n }\r\n return createWebHistory(base);\r\n}\n\nfunction isRouteLocation(route) {\r\n return typeof route === 'string' || (route && typeof route === 'object');\r\n}\r\nfunction isRouteName(name) {\r\n return typeof name === 'string' || typeof name === 'symbol';\r\n}\n\n/**\r\n * Initial route location where the router is. Can be used in navigation guards\r\n * to differentiate the initial navigation.\r\n *\r\n * @example\r\n * ```js\r\n * import { START_LOCATION } from 'vue-router'\r\n *\r\n * router.beforeEach((to, from) => {\r\n * if (from === START_LOCATION) {\r\n * // initial navigation\r\n * }\r\n * })\r\n * ```\r\n */\r\nconst START_LOCATION_NORMALIZED = {\r\n path: '/',\r\n name: undefined,\r\n params: {},\r\n query: {},\r\n hash: '',\r\n fullPath: '/',\r\n matched: [],\r\n meta: {},\r\n redirectedFrom: undefined,\r\n};\n\nconst NavigationFailureSymbol = /*#__PURE__*/ PolySymbol((process.env.NODE_ENV !== 'production') ? 'navigation failure' : 'nf');\r\n/**\r\n * Enumeration with all possible types for navigation failures. Can be passed to\r\n * {@link isNavigationFailure} to check for specific failures.\r\n */\r\nvar NavigationFailureType;\r\n(function (NavigationFailureType) {\r\n /**\r\n * An aborted navigation is a navigation that failed because a navigation\r\n * guard returned `false` or called `next(false)`\r\n */\r\n NavigationFailureType[NavigationFailureType[\"aborted\"] = 4] = \"aborted\";\r\n /**\r\n * A cancelled navigation is a navigation that failed because a more recent\r\n * navigation finished started (not necessarily finished).\r\n */\r\n NavigationFailureType[NavigationFailureType[\"cancelled\"] = 8] = \"cancelled\";\r\n /**\r\n * A duplicated navigation is a navigation that failed because it was\r\n * initiated while already being at the exact same location.\r\n */\r\n NavigationFailureType[NavigationFailureType[\"duplicated\"] = 16] = \"duplicated\";\r\n})(NavigationFailureType || (NavigationFailureType = {}));\r\n// DEV only debug messages\r\nconst ErrorTypeMessages = {\r\n [1 /* MATCHER_NOT_FOUND */]({ location, currentLocation }) {\r\n return `No match for\\n ${JSON.stringify(location)}${currentLocation\r\n ? '\\nwhile being at\\n' + JSON.stringify(currentLocation)\r\n : ''}`;\r\n },\r\n [2 /* NAVIGATION_GUARD_REDIRECT */]({ from, to, }) {\r\n return `Redirected from \"${from.fullPath}\" to \"${stringifyRoute(to)}\" via a navigation guard.`;\r\n },\r\n [4 /* NAVIGATION_ABORTED */]({ from, to }) {\r\n return `Navigation aborted from \"${from.fullPath}\" to \"${to.fullPath}\" via a navigation guard.`;\r\n },\r\n [8 /* NAVIGATION_CANCELLED */]({ from, to }) {\r\n return `Navigation cancelled from \"${from.fullPath}\" to \"${to.fullPath}\" with a new navigation.`;\r\n },\r\n [16 /* NAVIGATION_DUPLICATED */]({ from, to }) {\r\n return `Avoided redundant navigation to current location: \"${from.fullPath}\".`;\r\n },\r\n};\r\nfunction createRouterError(type, params) {\r\n // keep full error messages in cjs versions\r\n if ((process.env.NODE_ENV !== 'production') || !true) {\r\n return assign(new Error(ErrorTypeMessages[type](params)), {\r\n type,\r\n [NavigationFailureSymbol]: true,\r\n }, params);\r\n }\r\n else {\r\n return assign(new Error(), {\r\n type,\r\n [NavigationFailureSymbol]: true,\r\n }, params);\r\n }\r\n}\r\nfunction isNavigationFailure(error, type) {\r\n return (error instanceof Error &&\r\n NavigationFailureSymbol in error &&\r\n (type == null || !!(error.type & type)));\r\n}\r\nconst propertiesToLog = ['params', 'query', 'hash'];\r\nfunction stringifyRoute(to) {\r\n if (typeof to === 'string')\r\n return to;\r\n if ('path' in to)\r\n return to.path;\r\n const location = {};\r\n for (const key of propertiesToLog) {\r\n if (key in to)\r\n location[key] = to[key];\r\n }\r\n return JSON.stringify(location, null, 2);\r\n}\n\n// default pattern for a param: non greedy everything but /\r\nconst BASE_PARAM_PATTERN = '[^/]+?';\r\nconst BASE_PATH_PARSER_OPTIONS = {\r\n sensitive: false,\r\n strict: false,\r\n start: true,\r\n end: true,\r\n};\r\n// Special Regex characters that must be escaped in static tokens\r\nconst REGEX_CHARS_RE = /[.+*?^${}()[\\]/\\\\]/g;\r\n/**\r\n * Creates a path parser from an array of Segments (a segment is an array of Tokens)\r\n *\r\n * @param segments - array of segments returned by tokenizePath\r\n * @param extraOptions - optional options for the regexp\r\n * @returns a PathParser\r\n */\r\nfunction tokensToParser(segments, extraOptions) {\r\n const options = assign({}, BASE_PATH_PARSER_OPTIONS, extraOptions);\r\n // the amount of scores is the same as the length of segments except for the root segment \"/\"\r\n const score = [];\r\n // the regexp as a string\r\n let pattern = options.start ? '^' : '';\r\n // extracted keys\r\n const keys = [];\r\n for (const segment of segments) {\r\n // the root segment needs special treatment\r\n const segmentScores = segment.length ? [] : [90 /* Root */];\r\n // allow trailing slash\r\n if (options.strict && !segment.length)\r\n pattern += '/';\r\n for (let tokenIndex = 0; tokenIndex < segment.length; tokenIndex++) {\r\n const token = segment[tokenIndex];\r\n // resets the score if we are inside a sub segment /:a-other-:b\r\n let subSegmentScore = 40 /* Segment */ +\r\n (options.sensitive ? 0.25 /* BonusCaseSensitive */ : 0);\r\n if (token.type === 0 /* Static */) {\r\n // prepend the slash if we are starting a new segment\r\n if (!tokenIndex)\r\n pattern += '/';\r\n pattern += token.value.replace(REGEX_CHARS_RE, '\\\\$&');\r\n subSegmentScore += 40 /* Static */;\r\n }\r\n else if (token.type === 1 /* Param */) {\r\n const { value, repeatable, optional, regexp } = token;\r\n keys.push({\r\n name: value,\r\n repeatable,\r\n optional,\r\n });\r\n const re = regexp ? regexp : BASE_PARAM_PATTERN;\r\n // the user provided a custom regexp /:id(\\\\d+)\r\n if (re !== BASE_PARAM_PATTERN) {\r\n subSegmentScore += 10 /* BonusCustomRegExp */;\r\n // make sure the regexp is valid before using it\r\n try {\r\n new RegExp(`(${re})`);\r\n }\r\n catch (err) {\r\n throw new Error(`Invalid custom RegExp for param \"${value}\" (${re}): ` +\r\n err.message);\r\n }\r\n }\r\n // when we repeat we must take care of the repeating leading slash\r\n let subPattern = repeatable ? `((?:${re})(?:/(?:${re}))*)` : `(${re})`;\r\n // prepend the slash if we are starting a new segment\r\n if (!tokenIndex)\r\n subPattern =\r\n // avoid an optional / if there are more segments e.g. /:p?-static\r\n // or /:p?-:p2\r\n optional && segment.length < 2\r\n ? `(?:/${subPattern})`\r\n : '/' + subPattern;\r\n if (optional)\r\n subPattern += '?';\r\n pattern += subPattern;\r\n subSegmentScore += 20 /* Dynamic */;\r\n if (optional)\r\n subSegmentScore += -8 /* BonusOptional */;\r\n if (repeatable)\r\n subSegmentScore += -20 /* BonusRepeatable */;\r\n if (re === '.*')\r\n subSegmentScore += -50 /* BonusWildcard */;\r\n }\r\n segmentScores.push(subSegmentScore);\r\n }\r\n // an empty array like /home/ -> [[{home}], []]\r\n // if (!segment.length) pattern += '/'\r\n score.push(segmentScores);\r\n }\r\n // only apply the strict bonus to the last score\r\n if (options.strict && options.end) {\r\n const i = score.length - 1;\r\n score[i][score[i].length - 1] += 0.7000000000000001 /* BonusStrict */;\r\n }\r\n // TODO: dev only warn double trailing slash\r\n if (!options.strict)\r\n pattern += '/?';\r\n if (options.end)\r\n pattern += '$';\r\n // allow paths like /dynamic to only match dynamic or dynamic/... but not dynamic_something_else\r\n else if (options.strict)\r\n pattern += '(?:/|$)';\r\n const re = new RegExp(pattern, options.sensitive ? '' : 'i');\r\n function parse(path) {\r\n const match = path.match(re);\r\n const params = {};\r\n if (!match)\r\n return null;\r\n for (let i = 1; i < match.length; i++) {\r\n const value = match[i] || '';\r\n const key = keys[i - 1];\r\n params[key.name] = value && key.repeatable ? value.split('/') : value;\r\n }\r\n return params;\r\n }\r\n function stringify(params) {\r\n let path = '';\r\n // for optional parameters to allow to be empty\r\n let avoidDuplicatedSlash = false;\r\n for (const segment of segments) {\r\n if (!avoidDuplicatedSlash || !path.endsWith('/'))\r\n path += '/';\r\n avoidDuplicatedSlash = false;\r\n for (const token of segment) {\r\n if (token.type === 0 /* Static */) {\r\n path += token.value;\r\n }\r\n else if (token.type === 1 /* Param */) {\r\n const { value, repeatable, optional } = token;\r\n const param = value in params ? params[value] : '';\r\n if (Array.isArray(param) && !repeatable)\r\n throw new Error(`Provided param \"${value}\" is an array but it is not repeatable (* or + modifiers)`);\r\n const text = Array.isArray(param) ? param.join('/') : param;\r\n if (!text) {\r\n if (optional) {\r\n // if we have more than one optional param like /:a?-static and there are more segments, we don't need to\r\n // care about the optional param\r\n if (segment.length < 2 && segments.length > 1) {\r\n // remove the last slash as we could be at the end\r\n if (path.endsWith('/'))\r\n path = path.slice(0, -1);\r\n // do not append a slash on the next iteration\r\n else\r\n avoidDuplicatedSlash = true;\r\n }\r\n }\r\n else\r\n throw new Error(`Missing required param \"${value}\"`);\r\n }\r\n path += text;\r\n }\r\n }\r\n }\r\n return path;\r\n }\r\n return {\r\n re,\r\n score,\r\n keys,\r\n parse,\r\n stringify,\r\n };\r\n}\r\n/**\r\n * Compares an array of numbers as used in PathParser.score and returns a\r\n * number. This function can be used to `sort` an array\r\n *\r\n * @param a - first array of numbers\r\n * @param b - second array of numbers\r\n * @returns 0 if both are equal, < 0 if a should be sorted first, > 0 if b\r\n * should be sorted first\r\n */\r\nfunction compareScoreArray(a, b) {\r\n let i = 0;\r\n while (i < a.length && i < b.length) {\r\n const diff = b[i] - a[i];\r\n // only keep going if diff === 0\r\n if (diff)\r\n return diff;\r\n i++;\r\n }\r\n // if the last subsegment was Static, the shorter segments should be sorted first\r\n // otherwise sort the longest segment first\r\n if (a.length < b.length) {\r\n return a.length === 1 && a[0] === 40 /* Static */ + 40 /* Segment */\r\n ? -1\r\n : 1;\r\n }\r\n else if (a.length > b.length) {\r\n return b.length === 1 && b[0] === 40 /* Static */ + 40 /* Segment */\r\n ? 1\r\n : -1;\r\n }\r\n return 0;\r\n}\r\n/**\r\n * Compare function that can be used with `sort` to sort an array of PathParser\r\n *\r\n * @param a - first PathParser\r\n * @param b - second PathParser\r\n * @returns 0 if both are equal, < 0 if a should be sorted first, > 0 if b\r\n */\r\nfunction comparePathParserScore(a, b) {\r\n let i = 0;\r\n const aScore = a.score;\r\n const bScore = b.score;\r\n while (i < aScore.length && i < bScore.length) {\r\n const comp = compareScoreArray(aScore[i], bScore[i]);\r\n // do not return if both are equal\r\n if (comp)\r\n return comp;\r\n i++;\r\n }\r\n if (Math.abs(bScore.length - aScore.length) === 1) {\r\n if (isLastScoreNegative(aScore))\r\n return 1;\r\n if (isLastScoreNegative(bScore))\r\n return -1;\r\n }\r\n // if a and b share the same score entries but b has more, sort b first\r\n return bScore.length - aScore.length;\r\n // this is the ternary version\r\n // return aScore.length < bScore.length\r\n // ? 1\r\n // : aScore.length > bScore.length\r\n // ? -1\r\n // : 0\r\n}\r\n/**\r\n * This allows detecting splats at the end of a path: /home/:id(.*)*\r\n *\r\n * @param score - score to check\r\n * @returns true if the last entry is negative\r\n */\r\nfunction isLastScoreNegative(score) {\r\n const last = score[score.length - 1];\r\n return score.length > 0 && last[last.length - 1] < 0;\r\n}\n\nconst ROOT_TOKEN = {\r\n type: 0 /* Static */,\r\n value: '',\r\n};\r\nconst VALID_PARAM_RE = /[a-zA-Z0-9_]/;\r\n// After some profiling, the cache seems to be unnecessary because tokenizePath\r\n// (the slowest part of adding a route) is very fast\r\n// const tokenCache = new Map()\r\nfunction tokenizePath(path) {\r\n if (!path)\r\n return [[]];\r\n if (path === '/')\r\n return [[ROOT_TOKEN]];\r\n if (!path.startsWith('/')) {\r\n throw new Error((process.env.NODE_ENV !== 'production')\r\n ? `Route paths should start with a \"/\": \"${path}\" should be \"/${path}\".`\r\n : `Invalid path \"${path}\"`);\r\n }\r\n // if (tokenCache.has(path)) return tokenCache.get(path)!\r\n function crash(message) {\r\n throw new Error(`ERR (${state})/\"${buffer}\": ${message}`);\r\n }\r\n let state = 0 /* Static */;\r\n let previousState = state;\r\n const tokens = [];\r\n // the segment will always be valid because we get into the initial state\r\n // with the leading /\r\n let segment;\r\n function finalizeSegment() {\r\n if (segment)\r\n tokens.push(segment);\r\n segment = [];\r\n }\r\n // index on the path\r\n let i = 0;\r\n // char at index\r\n let char;\r\n // buffer of the value read\r\n let buffer = '';\r\n // custom regexp for a param\r\n let customRe = '';\r\n function consumeBuffer() {\r\n if (!buffer)\r\n return;\r\n if (state === 0 /* Static */) {\r\n segment.push({\r\n type: 0 /* Static */,\r\n value: buffer,\r\n });\r\n }\r\n else if (state === 1 /* Param */ ||\r\n state === 2 /* ParamRegExp */ ||\r\n state === 3 /* ParamRegExpEnd */) {\r\n if (segment.length > 1 && (char === '*' || char === '+'))\r\n crash(`A repeatable param (${buffer}) must be alone in its segment. eg: '/:ids+.`);\r\n segment.push({\r\n type: 1 /* Param */,\r\n value: buffer,\r\n regexp: customRe,\r\n repeatable: char === '*' || char === '+',\r\n optional: char === '*' || char === '?',\r\n });\r\n }\r\n else {\r\n crash('Invalid state to consume buffer');\r\n }\r\n buffer = '';\r\n }\r\n function addCharToBuffer() {\r\n buffer += char;\r\n }\r\n while (i < path.length) {\r\n char = path[i++];\r\n if (char === '\\\\' && state !== 2 /* ParamRegExp */) {\r\n previousState = state;\r\n state = 4 /* EscapeNext */;\r\n continue;\r\n }\r\n switch (state) {\r\n case 0 /* Static */:\r\n if (char === '/') {\r\n if (buffer) {\r\n consumeBuffer();\r\n }\r\n finalizeSegment();\r\n }\r\n else if (char === ':') {\r\n consumeBuffer();\r\n state = 1 /* Param */;\r\n }\r\n else {\r\n addCharToBuffer();\r\n }\r\n break;\r\n case 4 /* EscapeNext */:\r\n addCharToBuffer();\r\n state = previousState;\r\n break;\r\n case 1 /* Param */:\r\n if (char === '(') {\r\n state = 2 /* ParamRegExp */;\r\n }\r\n else if (VALID_PARAM_RE.test(char)) {\r\n addCharToBuffer();\r\n }\r\n else {\r\n consumeBuffer();\r\n state = 0 /* Static */;\r\n // go back one character if we were not modifying\r\n if (char !== '*' && char !== '?' && char !== '+')\r\n i--;\r\n }\r\n break;\r\n case 2 /* ParamRegExp */:\r\n // TODO: is it worth handling nested regexp? like :p(?:prefix_([^/]+)_suffix)\r\n // it already works by escaping the closing )\r\n // https://paths.esm.dev/?p=AAMeJbiAwQEcDKbAoAAkP60PG2R6QAvgNaA6AFACM2ABuQBB#\r\n // is this really something people need since you can also write\r\n // /prefix_:p()_suffix\r\n if (char === ')') {\r\n // handle the escaped )\r\n if (customRe[customRe.length - 1] == '\\\\')\r\n customRe = customRe.slice(0, -1) + char;\r\n else\r\n state = 3 /* ParamRegExpEnd */;\r\n }\r\n else {\r\n customRe += char;\r\n }\r\n break;\r\n case 3 /* ParamRegExpEnd */:\r\n // same as finalizing a param\r\n consumeBuffer();\r\n state = 0 /* Static */;\r\n // go back one character if we were not modifying\r\n if (char !== '*' && char !== '?' && char !== '+')\r\n i--;\r\n customRe = '';\r\n break;\r\n default:\r\n crash('Unknown state');\r\n break;\r\n }\r\n }\r\n if (state === 2 /* ParamRegExp */)\r\n crash(`Unfinished custom RegExp for param \"${buffer}\"`);\r\n consumeBuffer();\r\n finalizeSegment();\r\n // tokenCache.set(path, tokens)\r\n return tokens;\r\n}\n\nfunction createRouteRecordMatcher(record, parent, options) {\r\n const parser = tokensToParser(tokenizePath(record.path), options);\r\n // warn against params with the same name\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n const existingKeys = new Set();\r\n for (const key of parser.keys) {\r\n if (existingKeys.has(key.name))\r\n warn(`Found duplicated params with name \"${key.name}\" for path \"${record.path}\". Only the last one will be available on \"$route.params\".`);\r\n existingKeys.add(key.name);\r\n }\r\n }\r\n const matcher = assign(parser, {\r\n record,\r\n parent,\r\n // these needs to be populated by the parent\r\n children: [],\r\n alias: [],\r\n });\r\n if (parent) {\r\n // both are aliases or both are not aliases\r\n // we don't want to mix them because the order is used when\r\n // passing originalRecord in Matcher.addRoute\r\n if (!matcher.record.aliasOf === !parent.record.aliasOf)\r\n parent.children.push(matcher);\r\n }\r\n return matcher;\r\n}\n\n/**\r\n * Creates a Router Matcher.\r\n *\r\n * @internal\r\n * @param routes - array of initial routes\r\n * @param globalOptions - global route options\r\n */\r\nfunction createRouterMatcher(routes, globalOptions) {\r\n // normalized ordered array of matchers\r\n const matchers = [];\r\n const matcherMap = new Map();\r\n globalOptions = mergeOptions({ strict: false, end: true, sensitive: false }, globalOptions);\r\n function getRecordMatcher(name) {\r\n return matcherMap.get(name);\r\n }\r\n function addRoute(record, parent, originalRecord) {\r\n // used later on to remove by name\r\n const isRootAdd = !originalRecord;\r\n const mainNormalizedRecord = normalizeRouteRecord(record);\r\n // we might be the child of an alias\r\n mainNormalizedRecord.aliasOf = originalRecord && originalRecord.record;\r\n const options = mergeOptions(globalOptions, record);\r\n // generate an array of records to correctly handle aliases\r\n const normalizedRecords = [\r\n mainNormalizedRecord,\r\n ];\r\n if ('alias' in record) {\r\n const aliases = typeof record.alias === 'string' ? [record.alias] : record.alias;\r\n for (const alias of aliases) {\r\n normalizedRecords.push(assign({}, mainNormalizedRecord, {\r\n // this allows us to hold a copy of the `components` option\r\n // so that async components cache is hold on the original record\r\n components: originalRecord\r\n ? originalRecord.record.components\r\n : mainNormalizedRecord.components,\r\n path: alias,\r\n // we might be the child of an alias\r\n aliasOf: originalRecord\r\n ? originalRecord.record\r\n : mainNormalizedRecord,\r\n // the aliases are always of the same kind as the original since they\r\n // are defined on the same record\r\n }));\r\n }\r\n }\r\n let matcher;\r\n let originalMatcher;\r\n for (const normalizedRecord of normalizedRecords) {\r\n const { path } = normalizedRecord;\r\n // Build up the path for nested routes if the child isn't an absolute\r\n // route. Only add the / delimiter if the child path isn't empty and if the\r\n // parent path doesn't have a trailing slash\r\n if (parent && path[0] !== '/') {\r\n const parentPath = parent.record.path;\r\n const connectingSlash = parentPath[parentPath.length - 1] === '/' ? '' : '/';\r\n normalizedRecord.path =\r\n parent.record.path + (path && connectingSlash + path);\r\n }\r\n if ((process.env.NODE_ENV !== 'production') && normalizedRecord.path === '*') {\r\n throw new Error('Catch all routes (\"*\") must now be defined using a param with a custom regexp.\\n' +\r\n 'See more at https://next.router.vuejs.org/guide/migration/#removed-star-or-catch-all-routes.');\r\n }\r\n // create the object before hand so it can be passed to children\r\n matcher = createRouteRecordMatcher(normalizedRecord, parent, options);\r\n if ((process.env.NODE_ENV !== 'production') && parent && path[0] === '/')\r\n checkMissingParamsInAbsolutePath(matcher, parent);\r\n // if we are an alias we must tell the original record that we exist\r\n // so we can be removed\r\n if (originalRecord) {\r\n originalRecord.alias.push(matcher);\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n checkSameParams(originalRecord, matcher);\r\n }\r\n }\r\n else {\r\n // otherwise, the first record is the original and others are aliases\r\n originalMatcher = originalMatcher || matcher;\r\n if (originalMatcher !== matcher)\r\n originalMatcher.alias.push(matcher);\r\n // remove the route if named and only for the top record (avoid in nested calls)\r\n // this works because the original record is the first one\r\n if (isRootAdd && record.name && !isAliasRecord(matcher))\r\n removeRoute(record.name);\r\n }\r\n if ('children' in mainNormalizedRecord) {\r\n const children = mainNormalizedRecord.children;\r\n for (let i = 0; i < children.length; i++) {\r\n addRoute(children[i], matcher, originalRecord && originalRecord.children[i]);\r\n }\r\n }\r\n // if there was no original record, then the first one was not an alias and all\r\n // other alias (if any) need to reference this record when adding children\r\n originalRecord = originalRecord || matcher;\r\n // TODO: add normalized records for more flexibility\r\n // if (parent && isAliasRecord(originalRecord)) {\r\n // parent.children.push(originalRecord)\r\n // }\r\n insertMatcher(matcher);\r\n }\r\n return originalMatcher\r\n ? () => {\r\n // since other matchers are aliases, they should be removed by the original matcher\r\n removeRoute(originalMatcher);\r\n }\r\n : noop;\r\n }\r\n function removeRoute(matcherRef) {\r\n if (isRouteName(matcherRef)) {\r\n const matcher = matcherMap.get(matcherRef);\r\n if (matcher) {\r\n matcherMap.delete(matcherRef);\r\n matchers.splice(matchers.indexOf(matcher), 1);\r\n matcher.children.forEach(removeRoute);\r\n matcher.alias.forEach(removeRoute);\r\n }\r\n }\r\n else {\r\n const index = matchers.indexOf(matcherRef);\r\n if (index > -1) {\r\n matchers.splice(index, 1);\r\n if (matcherRef.record.name)\r\n matcherMap.delete(matcherRef.record.name);\r\n matcherRef.children.forEach(removeRoute);\r\n matcherRef.alias.forEach(removeRoute);\r\n }\r\n }\r\n }\r\n function getRoutes() {\r\n return matchers;\r\n }\r\n function insertMatcher(matcher) {\r\n let i = 0;\r\n while (i < matchers.length &&\r\n comparePathParserScore(matcher, matchers[i]) >= 0 &&\r\n // Adding children with empty path should still appear before the parent\r\n // https://github.com/vuejs/router/issues/1124\r\n (matcher.record.path !== matchers[i].record.path ||\r\n !isRecordChildOf(matcher, matchers[i])))\r\n i++;\r\n matchers.splice(i, 0, matcher);\r\n // only add the original record to the name map\r\n if (matcher.record.name && !isAliasRecord(matcher))\r\n matcherMap.set(matcher.record.name, matcher);\r\n }\r\n function resolve(location, currentLocation) {\r\n let matcher;\r\n let params = {};\r\n let path;\r\n let name;\r\n if ('name' in location && location.name) {\r\n matcher = matcherMap.get(location.name);\r\n if (!matcher)\r\n throw createRouterError(1 /* MATCHER_NOT_FOUND */, {\r\n location,\r\n });\r\n name = matcher.record.name;\r\n params = assign(\r\n // paramsFromLocation is a new object\r\n paramsFromLocation(currentLocation.params, \r\n // only keep params that exist in the resolved location\r\n // TODO: only keep optional params coming from a parent record\r\n matcher.keys.filter(k => !k.optional).map(k => k.name)), location.params);\r\n // throws if cannot be stringified\r\n path = matcher.stringify(params);\r\n }\r\n else if ('path' in location) {\r\n // no need to resolve the path with the matcher as it was provided\r\n // this also allows the user to control the encoding\r\n path = location.path;\r\n if ((process.env.NODE_ENV !== 'production') && !path.startsWith('/')) {\r\n warn(`The Matcher cannot resolve relative paths but received \"${path}\". Unless you directly called \\`matcher.resolve(\"${path}\")\\`, this is probably a bug in vue-router. Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/router.`);\r\n }\r\n matcher = matchers.find(m => m.re.test(path));\r\n // matcher should have a value after the loop\r\n if (matcher) {\r\n // TODO: dev warning of unused params if provided\r\n // we know the matcher works because we tested the regexp\r\n params = matcher.parse(path);\r\n name = matcher.record.name;\r\n }\r\n // location is a relative path\r\n }\r\n else {\r\n // match by name or path of current route\r\n matcher = currentLocation.name\r\n ? matcherMap.get(currentLocation.name)\r\n : matchers.find(m => m.re.test(currentLocation.path));\r\n if (!matcher)\r\n throw createRouterError(1 /* MATCHER_NOT_FOUND */, {\r\n location,\r\n currentLocation,\r\n });\r\n name = matcher.record.name;\r\n // since we are navigating to the same location, we don't need to pick the\r\n // params like when `name` is provided\r\n params = assign({}, currentLocation.params, location.params);\r\n path = matcher.stringify(params);\r\n }\r\n const matched = [];\r\n let parentMatcher = matcher;\r\n while (parentMatcher) {\r\n // reversed order so parents are at the beginning\r\n matched.unshift(parentMatcher.record);\r\n parentMatcher = parentMatcher.parent;\r\n }\r\n return {\r\n name,\r\n path,\r\n params,\r\n matched,\r\n meta: mergeMetaFields(matched),\r\n };\r\n }\r\n // add initial routes\r\n routes.forEach(route => addRoute(route));\r\n return { addRoute, resolve, removeRoute, getRoutes, getRecordMatcher };\r\n}\r\nfunction paramsFromLocation(params, keys) {\r\n const newParams = {};\r\n for (const key of keys) {\r\n if (key in params)\r\n newParams[key] = params[key];\r\n }\r\n return newParams;\r\n}\r\n/**\r\n * Normalizes a RouteRecordRaw. Creates a copy\r\n *\r\n * @param record\r\n * @returns the normalized version\r\n */\r\nfunction normalizeRouteRecord(record) {\r\n return {\r\n path: record.path,\r\n redirect: record.redirect,\r\n name: record.name,\r\n meta: record.meta || {},\r\n aliasOf: undefined,\r\n beforeEnter: record.beforeEnter,\r\n props: normalizeRecordProps(record),\r\n children: record.children || [],\r\n instances: {},\r\n leaveGuards: new Set(),\r\n updateGuards: new Set(),\r\n enterCallbacks: {},\r\n components: 'components' in record\r\n ? record.components || {}\r\n : { default: record.component },\r\n };\r\n}\r\n/**\r\n * Normalize the optional `props` in a record to always be an object similar to\r\n * components. Also accept a boolean for components.\r\n * @param record\r\n */\r\nfunction normalizeRecordProps(record) {\r\n const propsObject = {};\r\n // props does not exist on redirect records but we can set false directly\r\n const props = record.props || false;\r\n if ('component' in record) {\r\n propsObject.default = props;\r\n }\r\n else {\r\n // NOTE: we could also allow a function to be applied to every component.\r\n // Would need user feedback for use cases\r\n for (const name in record.components)\r\n propsObject[name] = typeof props === 'boolean' ? props : props[name];\r\n }\r\n return propsObject;\r\n}\r\n/**\r\n * Checks if a record or any of its parent is an alias\r\n * @param record\r\n */\r\nfunction isAliasRecord(record) {\r\n while (record) {\r\n if (record.record.aliasOf)\r\n return true;\r\n record = record.parent;\r\n }\r\n return false;\r\n}\r\n/**\r\n * Merge meta fields of an array of records\r\n *\r\n * @param matched - array of matched records\r\n */\r\nfunction mergeMetaFields(matched) {\r\n return matched.reduce((meta, record) => assign(meta, record.meta), {});\r\n}\r\nfunction mergeOptions(defaults, partialOptions) {\r\n const options = {};\r\n for (const key in defaults) {\r\n options[key] = key in partialOptions ? partialOptions[key] : defaults[key];\r\n }\r\n return options;\r\n}\r\nfunction isSameParam(a, b) {\r\n return (a.name === b.name &&\r\n a.optional === b.optional &&\r\n a.repeatable === b.repeatable);\r\n}\r\n/**\r\n * Check if a path and its alias have the same required params\r\n *\r\n * @param a - original record\r\n * @param b - alias record\r\n */\r\nfunction checkSameParams(a, b) {\r\n for (const key of a.keys) {\r\n if (!key.optional && !b.keys.find(isSameParam.bind(null, key)))\r\n return warn(`Alias \"${b.record.path}\" and the original record: \"${a.record.path}\" should have the exact same param named \"${key.name}\"`);\r\n }\r\n for (const key of b.keys) {\r\n if (!key.optional && !a.keys.find(isSameParam.bind(null, key)))\r\n return warn(`Alias \"${b.record.path}\" and the original record: \"${a.record.path}\" should have the exact same param named \"${key.name}\"`);\r\n }\r\n}\r\nfunction checkMissingParamsInAbsolutePath(record, parent) {\r\n for (const key of parent.keys) {\r\n if (!record.keys.find(isSameParam.bind(null, key)))\r\n return warn(`Absolute path \"${record.record.path}\" should have the exact same param named \"${key.name}\" as its parent \"${parent.record.path}\".`);\r\n }\r\n}\r\nfunction isRecordChildOf(record, parent) {\r\n return parent.children.some(child => child === record || isRecordChildOf(record, child));\r\n}\n\n/**\r\n * Encoding Rules ␣ = Space Path: ␣ \" < > # ? { } Query: ␣ \" < > # & = Hash: ␣ \"\r\n * < > `\r\n *\r\n * On top of that, the RFC3986 (https://tools.ietf.org/html/rfc3986#section-2.2)\r\n * defines some extra characters to be encoded. Most browsers do not encode them\r\n * in encodeURI https://github.com/whatwg/url/issues/369, so it may be safer to\r\n * also encode `!'()*`. Leaving unencoded only ASCII alphanumeric(`a-zA-Z0-9`)\r\n * plus `-._~`. This extra safety should be applied to query by patching the\r\n * string returned by encodeURIComponent encodeURI also encodes `[\\]^`. `\\`\r\n * should be encoded to avoid ambiguity. Browsers (IE, FF, C) transform a `\\`\r\n * into a `/` if directly typed in. The _backtick_ (`````) should also be\r\n * encoded everywhere because some browsers like FF encode it when directly\r\n * written while others don't. Safari and IE don't encode ``\"<>{}``` in hash.\r\n */\r\n// const EXTRA_RESERVED_RE = /[!'()*]/g\r\n// const encodeReservedReplacer = (c: string) => '%' + c.charCodeAt(0).toString(16)\r\nconst HASH_RE = /#/g; // %23\r\nconst AMPERSAND_RE = /&/g; // %26\r\nconst SLASH_RE = /\\//g; // %2F\r\nconst EQUAL_RE = /=/g; // %3D\r\nconst IM_RE = /\\?/g; // %3F\r\nconst PLUS_RE = /\\+/g; // %2B\r\n/**\r\n * NOTE: It's not clear to me if we should encode the + symbol in queries, it\r\n * seems to be less flexible than not doing so and I can't find out the legacy\r\n * systems requiring this for regular requests like text/html. In the standard,\r\n * the encoding of the plus character is only mentioned for\r\n * application/x-www-form-urlencoded\r\n * (https://url.spec.whatwg.org/#urlencoded-parsing) and most browsers seems lo\r\n * leave the plus character as is in queries. To be more flexible, we allow the\r\n * plus character on the query but it can also be manually encoded by the user.\r\n *\r\n * Resources:\r\n * - https://url.spec.whatwg.org/#urlencoded-parsing\r\n * - https://stackoverflow.com/questions/1634271/url-encoding-the-space-character-or-20\r\n */\r\nconst ENC_BRACKET_OPEN_RE = /%5B/g; // [\r\nconst ENC_BRACKET_CLOSE_RE = /%5D/g; // ]\r\nconst ENC_CARET_RE = /%5E/g; // ^\r\nconst ENC_BACKTICK_RE = /%60/g; // `\r\nconst ENC_CURLY_OPEN_RE = /%7B/g; // {\r\nconst ENC_PIPE_RE = /%7C/g; // |\r\nconst ENC_CURLY_CLOSE_RE = /%7D/g; // }\r\nconst ENC_SPACE_RE = /%20/g; // }\r\n/**\r\n * Encode characters that need to be encoded on the path, search and hash\r\n * sections of the URL.\r\n *\r\n * @internal\r\n * @param text - string to encode\r\n * @returns encoded string\r\n */\r\nfunction commonEncode(text) {\r\n return encodeURI('' + text)\r\n .replace(ENC_PIPE_RE, '|')\r\n .replace(ENC_BRACKET_OPEN_RE, '[')\r\n .replace(ENC_BRACKET_CLOSE_RE, ']');\r\n}\r\n/**\r\n * Encode characters that need to be encoded on the hash section of the URL.\r\n *\r\n * @param text - string to encode\r\n * @returns encoded string\r\n */\r\nfunction encodeHash(text) {\r\n return commonEncode(text)\r\n .replace(ENC_CURLY_OPEN_RE, '{')\r\n .replace(ENC_CURLY_CLOSE_RE, '}')\r\n .replace(ENC_CARET_RE, '^');\r\n}\r\n/**\r\n * Encode characters that need to be encoded query values on the query\r\n * section of the URL.\r\n *\r\n * @param text - string to encode\r\n * @returns encoded string\r\n */\r\nfunction encodeQueryValue(text) {\r\n return (commonEncode(text)\r\n // Encode the space as +, encode the + to differentiate it from the space\r\n .replace(PLUS_RE, '%2B')\r\n .replace(ENC_SPACE_RE, '+')\r\n .replace(HASH_RE, '%23')\r\n .replace(AMPERSAND_RE, '%26')\r\n .replace(ENC_BACKTICK_RE, '`')\r\n .replace(ENC_CURLY_OPEN_RE, '{')\r\n .replace(ENC_CURLY_CLOSE_RE, '}')\r\n .replace(ENC_CARET_RE, '^'));\r\n}\r\n/**\r\n * Like `encodeQueryValue` but also encodes the `=` character.\r\n *\r\n * @param text - string to encode\r\n */\r\nfunction encodeQueryKey(text) {\r\n return encodeQueryValue(text).replace(EQUAL_RE, '%3D');\r\n}\r\n/**\r\n * Encode characters that need to be encoded on the path section of the URL.\r\n *\r\n * @param text - string to encode\r\n * @returns encoded string\r\n */\r\nfunction encodePath(text) {\r\n return commonEncode(text).replace(HASH_RE, '%23').replace(IM_RE, '%3F');\r\n}\r\n/**\r\n * Encode characters that need to be encoded on the path section of the URL as a\r\n * param. This function encodes everything {@link encodePath} does plus the\r\n * slash (`/`) character. If `text` is `null` or `undefined`, returns an empty\r\n * string instead.\r\n *\r\n * @param text - string to encode\r\n * @returns encoded string\r\n */\r\nfunction encodeParam(text) {\r\n return text == null ? '' : encodePath(text).replace(SLASH_RE, '%2F');\r\n}\r\n/**\r\n * Decode text using `decodeURIComponent`. Returns the original text if it\r\n * fails.\r\n *\r\n * @param text - string to decode\r\n * @returns decoded string\r\n */\r\nfunction decode(text) {\r\n try {\r\n return decodeURIComponent('' + text);\r\n }\r\n catch (err) {\r\n (process.env.NODE_ENV !== 'production') && warn(`Error decoding \"${text}\". Using original value`);\r\n }\r\n return '' + text;\r\n}\n\n/**\r\n * Transforms a queryString into a {@link LocationQuery} object. Accept both, a\r\n * version with the leading `?` and without Should work as URLSearchParams\r\n\n * @internal\r\n *\r\n * @param search - search string to parse\r\n * @returns a query object\r\n */\r\nfunction parseQuery(search) {\r\n const query = {};\r\n // avoid creating an object with an empty key and empty value\r\n // because of split('&')\r\n if (search === '' || search === '?')\r\n return query;\r\n const hasLeadingIM = search[0] === '?';\r\n const searchParams = (hasLeadingIM ? search.slice(1) : search).split('&');\r\n for (let i = 0; i < searchParams.length; ++i) {\r\n // pre decode the + into space\r\n const searchParam = searchParams[i].replace(PLUS_RE, ' ');\r\n // allow the = character\r\n const eqPos = searchParam.indexOf('=');\r\n const key = decode(eqPos < 0 ? searchParam : searchParam.slice(0, eqPos));\r\n const value = eqPos < 0 ? null : decode(searchParam.slice(eqPos + 1));\r\n if (key in query) {\r\n // an extra variable for ts types\r\n let currentValue = query[key];\r\n if (!Array.isArray(currentValue)) {\r\n currentValue = query[key] = [currentValue];\r\n }\r\n currentValue.push(value);\r\n }\r\n else {\r\n query[key] = value;\r\n }\r\n }\r\n return query;\r\n}\r\n/**\r\n * Stringifies a {@link LocationQueryRaw} object. Like `URLSearchParams`, it\r\n * doesn't prepend a `?`\r\n *\r\n * @internal\r\n *\r\n * @param query - query object to stringify\r\n * @returns string version of the query without the leading `?`\r\n */\r\nfunction stringifyQuery(query) {\r\n let search = '';\r\n for (let key in query) {\r\n const value = query[key];\r\n key = encodeQueryKey(key);\r\n if (value == null) {\r\n // only null adds the value\r\n if (value !== undefined) {\r\n search += (search.length ? '&' : '') + key;\r\n }\r\n continue;\r\n }\r\n // keep null values\r\n const values = Array.isArray(value)\r\n ? value.map(v => v && encodeQueryValue(v))\r\n : [value && encodeQueryValue(value)];\r\n values.forEach(value => {\r\n // skip undefined values in arrays as if they were not present\r\n // smaller code than using filter\r\n if (value !== undefined) {\r\n // only append & with non-empty search\r\n search += (search.length ? '&' : '') + key;\r\n if (value != null)\r\n search += '=' + value;\r\n }\r\n });\r\n }\r\n return search;\r\n}\r\n/**\r\n * Transforms a {@link LocationQueryRaw} into a {@link LocationQuery} by casting\r\n * numbers into strings, removing keys with an undefined value and replacing\r\n * undefined with null in arrays\r\n *\r\n * @param query - query object to normalize\r\n * @returns a normalized query object\r\n */\r\nfunction normalizeQuery(query) {\r\n const normalizedQuery = {};\r\n for (const key in query) {\r\n const value = query[key];\r\n if (value !== undefined) {\r\n normalizedQuery[key] = Array.isArray(value)\r\n ? value.map(v => (v == null ? null : '' + v))\r\n : value == null\r\n ? value\r\n : '' + value;\r\n }\r\n }\r\n return normalizedQuery;\r\n}\n\n/**\r\n * Create a list of callbacks that can be reset. Used to create before and after navigation guards list\r\n */\r\nfunction useCallbacks() {\r\n let handlers = [];\r\n function add(handler) {\r\n handlers.push(handler);\r\n return () => {\r\n const i = handlers.indexOf(handler);\r\n if (i > -1)\r\n handlers.splice(i, 1);\r\n };\r\n }\r\n function reset() {\r\n handlers = [];\r\n }\r\n return {\r\n add,\r\n list: () => handlers,\r\n reset,\r\n };\r\n}\n\nfunction registerGuard(record, name, guard) {\r\n const removeFromList = () => {\r\n record[name].delete(guard);\r\n };\r\n onUnmounted(removeFromList);\r\n onDeactivated(removeFromList);\r\n onActivated(() => {\r\n record[name].add(guard);\r\n });\r\n record[name].add(guard);\r\n}\r\n/**\r\n * Add a navigation guard that triggers whenever the component for the current\r\n * location is about to be left. Similar to {@link beforeRouteLeave} but can be\r\n * used in any component. The guard is removed when the component is unmounted.\r\n *\r\n * @param leaveGuard - {@link NavigationGuard}\r\n */\r\nfunction onBeforeRouteLeave(leaveGuard) {\r\n if ((process.env.NODE_ENV !== 'production') && !getCurrentInstance()) {\r\n warn('getCurrentInstance() returned null. onBeforeRouteLeave() must be called at the top of a setup function');\r\n return;\r\n }\r\n const activeRecord = inject(matchedRouteKey, \r\n // to avoid warning\r\n {}).value;\r\n if (!activeRecord) {\r\n (process.env.NODE_ENV !== 'production') &&\r\n warn('No active route record was found when calling `onBeforeRouteLeave()`. Make sure you call this function inside of a component child of . Maybe you called it inside of App.vue?');\r\n return;\r\n }\r\n registerGuard(activeRecord, 'leaveGuards', leaveGuard);\r\n}\r\n/**\r\n * Add a navigation guard that triggers whenever the current location is about\r\n * to be updated. Similar to {@link beforeRouteUpdate} but can be used in any\r\n * component. The guard is removed when the component is unmounted.\r\n *\r\n * @param updateGuard - {@link NavigationGuard}\r\n */\r\nfunction onBeforeRouteUpdate(updateGuard) {\r\n if ((process.env.NODE_ENV !== 'production') && !getCurrentInstance()) {\r\n warn('getCurrentInstance() returned null. onBeforeRouteUpdate() must be called at the top of a setup function');\r\n return;\r\n }\r\n const activeRecord = inject(matchedRouteKey, \r\n // to avoid warning\r\n {}).value;\r\n if (!activeRecord) {\r\n (process.env.NODE_ENV !== 'production') &&\r\n warn('No active route record was found when calling `onBeforeRouteUpdate()`. Make sure you call this function inside of a component child of . Maybe you called it inside of App.vue?');\r\n return;\r\n }\r\n registerGuard(activeRecord, 'updateGuards', updateGuard);\r\n}\r\nfunction guardToPromiseFn(guard, to, from, record, name) {\r\n // keep a reference to the enterCallbackArray to prevent pushing callbacks if a new navigation took place\r\n const enterCallbackArray = record &&\r\n // name is defined if record is because of the function overload\r\n (record.enterCallbacks[name] = record.enterCallbacks[name] || []);\r\n return () => new Promise((resolve, reject) => {\r\n const next = (valid) => {\r\n if (valid === false)\r\n reject(createRouterError(4 /* NAVIGATION_ABORTED */, {\r\n from,\r\n to,\r\n }));\r\n else if (valid instanceof Error) {\r\n reject(valid);\r\n }\r\n else if (isRouteLocation(valid)) {\r\n reject(createRouterError(2 /* NAVIGATION_GUARD_REDIRECT */, {\r\n from: to,\r\n to: valid,\r\n }));\r\n }\r\n else {\r\n if (enterCallbackArray &&\r\n // since enterCallbackArray is truthy, both record and name also are\r\n record.enterCallbacks[name] === enterCallbackArray &&\r\n typeof valid === 'function')\r\n enterCallbackArray.push(valid);\r\n resolve();\r\n }\r\n };\r\n // wrapping with Promise.resolve allows it to work with both async and sync guards\r\n const guardReturn = guard.call(record && record.instances[name], to, from, (process.env.NODE_ENV !== 'production') ? canOnlyBeCalledOnce(next, to, from) : next);\r\n let guardCall = Promise.resolve(guardReturn);\r\n if (guard.length < 3)\r\n guardCall = guardCall.then(next);\r\n if ((process.env.NODE_ENV !== 'production') && guard.length > 2) {\r\n const message = `The \"next\" callback was never called inside of ${guard.name ? '\"' + guard.name + '\"' : ''}:\\n${guard.toString()}\\n. If you are returning a value instead of calling \"next\", make sure to remove the \"next\" parameter from your function.`;\r\n if (typeof guardReturn === 'object' && 'then' in guardReturn) {\r\n guardCall = guardCall.then(resolvedValue => {\r\n // @ts-expect-error: _called is added at canOnlyBeCalledOnce\r\n if (!next._called) {\r\n warn(message);\r\n return Promise.reject(new Error('Invalid navigation guard'));\r\n }\r\n return resolvedValue;\r\n });\r\n // TODO: test me!\r\n }\r\n else if (guardReturn !== undefined) {\r\n // @ts-expect-error: _called is added at canOnlyBeCalledOnce\r\n if (!next._called) {\r\n warn(message);\r\n reject(new Error('Invalid navigation guard'));\r\n return;\r\n }\r\n }\r\n }\r\n guardCall.catch(err => reject(err));\r\n });\r\n}\r\nfunction canOnlyBeCalledOnce(next, to, from) {\r\n let called = 0;\r\n return function () {\r\n if (called++ === 1)\r\n warn(`The \"next\" callback was called more than once in one navigation guard when going from \"${from.fullPath}\" to \"${to.fullPath}\". It should be called exactly one time in each navigation guard. This will fail in production.`);\r\n // @ts-expect-error: we put it in the original one because it's easier to check\r\n next._called = true;\r\n if (called === 1)\r\n next.apply(null, arguments);\r\n };\r\n}\r\nfunction extractComponentsGuards(matched, guardType, to, from) {\r\n const guards = [];\r\n for (const record of matched) {\r\n for (const name in record.components) {\r\n let rawComponent = record.components[name];\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n if (!rawComponent ||\r\n (typeof rawComponent !== 'object' &&\r\n typeof rawComponent !== 'function')) {\r\n warn(`Component \"${name}\" in record with path \"${record.path}\" is not` +\r\n ` a valid component. Received \"${String(rawComponent)}\".`);\r\n // throw to ensure we stop here but warn to ensure the message isn't\r\n // missed by the user\r\n throw new Error('Invalid route component');\r\n }\r\n else if ('then' in rawComponent) {\r\n // warn if user wrote import('/component.vue') instead of () =>\r\n // import('./component.vue')\r\n warn(`Component \"${name}\" in record with path \"${record.path}\" is a ` +\r\n `Promise instead of a function that returns a Promise. Did you ` +\r\n `write \"import('./MyPage.vue')\" instead of ` +\r\n `\"() => import('./MyPage.vue')\" ? This will break in ` +\r\n `production if not fixed.`);\r\n const promise = rawComponent;\r\n rawComponent = () => promise;\r\n }\r\n else if (rawComponent.__asyncLoader &&\r\n // warn only once per component\r\n !rawComponent.__warnedDefineAsync) {\r\n rawComponent.__warnedDefineAsync = true;\r\n warn(`Component \"${name}\" in record with path \"${record.path}\" is defined ` +\r\n `using \"defineAsyncComponent()\". ` +\r\n `Write \"() => import('./MyPage.vue')\" instead of ` +\r\n `\"defineAsyncComponent(() => import('./MyPage.vue'))\".`);\r\n }\r\n }\r\n // skip update and leave guards if the route component is not mounted\r\n if (guardType !== 'beforeRouteEnter' && !record.instances[name])\r\n continue;\r\n if (isRouteComponent(rawComponent)) {\r\n // __vccOpts is added by vue-class-component and contain the regular options\r\n const options = rawComponent.__vccOpts || rawComponent;\r\n const guard = options[guardType];\r\n guard && guards.push(guardToPromiseFn(guard, to, from, record, name));\r\n }\r\n else {\r\n // start requesting the chunk already\r\n let componentPromise = rawComponent();\r\n if ((process.env.NODE_ENV !== 'production') && !('catch' in componentPromise)) {\r\n warn(`Component \"${name}\" in record with path \"${record.path}\" is a function that does not return a Promise. If you were passing a functional component, make sure to add a \"displayName\" to the component. This will break in production if not fixed.`);\r\n componentPromise = Promise.resolve(componentPromise);\r\n }\r\n guards.push(() => componentPromise.then(resolved => {\r\n if (!resolved)\r\n return Promise.reject(new Error(`Couldn't resolve component \"${name}\" at \"${record.path}\"`));\r\n const resolvedComponent = isESModule(resolved)\r\n ? resolved.default\r\n : resolved;\r\n // replace the function with the resolved component\r\n record.components[name] = resolvedComponent;\r\n // __vccOpts is added by vue-class-component and contain the regular options\r\n const options = resolvedComponent.__vccOpts || resolvedComponent;\r\n const guard = options[guardType];\r\n return guard && guardToPromiseFn(guard, to, from, record, name)();\r\n }));\r\n }\r\n }\r\n }\r\n return guards;\r\n}\r\n/**\r\n * Allows differentiating lazy components from functional components and vue-class-component\r\n *\r\n * @param component\r\n */\r\nfunction isRouteComponent(component) {\r\n return (typeof component === 'object' ||\r\n 'displayName' in component ||\r\n 'props' in component ||\r\n '__vccOpts' in component);\r\n}\n\n// TODO: we could allow currentRoute as a prop to expose `isActive` and\r\n// `isExactActive` behavior should go through an RFC\r\nfunction useLink(props) {\r\n const router = inject(routerKey);\r\n const currentRoute = inject(routeLocationKey);\r\n const route = computed(() => router.resolve(unref(props.to)));\r\n const activeRecordIndex = computed(() => {\r\n const { matched } = route.value;\r\n const { length } = matched;\r\n const routeMatched = matched[length - 1];\r\n const currentMatched = currentRoute.matched;\r\n if (!routeMatched || !currentMatched.length)\r\n return -1;\r\n const index = currentMatched.findIndex(isSameRouteRecord.bind(null, routeMatched));\r\n if (index > -1)\r\n return index;\r\n // possible parent record\r\n const parentRecordPath = getOriginalPath(matched[length - 2]);\r\n return (\r\n // we are dealing with nested routes\r\n length > 1 &&\r\n // if the parent and matched route have the same path, this link is\r\n // referring to the empty child. Or we currently are on a different\r\n // child of the same parent\r\n getOriginalPath(routeMatched) === parentRecordPath &&\r\n // avoid comparing the child with its parent\r\n currentMatched[currentMatched.length - 1].path !== parentRecordPath\r\n ? currentMatched.findIndex(isSameRouteRecord.bind(null, matched[length - 2]))\r\n : index);\r\n });\r\n const isActive = computed(() => activeRecordIndex.value > -1 &&\r\n includesParams(currentRoute.params, route.value.params));\r\n const isExactActive = computed(() => activeRecordIndex.value > -1 &&\r\n activeRecordIndex.value === currentRoute.matched.length - 1 &&\r\n isSameRouteLocationParams(currentRoute.params, route.value.params));\r\n function navigate(e = {}) {\r\n if (guardEvent(e)) {\r\n return router[unref(props.replace) ? 'replace' : 'push'](unref(props.to)\r\n // avoid uncaught errors are they are logged anyway\r\n ).catch(noop);\r\n }\r\n return Promise.resolve();\r\n }\r\n // devtools only\r\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) && isBrowser) {\r\n const instance = getCurrentInstance();\r\n if (instance) {\r\n const linkContextDevtools = {\r\n route: route.value,\r\n isActive: isActive.value,\r\n isExactActive: isExactActive.value,\r\n };\r\n // @ts-expect-error: this is internal\r\n instance.__vrl_devtools = instance.__vrl_devtools || [];\r\n // @ts-expect-error: this is internal\r\n instance.__vrl_devtools.push(linkContextDevtools);\r\n watchEffect(() => {\r\n linkContextDevtools.route = route.value;\r\n linkContextDevtools.isActive = isActive.value;\r\n linkContextDevtools.isExactActive = isExactActive.value;\r\n }, { flush: 'post' });\r\n }\r\n }\r\n return {\r\n route,\r\n href: computed(() => route.value.href),\r\n isActive,\r\n isExactActive,\r\n navigate,\r\n };\r\n}\r\nconst RouterLinkImpl = /*#__PURE__*/ defineComponent({\r\n name: 'RouterLink',\r\n compatConfig: { MODE: 3 },\r\n props: {\r\n to: {\r\n type: [String, Object],\r\n required: true,\r\n },\r\n replace: Boolean,\r\n activeClass: String,\r\n // inactiveClass: String,\r\n exactActiveClass: String,\r\n custom: Boolean,\r\n ariaCurrentValue: {\r\n type: String,\r\n default: 'page',\r\n },\r\n },\r\n useLink,\r\n setup(props, { slots }) {\r\n const link = reactive(useLink(props));\r\n const { options } = inject(routerKey);\r\n const elClass = computed(() => ({\r\n [getLinkClass(props.activeClass, options.linkActiveClass, 'router-link-active')]: link.isActive,\r\n // [getLinkClass(\r\n // props.inactiveClass,\r\n // options.linkInactiveClass,\r\n // 'router-link-inactive'\r\n // )]: !link.isExactActive,\r\n [getLinkClass(props.exactActiveClass, options.linkExactActiveClass, 'router-link-exact-active')]: link.isExactActive,\r\n }));\r\n return () => {\r\n const children = slots.default && slots.default(link);\r\n return props.custom\r\n ? children\r\n : h('a', {\r\n 'aria-current': link.isExactActive\r\n ? props.ariaCurrentValue\r\n : null,\r\n href: link.href,\r\n // this would override user added attrs but Vue will still add\r\n // the listener so we end up triggering both\r\n onClick: link.navigate,\r\n class: elClass.value,\r\n }, children);\r\n };\r\n },\r\n});\r\n// export the public type for h/tsx inference\r\n// also to avoid inline import() in generated d.ts files\r\n/**\r\n * Component to render a link that triggers a navigation on click.\r\n */\r\nconst RouterLink = RouterLinkImpl;\r\nfunction guardEvent(e) {\r\n // don't redirect with control keys\r\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey)\r\n return;\r\n // don't redirect when preventDefault called\r\n if (e.defaultPrevented)\r\n return;\r\n // don't redirect on right click\r\n if (e.button !== undefined && e.button !== 0)\r\n return;\r\n // don't redirect if `target=\"_blank\"`\r\n // @ts-expect-error getAttribute does exist\r\n if (e.currentTarget && e.currentTarget.getAttribute) {\r\n // @ts-expect-error getAttribute exists\r\n const target = e.currentTarget.getAttribute('target');\r\n if (/\\b_blank\\b/i.test(target))\r\n return;\r\n }\r\n // this may be a Weex event which doesn't have this method\r\n if (e.preventDefault)\r\n e.preventDefault();\r\n return true;\r\n}\r\nfunction includesParams(outer, inner) {\r\n for (const key in inner) {\r\n const innerValue = inner[key];\r\n const outerValue = outer[key];\r\n if (typeof innerValue === 'string') {\r\n if (innerValue !== outerValue)\r\n return false;\r\n }\r\n else {\r\n if (!Array.isArray(outerValue) ||\r\n outerValue.length !== innerValue.length ||\r\n innerValue.some((value, i) => value !== outerValue[i]))\r\n return false;\r\n }\r\n }\r\n return true;\r\n}\r\n/**\r\n * Get the original path value of a record by following its aliasOf\r\n * @param record\r\n */\r\nfunction getOriginalPath(record) {\r\n return record ? (record.aliasOf ? record.aliasOf.path : record.path) : '';\r\n}\r\n/**\r\n * Utility class to get the active class based on defaults.\r\n * @param propClass\r\n * @param globalClass\r\n * @param defaultClass\r\n */\r\nconst getLinkClass = (propClass, globalClass, defaultClass) => propClass != null\r\n ? propClass\r\n : globalClass != null\r\n ? globalClass\r\n : defaultClass;\n\nconst RouterViewImpl = /*#__PURE__*/ defineComponent({\r\n name: 'RouterView',\r\n // #674 we manually inherit them\r\n inheritAttrs: false,\r\n props: {\r\n name: {\r\n type: String,\r\n default: 'default',\r\n },\r\n route: Object,\r\n },\r\n // Better compat for @vue/compat users\r\n // https://github.com/vuejs/router/issues/1315\r\n compatConfig: { MODE: 3 },\r\n setup(props, { attrs, slots }) {\r\n (process.env.NODE_ENV !== 'production') && warnDeprecatedUsage();\r\n const injectedRoute = inject(routerViewLocationKey);\r\n const routeToDisplay = computed(() => props.route || injectedRoute.value);\r\n const depth = inject(viewDepthKey, 0);\r\n const matchedRouteRef = computed(() => routeToDisplay.value.matched[depth]);\r\n provide(viewDepthKey, depth + 1);\r\n provide(matchedRouteKey, matchedRouteRef);\r\n provide(routerViewLocationKey, routeToDisplay);\r\n const viewRef = ref();\r\n // watch at the same time the component instance, the route record we are\r\n // rendering, and the name\r\n watch(() => [viewRef.value, matchedRouteRef.value, props.name], ([instance, to, name], [oldInstance, from, oldName]) => {\r\n // copy reused instances\r\n if (to) {\r\n // this will update the instance for new instances as well as reused\r\n // instances when navigating to a new route\r\n to.instances[name] = instance;\r\n // the component instance is reused for a different route or name so\r\n // we copy any saved update or leave guards. With async setup, the\r\n // mounting component will mount before the matchedRoute changes,\r\n // making instance === oldInstance, so we check if guards have been\r\n // added before. This works because we remove guards when\r\n // unmounting/deactivating components\r\n if (from && from !== to && instance && instance === oldInstance) {\r\n if (!to.leaveGuards.size) {\r\n to.leaveGuards = from.leaveGuards;\r\n }\r\n if (!to.updateGuards.size) {\r\n to.updateGuards = from.updateGuards;\r\n }\r\n }\r\n }\r\n // trigger beforeRouteEnter next callbacks\r\n if (instance &&\r\n to &&\r\n // if there is no instance but to and from are the same this might be\r\n // the first visit\r\n (!from || !isSameRouteRecord(to, from) || !oldInstance)) {\r\n (to.enterCallbacks[name] || []).forEach(callback => callback(instance));\r\n }\r\n }, { flush: 'post' });\r\n return () => {\r\n const route = routeToDisplay.value;\r\n const matchedRoute = matchedRouteRef.value;\r\n const ViewComponent = matchedRoute && matchedRoute.components[props.name];\r\n // we need the value at the time we render because when we unmount, we\r\n // navigated to a different location so the value is different\r\n const currentName = props.name;\r\n if (!ViewComponent) {\r\n return normalizeSlot(slots.default, { Component: ViewComponent, route });\r\n }\r\n // props from route configuration\r\n const routePropsOption = matchedRoute.props[props.name];\r\n const routeProps = routePropsOption\r\n ? routePropsOption === true\r\n ? route.params\r\n : typeof routePropsOption === 'function'\r\n ? routePropsOption(route)\r\n : routePropsOption\r\n : null;\r\n const onVnodeUnmounted = vnode => {\r\n // remove the instance reference to prevent leak\r\n if (vnode.component.isUnmounted) {\r\n matchedRoute.instances[currentName] = null;\r\n }\r\n };\r\n const component = h(ViewComponent, assign({}, routeProps, attrs, {\r\n onVnodeUnmounted,\r\n ref: viewRef,\r\n }));\r\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) &&\r\n isBrowser &&\r\n component.ref) {\r\n // TODO: can display if it's an alias, its props\r\n const info = {\r\n depth,\r\n name: matchedRoute.name,\r\n path: matchedRoute.path,\r\n meta: matchedRoute.meta,\r\n };\r\n const internalInstances = Array.isArray(component.ref)\r\n ? component.ref.map(r => r.i)\r\n : [component.ref.i];\r\n internalInstances.forEach(instance => {\r\n // @ts-expect-error\r\n instance.__vrv_devtools = info;\r\n });\r\n }\r\n return (\r\n // pass the vnode to the slot as a prop.\r\n // h and both accept vnodes\r\n normalizeSlot(slots.default, { Component: component, route }) ||\r\n component);\r\n };\r\n },\r\n});\r\nfunction normalizeSlot(slot, data) {\r\n if (!slot)\r\n return null;\r\n const slotContent = slot(data);\r\n return slotContent.length === 1 ? slotContent[0] : slotContent;\r\n}\r\n// export the public type for h/tsx inference\r\n// also to avoid inline import() in generated d.ts files\r\n/**\r\n * Component to display the current route the user is at.\r\n */\r\nconst RouterView = RouterViewImpl;\r\n// warn against deprecated usage with & \r\n// due to functional component being no longer eager in Vue 3\r\nfunction warnDeprecatedUsage() {\r\n const instance = getCurrentInstance();\r\n const parentName = instance.parent && instance.parent.type.name;\r\n if (parentName &&\r\n (parentName === 'KeepAlive' || parentName.includes('Transition'))) {\r\n const comp = parentName === 'KeepAlive' ? 'keep-alive' : 'transition';\r\n warn(` can no longer be used directly inside or .\\n` +\r\n `Use slot props instead:\\n\\n` +\r\n `\\n` +\r\n ` <${comp}>\\n` +\r\n ` \\n` +\r\n ` \\n` +\r\n ``);\r\n }\r\n}\n\nfunction formatRouteLocation(routeLocation, tooltip) {\r\n const copy = assign({}, routeLocation, {\r\n // remove variables that can contain vue instances\r\n matched: routeLocation.matched.map(matched => omit(matched, ['instances', 'children', 'aliasOf'])),\r\n });\r\n return {\r\n _custom: {\r\n type: null,\r\n readOnly: true,\r\n display: routeLocation.fullPath,\r\n tooltip,\r\n value: copy,\r\n },\r\n };\r\n}\r\nfunction formatDisplay(display) {\r\n return {\r\n _custom: {\r\n display,\r\n },\r\n };\r\n}\r\n// to support multiple router instances\r\nlet routerId = 0;\r\nfunction addDevtools(app, router, matcher) {\r\n // Take over router.beforeEach and afterEach\r\n // make sure we are not registering the devtool twice\r\n if (router.__hasDevtools)\r\n return;\r\n router.__hasDevtools = true;\r\n // increment to support multiple router instances\r\n const id = routerId++;\r\n setupDevtoolsPlugin({\r\n id: 'org.vuejs.router' + (id ? '.' + id : ''),\r\n label: 'Vue Router',\r\n packageName: 'vue-router',\r\n homepage: 'https://router.vuejs.org',\r\n logo: 'https://router.vuejs.org/logo.png',\r\n componentStateTypes: ['Routing'],\r\n app,\r\n }, api => {\r\n // display state added by the router\r\n api.on.inspectComponent((payload, ctx) => {\r\n if (payload.instanceData) {\r\n payload.instanceData.state.push({\r\n type: 'Routing',\r\n key: '$route',\r\n editable: false,\r\n value: formatRouteLocation(router.currentRoute.value, 'Current Route'),\r\n });\r\n }\r\n });\r\n // mark router-link as active and display tags on router views\r\n api.on.visitComponentTree(({ treeNode: node, componentInstance }) => {\r\n if (componentInstance.__vrv_devtools) {\r\n const info = componentInstance.__vrv_devtools;\r\n node.tags.push({\r\n label: (info.name ? `${info.name.toString()}: ` : '') + info.path,\r\n textColor: 0,\r\n tooltip: 'This component is rendered by <router-view>',\r\n backgroundColor: PINK_500,\r\n });\r\n }\r\n // if multiple useLink are used\r\n if (Array.isArray(componentInstance.__vrl_devtools)) {\r\n componentInstance.__devtoolsApi = api;\r\n componentInstance.__vrl_devtools.forEach(devtoolsData => {\r\n let backgroundColor = ORANGE_400;\r\n let tooltip = '';\r\n if (devtoolsData.isExactActive) {\r\n backgroundColor = LIME_500;\r\n tooltip = 'This is exactly active';\r\n }\r\n else if (devtoolsData.isActive) {\r\n backgroundColor = BLUE_600;\r\n tooltip = 'This link is active';\r\n }\r\n node.tags.push({\r\n label: devtoolsData.route.path,\r\n textColor: 0,\r\n tooltip,\r\n backgroundColor,\r\n });\r\n });\r\n }\r\n });\r\n watch(router.currentRoute, () => {\r\n // refresh active state\r\n refreshRoutesView();\r\n api.notifyComponentUpdate();\r\n api.sendInspectorTree(routerInspectorId);\r\n api.sendInspectorState(routerInspectorId);\r\n });\r\n const navigationsLayerId = 'router:navigations:' + id;\r\n api.addTimelineLayer({\r\n id: navigationsLayerId,\r\n label: `Router${id ? ' ' + id : ''} Navigations`,\r\n color: 0x40a8c4,\r\n });\r\n // const errorsLayerId = 'router:errors'\r\n // api.addTimelineLayer({\r\n // id: errorsLayerId,\r\n // label: 'Router Errors',\r\n // color: 0xea5455,\r\n // })\r\n router.onError((error, to) => {\r\n api.addTimelineEvent({\r\n layerId: navigationsLayerId,\r\n event: {\r\n title: 'Error during Navigation',\r\n subtitle: to.fullPath,\r\n logType: 'error',\r\n time: api.now(),\r\n data: { error },\r\n groupId: to.meta.__navigationId,\r\n },\r\n });\r\n });\r\n // attached to `meta` and used to group events\r\n let navigationId = 0;\r\n router.beforeEach((to, from) => {\r\n const data = {\r\n guard: formatDisplay('beforeEach'),\r\n from: formatRouteLocation(from, 'Current Location during this navigation'),\r\n to: formatRouteLocation(to, 'Target location'),\r\n };\r\n // Used to group navigations together, hide from devtools\r\n Object.defineProperty(to.meta, '__navigationId', {\r\n value: navigationId++,\r\n });\r\n api.addTimelineEvent({\r\n layerId: navigationsLayerId,\r\n event: {\r\n time: api.now(),\r\n title: 'Start of navigation',\r\n subtitle: to.fullPath,\r\n data,\r\n groupId: to.meta.__navigationId,\r\n },\r\n });\r\n });\r\n router.afterEach((to, from, failure) => {\r\n const data = {\r\n guard: formatDisplay('afterEach'),\r\n };\r\n if (failure) {\r\n data.failure = {\r\n _custom: {\r\n type: Error,\r\n readOnly: true,\r\n display: failure ? failure.message : '',\r\n tooltip: 'Navigation Failure',\r\n value: failure,\r\n },\r\n };\r\n data.status = formatDisplay('❌');\r\n }\r\n else {\r\n data.status = formatDisplay('✅');\r\n }\r\n // we set here to have the right order\r\n data.from = formatRouteLocation(from, 'Current Location during this navigation');\r\n data.to = formatRouteLocation(to, 'Target location');\r\n api.addTimelineEvent({\r\n layerId: navigationsLayerId,\r\n event: {\r\n title: 'End of navigation',\r\n subtitle: to.fullPath,\r\n time: api.now(),\r\n data,\r\n logType: failure ? 'warning' : 'default',\r\n groupId: to.meta.__navigationId,\r\n },\r\n });\r\n });\r\n /**\r\n * Inspector of Existing routes\r\n */\r\n const routerInspectorId = 'router-inspector:' + id;\r\n api.addInspector({\r\n id: routerInspectorId,\r\n label: 'Routes' + (id ? ' ' + id : ''),\r\n icon: 'book',\r\n treeFilterPlaceholder: 'Search routes',\r\n });\r\n function refreshRoutesView() {\r\n // the routes view isn't active\r\n if (!activeRoutesPayload)\r\n return;\r\n const payload = activeRoutesPayload;\r\n // children routes will appear as nested\r\n let routes = matcher.getRoutes().filter(route => !route.parent);\r\n // reset match state to false\r\n routes.forEach(resetMatchStateOnRouteRecord);\r\n // apply a match state if there is a payload\r\n if (payload.filter) {\r\n routes = routes.filter(route => \r\n // save matches state based on the payload\r\n isRouteMatching(route, payload.filter.toLowerCase()));\r\n }\r\n // mark active routes\r\n routes.forEach(route => markRouteRecordActive(route, router.currentRoute.value));\r\n payload.rootNodes = routes.map(formatRouteRecordForInspector);\r\n }\r\n let activeRoutesPayload;\r\n api.on.getInspectorTree(payload => {\r\n activeRoutesPayload = payload;\r\n if (payload.app === app && payload.inspectorId === routerInspectorId) {\r\n refreshRoutesView();\r\n }\r\n });\r\n /**\r\n * Display information about the currently selected route record\r\n */\r\n api.on.getInspectorState(payload => {\r\n if (payload.app === app && payload.inspectorId === routerInspectorId) {\r\n const routes = matcher.getRoutes();\r\n const route = routes.find(route => route.record.__vd_id === payload.nodeId);\r\n if (route) {\r\n payload.state = {\r\n options: formatRouteRecordMatcherForStateInspector(route),\r\n };\r\n }\r\n }\r\n });\r\n api.sendInspectorTree(routerInspectorId);\r\n api.sendInspectorState(routerInspectorId);\r\n });\r\n}\r\nfunction modifierForKey(key) {\r\n if (key.optional) {\r\n return key.repeatable ? '*' : '?';\r\n }\r\n else {\r\n return key.repeatable ? '+' : '';\r\n }\r\n}\r\nfunction formatRouteRecordMatcherForStateInspector(route) {\r\n const { record } = route;\r\n const fields = [\r\n { editable: false, key: 'path', value: record.path },\r\n ];\r\n if (record.name != null) {\r\n fields.push({\r\n editable: false,\r\n key: 'name',\r\n value: record.name,\r\n });\r\n }\r\n fields.push({ editable: false, key: 'regexp', value: route.re });\r\n if (route.keys.length) {\r\n fields.push({\r\n editable: false,\r\n key: 'keys',\r\n value: {\r\n _custom: {\r\n type: null,\r\n readOnly: true,\r\n display: route.keys\r\n .map(key => `${key.name}${modifierForKey(key)}`)\r\n .join(' '),\r\n tooltip: 'Param keys',\r\n value: route.keys,\r\n },\r\n },\r\n });\r\n }\r\n if (record.redirect != null) {\r\n fields.push({\r\n editable: false,\r\n key: 'redirect',\r\n value: record.redirect,\r\n });\r\n }\r\n if (route.alias.length) {\r\n fields.push({\r\n editable: false,\r\n key: 'aliases',\r\n value: route.alias.map(alias => alias.record.path),\r\n });\r\n }\r\n fields.push({\r\n key: 'score',\r\n editable: false,\r\n value: {\r\n _custom: {\r\n type: null,\r\n readOnly: true,\r\n display: route.score.map(score => score.join(', ')).join(' | '),\r\n tooltip: 'Score used to sort routes',\r\n value: route.score,\r\n },\r\n },\r\n });\r\n return fields;\r\n}\r\n/**\r\n * Extracted from tailwind palette\r\n */\r\nconst PINK_500 = 0xec4899;\r\nconst BLUE_600 = 0x2563eb;\r\nconst LIME_500 = 0x84cc16;\r\nconst CYAN_400 = 0x22d3ee;\r\nconst ORANGE_400 = 0xfb923c;\r\n// const GRAY_100 = 0xf4f4f5\r\nconst DARK = 0x666666;\r\nfunction formatRouteRecordForInspector(route) {\r\n const tags = [];\r\n const { record } = route;\r\n if (record.name != null) {\r\n tags.push({\r\n label: String(record.name),\r\n textColor: 0,\r\n backgroundColor: CYAN_400,\r\n });\r\n }\r\n if (record.aliasOf) {\r\n tags.push({\r\n label: 'alias',\r\n textColor: 0,\r\n backgroundColor: ORANGE_400,\r\n });\r\n }\r\n if (route.__vd_match) {\r\n tags.push({\r\n label: 'matches',\r\n textColor: 0,\r\n backgroundColor: PINK_500,\r\n });\r\n }\r\n if (route.__vd_exactActive) {\r\n tags.push({\r\n label: 'exact',\r\n textColor: 0,\r\n backgroundColor: LIME_500,\r\n });\r\n }\r\n if (route.__vd_active) {\r\n tags.push({\r\n label: 'active',\r\n textColor: 0,\r\n backgroundColor: BLUE_600,\r\n });\r\n }\r\n if (record.redirect) {\r\n tags.push({\r\n label: 'redirect: ' +\r\n (typeof record.redirect === 'string' ? record.redirect : 'Object'),\r\n textColor: 0xffffff,\r\n backgroundColor: DARK,\r\n });\r\n }\r\n // add an id to be able to select it. Using the `path` is not possible because\r\n // empty path children would collide with their parents\r\n let id = record.__vd_id;\r\n if (id == null) {\r\n id = String(routeRecordId++);\r\n record.__vd_id = id;\r\n }\r\n return {\r\n id,\r\n label: record.path,\r\n tags,\r\n children: route.children.map(formatRouteRecordForInspector),\r\n };\r\n}\r\n// incremental id for route records and inspector state\r\nlet routeRecordId = 0;\r\nconst EXTRACT_REGEXP_RE = /^\\/(.*)\\/([a-z]*)$/;\r\nfunction markRouteRecordActive(route, currentRoute) {\r\n // no route will be active if matched is empty\r\n // reset the matching state\r\n const isExactActive = currentRoute.matched.length &&\r\n isSameRouteRecord(currentRoute.matched[currentRoute.matched.length - 1], route.record);\r\n route.__vd_exactActive = route.__vd_active = isExactActive;\r\n if (!isExactActive) {\r\n route.__vd_active = currentRoute.matched.some(match => isSameRouteRecord(match, route.record));\r\n }\r\n route.children.forEach(childRoute => markRouteRecordActive(childRoute, currentRoute));\r\n}\r\nfunction resetMatchStateOnRouteRecord(route) {\r\n route.__vd_match = false;\r\n route.children.forEach(resetMatchStateOnRouteRecord);\r\n}\r\nfunction isRouteMatching(route, filter) {\r\n const found = String(route.re).match(EXTRACT_REGEXP_RE);\r\n route.__vd_match = false;\r\n if (!found || found.length < 3) {\r\n return false;\r\n }\r\n // use a regexp without $ at the end to match nested routes better\r\n const nonEndingRE = new RegExp(found[1].replace(/\\$$/, ''), found[2]);\r\n if (nonEndingRE.test(filter)) {\r\n // mark children as matches\r\n route.children.forEach(child => isRouteMatching(child, filter));\r\n // exception case: `/`\r\n if (route.record.path !== '/' || filter === '/') {\r\n route.__vd_match = route.re.test(filter);\r\n return true;\r\n }\r\n // hide the / route\r\n return false;\r\n }\r\n const path = route.record.path.toLowerCase();\r\n const decodedPath = decode(path);\r\n // also allow partial matching on the path\r\n if (!filter.startsWith('/') &&\r\n (decodedPath.includes(filter) || path.includes(filter)))\r\n return true;\r\n if (decodedPath.startsWith(filter) || path.startsWith(filter))\r\n return true;\r\n if (route.record.name && String(route.record.name).includes(filter))\r\n return true;\r\n return route.children.some(child => isRouteMatching(child, filter));\r\n}\r\nfunction omit(obj, keys) {\r\n const ret = {};\r\n for (const key in obj) {\r\n if (!keys.includes(key)) {\r\n // @ts-expect-error\r\n ret[key] = obj[key];\r\n }\r\n }\r\n return ret;\r\n}\n\n/**\r\n * Creates a Router instance that can be used by a Vue app.\r\n *\r\n * @param options - {@link RouterOptions}\r\n */\r\nfunction createRouter(options) {\r\n const matcher = createRouterMatcher(options.routes, options);\r\n const parseQuery$1 = options.parseQuery || parseQuery;\r\n const stringifyQuery$1 = options.stringifyQuery || stringifyQuery;\r\n const routerHistory = options.history;\r\n if ((process.env.NODE_ENV !== 'production') && !routerHistory)\r\n throw new Error('Provide the \"history\" option when calling \"createRouter()\":' +\r\n ' https://next.router.vuejs.org/api/#history.');\r\n const beforeGuards = useCallbacks();\r\n const beforeResolveGuards = useCallbacks();\r\n const afterGuards = useCallbacks();\r\n const currentRoute = shallowRef(START_LOCATION_NORMALIZED);\r\n let pendingLocation = START_LOCATION_NORMALIZED;\r\n // leave the scrollRestoration if no scrollBehavior is provided\r\n if (isBrowser && options.scrollBehavior && 'scrollRestoration' in history) {\r\n history.scrollRestoration = 'manual';\r\n }\r\n const normalizeParams = applyToParams.bind(null, paramValue => '' + paramValue);\r\n const encodeParams = applyToParams.bind(null, encodeParam);\r\n const decodeParams = \r\n // @ts-expect-error: intentionally avoid the type check\r\n applyToParams.bind(null, decode);\r\n function addRoute(parentOrRoute, route) {\r\n let parent;\r\n let record;\r\n if (isRouteName(parentOrRoute)) {\r\n parent = matcher.getRecordMatcher(parentOrRoute);\r\n record = route;\r\n }\r\n else {\r\n record = parentOrRoute;\r\n }\r\n return matcher.addRoute(record, parent);\r\n }\r\n function removeRoute(name) {\r\n const recordMatcher = matcher.getRecordMatcher(name);\r\n if (recordMatcher) {\r\n matcher.removeRoute(recordMatcher);\r\n }\r\n else if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`Cannot remove non-existent route \"${String(name)}\"`);\r\n }\r\n }\r\n function getRoutes() {\r\n return matcher.getRoutes().map(routeMatcher => routeMatcher.record);\r\n }\r\n function hasRoute(name) {\r\n return !!matcher.getRecordMatcher(name);\r\n }\r\n function resolve(rawLocation, currentLocation) {\r\n // const objectLocation = routerLocationAsObject(rawLocation)\r\n // we create a copy to modify it later\r\n currentLocation = assign({}, currentLocation || currentRoute.value);\r\n if (typeof rawLocation === 'string') {\r\n const locationNormalized = parseURL(parseQuery$1, rawLocation, currentLocation.path);\r\n const matchedRoute = matcher.resolve({ path: locationNormalized.path }, currentLocation);\r\n const href = routerHistory.createHref(locationNormalized.fullPath);\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n if (href.startsWith('//'))\r\n warn(`Location \"${rawLocation}\" resolved to \"${href}\". A resolved location cannot start with multiple slashes.`);\r\n else if (!matchedRoute.matched.length) {\r\n warn(`No match found for location with path \"${rawLocation}\"`);\r\n }\r\n }\r\n // locationNormalized is always a new object\r\n return assign(locationNormalized, matchedRoute, {\r\n params: decodeParams(matchedRoute.params),\r\n hash: decode(locationNormalized.hash),\r\n redirectedFrom: undefined,\r\n href,\r\n });\r\n }\r\n let matcherLocation;\r\n // path could be relative in object as well\r\n if ('path' in rawLocation) {\r\n if ((process.env.NODE_ENV !== 'production') &&\r\n 'params' in rawLocation &&\r\n !('name' in rawLocation) &&\r\n // @ts-expect-error: the type is never\r\n Object.keys(rawLocation.params).length) {\r\n warn(`Path \"${\r\n // @ts-expect-error: the type is never\r\n rawLocation.path}\" was passed with params but they will be ignored. Use a named route alongside params instead.`);\r\n }\r\n matcherLocation = assign({}, rawLocation, {\r\n path: parseURL(parseQuery$1, rawLocation.path, currentLocation.path).path,\r\n });\r\n }\r\n else {\r\n // remove any nullish param\r\n const targetParams = assign({}, rawLocation.params);\r\n for (const key in targetParams) {\r\n if (targetParams[key] == null) {\r\n delete targetParams[key];\r\n }\r\n }\r\n // pass encoded values to the matcher so it can produce encoded path and fullPath\r\n matcherLocation = assign({}, rawLocation, {\r\n params: encodeParams(rawLocation.params),\r\n });\r\n // current location params are decoded, we need to encode them in case the\r\n // matcher merges the params\r\n currentLocation.params = encodeParams(currentLocation.params);\r\n }\r\n const matchedRoute = matcher.resolve(matcherLocation, currentLocation);\r\n const hash = rawLocation.hash || '';\r\n if ((process.env.NODE_ENV !== 'production') && hash && !hash.startsWith('#')) {\r\n warn(`A \\`hash\\` should always start with the character \"#\". Replace \"${hash}\" with \"#${hash}\".`);\r\n }\r\n // decoding them) the matcher might have merged current location params so\r\n // we need to run the decoding again\r\n matchedRoute.params = normalizeParams(decodeParams(matchedRoute.params));\r\n const fullPath = stringifyURL(stringifyQuery$1, assign({}, rawLocation, {\r\n hash: encodeHash(hash),\r\n path: matchedRoute.path,\r\n }));\r\n const href = routerHistory.createHref(fullPath);\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n if (href.startsWith('//')) {\r\n warn(`Location \"${rawLocation}\" resolved to \"${href}\". A resolved location cannot start with multiple slashes.`);\r\n }\r\n else if (!matchedRoute.matched.length) {\r\n warn(`No match found for location with path \"${'path' in rawLocation ? rawLocation.path : rawLocation}\"`);\r\n }\r\n }\r\n return assign({\r\n fullPath,\r\n // keep the hash encoded so fullPath is effectively path + encodedQuery +\r\n // hash\r\n hash,\r\n query: \r\n // if the user is using a custom query lib like qs, we might have\r\n // nested objects, so we keep the query as is, meaning it can contain\r\n // numbers at `$route.query`, but at the point, the user will have to\r\n // use their own type anyway.\r\n // https://github.com/vuejs/router/issues/328#issuecomment-649481567\r\n stringifyQuery$1 === stringifyQuery\r\n ? normalizeQuery(rawLocation.query)\r\n : (rawLocation.query || {}),\r\n }, matchedRoute, {\r\n redirectedFrom: undefined,\r\n href,\r\n });\r\n }\r\n function locationAsObject(to) {\r\n return typeof to === 'string'\r\n ? parseURL(parseQuery$1, to, currentRoute.value.path)\r\n : assign({}, to);\r\n }\r\n function checkCanceledNavigation(to, from) {\r\n if (pendingLocation !== to) {\r\n return createRouterError(8 /* NAVIGATION_CANCELLED */, {\r\n from,\r\n to,\r\n });\r\n }\r\n }\r\n function push(to) {\r\n return pushWithRedirect(to);\r\n }\r\n function replace(to) {\r\n return push(assign(locationAsObject(to), { replace: true }));\r\n }\r\n function handleRedirectRecord(to) {\r\n const lastMatched = to.matched[to.matched.length - 1];\r\n if (lastMatched && lastMatched.redirect) {\r\n const { redirect } = lastMatched;\r\n let newTargetLocation = typeof redirect === 'function' ? redirect(to) : redirect;\r\n if (typeof newTargetLocation === 'string') {\r\n newTargetLocation =\r\n newTargetLocation.includes('?') || newTargetLocation.includes('#')\r\n ? (newTargetLocation = locationAsObject(newTargetLocation))\r\n : // force empty params\r\n { path: newTargetLocation };\r\n // @ts-expect-error: force empty params when a string is passed to let\r\n // the router parse them again\r\n newTargetLocation.params = {};\r\n }\r\n if ((process.env.NODE_ENV !== 'production') &&\r\n !('path' in newTargetLocation) &&\r\n !('name' in newTargetLocation)) {\r\n warn(`Invalid redirect found:\\n${JSON.stringify(newTargetLocation, null, 2)}\\n when navigating to \"${to.fullPath}\". A redirect must contain a name or path. This will break in production.`);\r\n throw new Error('Invalid redirect');\r\n }\r\n return assign({\r\n query: to.query,\r\n hash: to.hash,\r\n params: to.params,\r\n }, newTargetLocation);\r\n }\r\n }\r\n function pushWithRedirect(to, redirectedFrom) {\r\n const targetLocation = (pendingLocation = resolve(to));\r\n const from = currentRoute.value;\r\n const data = to.state;\r\n const force = to.force;\r\n // to could be a string where `replace` is a function\r\n const replace = to.replace === true;\r\n const shouldRedirect = handleRedirectRecord(targetLocation);\r\n if (shouldRedirect)\r\n return pushWithRedirect(assign(locationAsObject(shouldRedirect), {\r\n state: data,\r\n force,\r\n replace,\r\n }), \r\n // keep original redirectedFrom if it exists\r\n redirectedFrom || targetLocation);\r\n // if it was a redirect we already called `pushWithRedirect` above\r\n const toLocation = targetLocation;\r\n toLocation.redirectedFrom = redirectedFrom;\r\n let failure;\r\n if (!force && isSameRouteLocation(stringifyQuery$1, from, targetLocation)) {\r\n failure = createRouterError(16 /* NAVIGATION_DUPLICATED */, { to: toLocation, from });\r\n // trigger scroll to allow scrolling to the same anchor\r\n handleScroll(from, from, \r\n // this is a push, the only way for it to be triggered from a\r\n // history.listen is with a redirect, which makes it become a push\r\n true, \r\n // This cannot be the first navigation because the initial location\r\n // cannot be manually navigated to\r\n false);\r\n }\r\n return (failure ? Promise.resolve(failure) : navigate(toLocation, from))\r\n .catch((error) => isNavigationFailure(error)\r\n ? // navigation redirects still mark the router as ready\r\n isNavigationFailure(error, 2 /* NAVIGATION_GUARD_REDIRECT */)\r\n ? error\r\n : markAsReady(error) // also returns the error\r\n : // reject any unknown error\r\n triggerError(error, toLocation, from))\r\n .then((failure) => {\r\n if (failure) {\r\n if (isNavigationFailure(failure, 2 /* NAVIGATION_GUARD_REDIRECT */)) {\r\n if ((process.env.NODE_ENV !== 'production') &&\r\n // we are redirecting to the same location we were already at\r\n isSameRouteLocation(stringifyQuery$1, resolve(failure.to), toLocation) &&\r\n // and we have done it a couple of times\r\n redirectedFrom &&\r\n // @ts-expect-error: added only in dev\r\n (redirectedFrom._count = redirectedFrom._count\r\n ? // @ts-expect-error\r\n redirectedFrom._count + 1\r\n : 1) > 10) {\r\n warn(`Detected an infinite redirection in a navigation guard when going from \"${from.fullPath}\" to \"${toLocation.fullPath}\". Aborting to avoid a Stack Overflow. This will break in production if not fixed.`);\r\n return Promise.reject(new Error('Infinite redirect in navigation guard'));\r\n }\r\n return pushWithRedirect(\r\n // keep options\r\n assign(locationAsObject(failure.to), {\r\n state: data,\r\n force,\r\n replace,\r\n }), \r\n // preserve the original redirectedFrom if any\r\n redirectedFrom || toLocation);\r\n }\r\n }\r\n else {\r\n // if we fail we don't finalize the navigation\r\n failure = finalizeNavigation(toLocation, from, true, replace, data);\r\n }\r\n triggerAfterEach(toLocation, from, failure);\r\n return failure;\r\n });\r\n }\r\n /**\r\n * Helper to reject and skip all navigation guards if a new navigation happened\r\n * @param to\r\n * @param from\r\n */\r\n function checkCanceledNavigationAndReject(to, from) {\r\n const error = checkCanceledNavigation(to, from);\r\n return error ? Promise.reject(error) : Promise.resolve();\r\n }\r\n // TODO: refactor the whole before guards by internally using router.beforeEach\r\n function navigate(to, from) {\r\n let guards;\r\n const [leavingRecords, updatingRecords, enteringRecords] = extractChangingRecords(to, from);\r\n // all components here have been resolved once because we are leaving\r\n guards = extractComponentsGuards(leavingRecords.reverse(), 'beforeRouteLeave', to, from);\r\n // leavingRecords is already reversed\r\n for (const record of leavingRecords) {\r\n record.leaveGuards.forEach(guard => {\r\n guards.push(guardToPromiseFn(guard, to, from));\r\n });\r\n }\r\n const canceledNavigationCheck = checkCanceledNavigationAndReject.bind(null, to, from);\r\n guards.push(canceledNavigationCheck);\r\n // run the queue of per route beforeRouteLeave guards\r\n return (runGuardQueue(guards)\r\n .then(() => {\r\n // check global guards beforeEach\r\n guards = [];\r\n for (const guard of beforeGuards.list()) {\r\n guards.push(guardToPromiseFn(guard, to, from));\r\n }\r\n guards.push(canceledNavigationCheck);\r\n return runGuardQueue(guards);\r\n })\r\n .then(() => {\r\n // check in components beforeRouteUpdate\r\n guards = extractComponentsGuards(updatingRecords, 'beforeRouteUpdate', to, from);\r\n for (const record of updatingRecords) {\r\n record.updateGuards.forEach(guard => {\r\n guards.push(guardToPromiseFn(guard, to, from));\r\n });\r\n }\r\n guards.push(canceledNavigationCheck);\r\n // run the queue of per route beforeEnter guards\r\n return runGuardQueue(guards);\r\n })\r\n .then(() => {\r\n // check the route beforeEnter\r\n guards = [];\r\n for (const record of to.matched) {\r\n // do not trigger beforeEnter on reused views\r\n if (record.beforeEnter && !from.matched.includes(record)) {\r\n if (Array.isArray(record.beforeEnter)) {\r\n for (const beforeEnter of record.beforeEnter)\r\n guards.push(guardToPromiseFn(beforeEnter, to, from));\r\n }\r\n else {\r\n guards.push(guardToPromiseFn(record.beforeEnter, to, from));\r\n }\r\n }\r\n }\r\n guards.push(canceledNavigationCheck);\r\n // run the queue of per route beforeEnter guards\r\n return runGuardQueue(guards);\r\n })\r\n .then(() => {\r\n // NOTE: at this point to.matched is normalized and does not contain any () => Promise\r\n // clear existing enterCallbacks, these are added by extractComponentsGuards\r\n to.matched.forEach(record => (record.enterCallbacks = {}));\r\n // check in-component beforeRouteEnter\r\n guards = extractComponentsGuards(enteringRecords, 'beforeRouteEnter', to, from);\r\n guards.push(canceledNavigationCheck);\r\n // run the queue of per route beforeEnter guards\r\n return runGuardQueue(guards);\r\n })\r\n .then(() => {\r\n // check global guards beforeResolve\r\n guards = [];\r\n for (const guard of beforeResolveGuards.list()) {\r\n guards.push(guardToPromiseFn(guard, to, from));\r\n }\r\n guards.push(canceledNavigationCheck);\r\n return runGuardQueue(guards);\r\n })\r\n // catch any navigation canceled\r\n .catch(err => isNavigationFailure(err, 8 /* NAVIGATION_CANCELLED */)\r\n ? err\r\n : Promise.reject(err)));\r\n }\r\n function triggerAfterEach(to, from, failure) {\r\n // navigation is confirmed, call afterGuards\r\n // TODO: wrap with error handlers\r\n for (const guard of afterGuards.list())\r\n guard(to, from, failure);\r\n }\r\n /**\r\n * - Cleans up any navigation guards\r\n * - Changes the url if necessary\r\n * - Calls the scrollBehavior\r\n */\r\n function finalizeNavigation(toLocation, from, isPush, replace, data) {\r\n // a more recent navigation took place\r\n const error = checkCanceledNavigation(toLocation, from);\r\n if (error)\r\n return error;\r\n // only consider as push if it's not the first navigation\r\n const isFirstNavigation = from === START_LOCATION_NORMALIZED;\r\n const state = !isBrowser ? {} : history.state;\r\n // change URL only if the user did a push/replace and if it's not the initial navigation because\r\n // it's just reflecting the url\r\n if (isPush) {\r\n // on the initial navigation, we want to reuse the scroll position from\r\n // history state if it exists\r\n if (replace || isFirstNavigation)\r\n routerHistory.replace(toLocation.fullPath, assign({\r\n scroll: isFirstNavigation && state && state.scroll,\r\n }, data));\r\n else\r\n routerHistory.push(toLocation.fullPath, data);\r\n }\r\n // accept current navigation\r\n currentRoute.value = toLocation;\r\n handleScroll(toLocation, from, isPush, isFirstNavigation);\r\n markAsReady();\r\n }\r\n let removeHistoryListener;\r\n // attach listener to history to trigger navigations\r\n function setupListeners() {\r\n // avoid setting up listeners twice due to an invalid first navigation\r\n if (removeHistoryListener)\r\n return;\r\n removeHistoryListener = routerHistory.listen((to, _from, info) => {\r\n // cannot be a redirect route because it was in history\r\n const toLocation = resolve(to);\r\n // due to dynamic routing, and to hash history with manual navigation\r\n // (manually changing the url or calling history.hash = '#/somewhere'),\r\n // there could be a redirect record in history\r\n const shouldRedirect = handleRedirectRecord(toLocation);\r\n if (shouldRedirect) {\r\n pushWithRedirect(assign(shouldRedirect, { replace: true }), toLocation).catch(noop);\r\n return;\r\n }\r\n pendingLocation = toLocation;\r\n const from = currentRoute.value;\r\n // TODO: should be moved to web history?\r\n if (isBrowser) {\r\n saveScrollPosition(getScrollKey(from.fullPath, info.delta), computeScrollPosition());\r\n }\r\n navigate(toLocation, from)\r\n .catch((error) => {\r\n if (isNavigationFailure(error, 4 /* NAVIGATION_ABORTED */ | 8 /* NAVIGATION_CANCELLED */)) {\r\n return error;\r\n }\r\n if (isNavigationFailure(error, 2 /* NAVIGATION_GUARD_REDIRECT */)) {\r\n // Here we could call if (info.delta) routerHistory.go(-info.delta,\r\n // false) but this is bug prone as we have no way to wait the\r\n // navigation to be finished before calling pushWithRedirect. Using\r\n // a setTimeout of 16ms seems to work but there is not guarantee for\r\n // it to work on every browser. So Instead we do not restore the\r\n // history entry and trigger a new navigation as requested by the\r\n // navigation guard.\r\n // the error is already handled by router.push we just want to avoid\r\n // logging the error\r\n pushWithRedirect(error.to, toLocation\r\n // avoid an uncaught rejection, let push call triggerError\r\n )\r\n .then(failure => {\r\n // manual change in hash history #916 ending up in the URL not\r\n // changing but it was changed by the manual url change, so we\r\n // need to manually change it ourselves\r\n if (isNavigationFailure(failure, 4 /* NAVIGATION_ABORTED */ |\r\n 16 /* NAVIGATION_DUPLICATED */) &&\r\n !info.delta &&\r\n info.type === NavigationType.pop) {\r\n routerHistory.go(-1, false);\r\n }\r\n })\r\n .catch(noop);\r\n // avoid the then branch\r\n return Promise.reject();\r\n }\r\n // do not restore history on unknown direction\r\n if (info.delta)\r\n routerHistory.go(-info.delta, false);\r\n // unrecognized error, transfer to the global handler\r\n return triggerError(error, toLocation, from);\r\n })\r\n .then((failure) => {\r\n failure =\r\n failure ||\r\n finalizeNavigation(\r\n // after navigation, all matched components are resolved\r\n toLocation, from, false);\r\n // revert the navigation\r\n if (failure) {\r\n if (info.delta) {\r\n routerHistory.go(-info.delta, false);\r\n }\r\n else if (info.type === NavigationType.pop &&\r\n isNavigationFailure(failure, 4 /* NAVIGATION_ABORTED */ | 16 /* NAVIGATION_DUPLICATED */)) {\r\n // manual change in hash history #916\r\n // it's like a push but lacks the information of the direction\r\n routerHistory.go(-1, false);\r\n }\r\n }\r\n triggerAfterEach(toLocation, from, failure);\r\n })\r\n .catch(noop);\r\n });\r\n }\r\n // Initialization and Errors\r\n let readyHandlers = useCallbacks();\r\n let errorHandlers = useCallbacks();\r\n let ready;\r\n /**\r\n * Trigger errorHandlers added via onError and throws the error as well\r\n *\r\n * @param error - error to throw\r\n * @param to - location we were navigating to when the error happened\r\n * @param from - location we were navigating from when the error happened\r\n * @returns the error as a rejected promise\r\n */\r\n function triggerError(error, to, from) {\r\n markAsReady(error);\r\n const list = errorHandlers.list();\r\n if (list.length) {\r\n list.forEach(handler => handler(error, to, from));\r\n }\r\n else {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n warn('uncaught error during route navigation:');\r\n }\r\n console.error(error);\r\n }\r\n return Promise.reject(error);\r\n }\r\n function isReady() {\r\n if (ready && currentRoute.value !== START_LOCATION_NORMALIZED)\r\n return Promise.resolve();\r\n return new Promise((resolve, reject) => {\r\n readyHandlers.add([resolve, reject]);\r\n });\r\n }\r\n function markAsReady(err) {\r\n if (!ready) {\r\n // still not ready if an error happened\r\n ready = !err;\r\n setupListeners();\r\n readyHandlers\r\n .list()\r\n .forEach(([resolve, reject]) => (err ? reject(err) : resolve()));\r\n readyHandlers.reset();\r\n }\r\n return err;\r\n }\r\n // Scroll behavior\r\n function handleScroll(to, from, isPush, isFirstNavigation) {\r\n const { scrollBehavior } = options;\r\n if (!isBrowser || !scrollBehavior)\r\n return Promise.resolve();\r\n const scrollPosition = (!isPush && getSavedScrollPosition(getScrollKey(to.fullPath, 0))) ||\r\n ((isFirstNavigation || !isPush) &&\r\n history.state &&\r\n history.state.scroll) ||\r\n null;\r\n return nextTick()\r\n .then(() => scrollBehavior(to, from, scrollPosition))\r\n .then(position => position && scrollToPosition(position))\r\n .catch(err => triggerError(err, to, from));\r\n }\r\n const go = (delta) => routerHistory.go(delta);\r\n let started;\r\n const installedApps = new Set();\r\n const router = {\r\n currentRoute,\r\n addRoute,\r\n removeRoute,\r\n hasRoute,\r\n getRoutes,\r\n resolve,\r\n options,\r\n push,\r\n replace,\r\n go,\r\n back: () => go(-1),\r\n forward: () => go(1),\r\n beforeEach: beforeGuards.add,\r\n beforeResolve: beforeResolveGuards.add,\r\n afterEach: afterGuards.add,\r\n onError: errorHandlers.add,\r\n isReady,\r\n install(app) {\r\n const router = this;\r\n app.component('RouterLink', RouterLink);\r\n app.component('RouterView', RouterView);\r\n app.config.globalProperties.$router = router;\r\n Object.defineProperty(app.config.globalProperties, '$route', {\r\n enumerable: true,\r\n get: () => unref(currentRoute),\r\n });\r\n // this initial navigation is only necessary on client, on server it doesn't\r\n // make sense because it will create an extra unnecessary navigation and could\r\n // lead to problems\r\n if (isBrowser &&\r\n // used for the initial navigation client side to avoid pushing\r\n // multiple times when the router is used in multiple apps\r\n !started &&\r\n currentRoute.value === START_LOCATION_NORMALIZED) {\r\n // see above\r\n started = true;\r\n push(routerHistory.location).catch(err => {\r\n if ((process.env.NODE_ENV !== 'production'))\r\n warn('Unexpected error when starting the router:', err);\r\n });\r\n }\r\n const reactiveRoute = {};\r\n for (const key in START_LOCATION_NORMALIZED) {\r\n // @ts-expect-error: the key matches\r\n reactiveRoute[key] = computed(() => currentRoute.value[key]);\r\n }\r\n app.provide(routerKey, router);\r\n app.provide(routeLocationKey, reactive(reactiveRoute));\r\n app.provide(routerViewLocationKey, currentRoute);\r\n const unmountApp = app.unmount;\r\n installedApps.add(app);\r\n app.unmount = function () {\r\n installedApps.delete(app);\r\n // the router is not attached to an app anymore\r\n if (installedApps.size < 1) {\r\n // invalidate the current navigation\r\n pendingLocation = START_LOCATION_NORMALIZED;\r\n removeHistoryListener && removeHistoryListener();\r\n removeHistoryListener = null;\r\n currentRoute.value = START_LOCATION_NORMALIZED;\r\n started = false;\r\n ready = false;\r\n }\r\n unmountApp();\r\n };\r\n if (((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) && isBrowser) {\r\n addDevtools(app, router, matcher);\r\n }\r\n },\r\n };\r\n return router;\r\n}\r\nfunction runGuardQueue(guards) {\r\n return guards.reduce((promise, guard) => promise.then(() => guard()), Promise.resolve());\r\n}\r\nfunction extractChangingRecords(to, from) {\r\n const leavingRecords = [];\r\n const updatingRecords = [];\r\n const enteringRecords = [];\r\n const len = Math.max(from.matched.length, to.matched.length);\r\n for (let i = 0; i < len; i++) {\r\n const recordFrom = from.matched[i];\r\n if (recordFrom) {\r\n if (to.matched.find(record => isSameRouteRecord(record, recordFrom)))\r\n updatingRecords.push(recordFrom);\r\n else\r\n leavingRecords.push(recordFrom);\r\n }\r\n const recordTo = to.matched[i];\r\n if (recordTo) {\r\n // the type doesn't matter because we are comparing per reference\r\n if (!from.matched.find(record => isSameRouteRecord(record, recordTo))) {\r\n enteringRecords.push(recordTo);\r\n }\r\n }\r\n }\r\n return [leavingRecords, updatingRecords, enteringRecords];\r\n}\n\n/**\r\n * Returns the router instance. Equivalent to using `$router` inside\r\n * templates.\r\n */\r\nfunction useRouter() {\r\n return inject(routerKey);\r\n}\r\n/**\r\n * Returns the current route location. Equivalent to using `$route` inside\r\n * templates.\r\n */\r\nfunction useRoute() {\r\n return inject(routeLocationKey);\r\n}\n\nexport { NavigationFailureType, RouterLink, RouterView, START_LOCATION_NORMALIZED as START_LOCATION, createMemoryHistory, createRouter, createRouterMatcher, createWebHashHistory, createWebHistory, isNavigationFailure, matchedRouteKey, onBeforeRouteLeave, onBeforeRouteUpdate, parseQuery, routeLocationKey, routerKey, routerViewLocationKey, stringifyQuery, useLink, useRoute, useRouter, viewDepthKey };\n"],"names":[],"mappings":"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"}