@real-router/validation-plugin 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.d.ts +6 -4
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.d.mts +6 -4
- package/dist/esm/index.mjs +2 -1
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/validators/options.ts +1 -0
- package/dist/cjs/metafile-cjs.json +0 -1
- package/dist/esm/metafile-esm.json +0 -1
package/dist/esm/index.d.mts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import { PluginFactory } from
|
|
2
|
-
|
|
1
|
+
import { PluginFactory } from "@real-router/core";
|
|
2
|
+
import { RouterValidator } from "@real-router/core/validation";
|
|
3
3
|
|
|
4
|
+
//#region src/validationPlugin.d.ts
|
|
4
5
|
declare function validationPlugin(): PluginFactory;
|
|
5
|
-
|
|
6
|
-
export { validationPlugin };
|
|
6
|
+
//#endregion
|
|
7
|
+
export { type RouterValidator, validationPlugin };
|
|
8
|
+
//# sourceMappingURL=index.d.mts.map
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
import{RouterError as e,resolveForwardChain as t}from"@real-router/core";import{getInternals as r}from"@real-router/core/validation";import{logger as o}from"@real-router/logger";var n=["replace","reload","force","forceDeactivate","redirected"],a=/\S/,i=/^[A-Z_a-z][\w-]*(?:\.[A-Z_a-z][\w-]*)*$/;function c(e,t){return new TypeError(`[router.${e}] ${t}`)}function s(e,t=new WeakSet){if(null==e)return!0;const r=typeof e;if("string"===r||"boolean"===r)return!0;if("number"===r)return Number.isFinite(e);if("function"===r||"symbol"===r)return!1;if(Array.isArray(e))return!t.has(e)&&(t.add(e),e.every(e=>s(e,t)));if("object"===r){if(t.has(e))return!1;t.add(e);const r=Object.getPrototypeOf(e);return(null===r||r===Object.prototype)&&Object.values(e).every(e=>s(e,t))}return!1}function u(e){if(null==e)return!0;const t=typeof e;return"string"===t||"boolean"===t||"number"===t&&Number.isFinite(e)}function f(e){if("object"!=typeof e||null===e||Array.isArray(e))return!1;const t=Object.getPrototypeOf(e);if(null!==t&&t!==Object.prototype)return!1;let r=!1;for(const t in e){if(!Object.hasOwn(e,t))continue;const o=e[t];if(!u(o)){const e=typeof o;if("function"===e||"symbol"===e)return!1;r=!0;break}}return!r||s(e)}function d(e){return"object"==typeof e&&null!==e&&function(e){return function(e){return"string"==typeof e&&(""===e||!(e.length>1e4)&&(!!e.startsWith("@@")||i.test(e)))}(e.name)&&"string"==typeof e.path&&f(e.params)}(e)}function l(e){return"string"==typeof e}function p(e){return"boolean"==typeof e}function w(e,t){return e in t}function y(e,t){if("string"!=typeof e)throw c(t,"Route name must be a string, got "+typeof e);if(""!==e){if(!a.test(e))throw c(t,"Route name cannot contain only whitespace");if(e.length>1e4)throw c(t,"Route name exceeds maximum length of 10000 characters. This is a technical safety limit.");if(!e.startsWith("@@")&&!i.test(e))throw c(t,`Invalid route name "${e}". Each segment must start with a letter or underscore, followed by letters, numbers, underscores, or hyphens. Segments are separated by dots (e.g., "users.profile").`)}}function m(e){return null===e?"null":Array.isArray(e)?`array[${e.length}]`:"object"==typeof e?"constructor"in e&&"Object"!==e.constructor.name?e.constructor.name:"object":typeof e}function h(e){return{warn:Math.floor(.2*e),error:Math.floor(.5*e)}}function g(e,t){if("string"!=typeof e)throw new TypeError(`[router.${t}] dependency name must be a string, got ${typeof e}`)}function v(e,t){if(!e||"object"!=typeof e||e.constructor!==Object)throw new TypeError(`[router.${t}] Invalid argument: expected plain object, received ${m(e)}`);for(const r in e)if(Object.getOwnPropertyDescriptor(e,r)?.get)throw new TypeError(`[router.${t}] Getters not allowed: "${r}"`)}function $(e,t){const r=e,n=r.limits?.maxDependencies??100;if(0===n)return;const a=Object.keys(r.dependencies).length,{warn:i,error:c}=h(n);if(a>=n)throw new RangeError(`[router.${t}] Dependency limit exceeded (${n}). Current: ${a}.`);a===c?o.error(`router.${t}`,`${a} dependencies registered! This indicates architectural problems. Hard limit at ${n}.`):a===i&&o.warn(`router.${t}`,`${a} dependencies registered. Consider if all are necessary.`)}function b(e){if(void 0!==e){if(!e||"object"!=typeof e||e.constructor!==Object)throw new TypeError("[cloneRouter] Invalid dependencies: expected plain object or undefined, received "+typeof e);for(const t in e)if(Object.getOwnPropertyDescriptor(e,t)?.get)throw new TypeError(`[cloneRouter] Getters not allowed in dependencies: "${t}"`)}}function E(e,t){o.warn(`router.${t}`,"Router dependency already exists and is being overwritten:",e)}function T(e,t){o.warn(`router.${t}`,"Overwritten:",e.join(", "))}function P(e){o.warn("router.removeDependency",`Attempted to remove non-existent dependency: "${"string"==typeof e?e:String(e)}"`)}var j=new Set(["$start","$stop","$$start","$$cancel","$$success","$$error"]);function R(e){if(!j.has(e))throw new TypeError(`[router.addEventListener] Invalid event name: ${String(e)}. Must be one of: $start, $stop, $$start, $$cancel, $$success, $$error`)}function A(e,t){if(!p(e)&&"function"!=typeof e)throw new TypeError(`[router.${t}] Handler must be a boolean or factory function, got ${m(e)}`)}function x(e,t,r){o.warn(`router.${r}`,`Overwriting existing ${t} handler for route "${e}"`)}function S(e,t){o.warn(`router.${t}`,`Guard for "${e}" returned a Promise. Sync check cannot resolve async guards — returning false.`)}function O(e){if("string"!=typeof e)throw new TypeError(`[router.navigate] Invalid route name: expected string, got ${m(e)}`)}function I(e){if(void 0!==e&&("object"!=typeof e||null===e))throw new TypeError(`[router.navigateToDefault] Invalid options: ${m(e)}. Expected NavigationOptions object.`)}function D(e,t){if(!function(e){if("object"!=typeof e||null===e||Array.isArray(e))return!1;const t=e;for(const e of n){const r=t[e];if(void 0!==r&&"boolean"!=typeof r)return!1}const r=t.signal;return!(void 0!==r&&!(r instanceof AbortSignal))}(e))throw new TypeError(`[router.${t}] Invalid options: ${m(e)}. Expected NavigationOptions object.`)}function k(e,t){if(void 0!==e&&!f(e))throw new TypeError(`[router.${t}] params must be a plain object, got ${m(e)}`)}function M(e){if(void 0!==e&&"string"!=typeof e)throw new TypeError(`[router.start] path must be a string, got ${m(e)}.`);if("string"==typeof e&&""!==e&&!e.startsWith("/"))throw new TypeError(`[router.start] path must start with "/", got "${e}".`)}var N=["strict","never","always","preserve"],L=["default","strict","loose"],F=["default","uri","uriComponent","none"],C={arrayFormat:["none","brackets","index","comma"],booleanFormat:["none","string","empty-true"],nullFormat:["default","hidden"]},q=["all","warn-error","error-only","none"],_=new Set(["defaultRoute","defaultParams","trailingSlash","queryParamsMode","queryParams","urlParamsEncoding","allowNotFound","rewritePathOnMatch","logger","limits"]),B={maxDependencies:{min:0,max:1e4},maxPlugins:{min:0,max:1e3},maxListeners:{min:0,max:1e5},warnListeners:{min:0,max:1e5},maxEventDepth:{min:0,max:100},maxLifecycleHandlers:{min:0,max:1e4}};function H(e,t,r){if("number"!=typeof t||!Number.isInteger(t))throw new TypeError(`[router.${r}] limit "${e}" must be an integer, got ${String(t)}`);const o=B[e];if(t<o.min||t>o.max)throw new RangeError(`[router.${r}] limit "${e}" must be between ${o.min} and ${o.max}, got ${t}`)}function U(e,t){if(!e||"object"!=typeof e||e.constructor!==Object)throw new TypeError(`[router.${t}] invalid limits: expected plain object, got ${typeof e}`);for(const[r,o]of Object.entries(e)){if(!Object.hasOwn(B,r))throw new TypeError(`[router.${t}] unknown limit: "${r}"`);void 0!==o&&H(r,o,t)}}function W(e,t,r,o){if(void 0!==e&&("string"!=typeof e||!r.includes(e))){const n=r.map(e=>`"${e}"`).join(", ");throw new TypeError(`[router.${o}] Invalid "${t}": "${"string"==typeof e?e:`(${typeof e})`}". Must be one of: ${n}`)}}function G(e,t){if(!e||"object"!=typeof e||Array.isArray(e))throw new TypeError(`[router.${t}] Invalid options: expected plain object`);const r=e;for(const e of Object.keys(r))if(!_.has(e))throw new TypeError(`[router.${t}] Unknown option: "${e}"`);if(function(e,t){if(void 0!==e&&"string"!=typeof e&&"function"!=typeof e)throw new TypeError(`[router.${t}] Invalid "defaultRoute": expected string or function, got ${typeof e}`)}(r.defaultRoute,t),function(e,t){if(void 0!==e&&"function"!=typeof e&&(!e||"object"!=typeof e||Array.isArray(e)||e.constructor!==Object))throw new TypeError(`[router.${t}] Invalid "defaultParams": expected plain object or function, got ${typeof e}`)}(r.defaultParams,t),W(r.trailingSlash,"trailingSlash",N,t),W(r.queryParamsMode,"queryParamsMode",L,t),W(r.urlParamsEncoding,"urlParamsEncoding",F,t),void 0!==r.allowNotFound&&"boolean"!=typeof r.allowNotFound)throw new TypeError(`[router.${t}] Invalid "allowNotFound": expected boolean, got ${typeof r.allowNotFound}`);if(void 0!==r.rewritePathOnMatch&&"boolean"!=typeof r.rewritePathOnMatch)throw new TypeError(`[router.${t}] Invalid "rewritePathOnMatch": expected boolean, got ${typeof r.rewritePathOnMatch}`);!function(e,t){if(void 0===e)return;if(!e||"object"!=typeof e||Array.isArray(e))throw new TypeError(`[router.${t}] Invalid "queryParams": expected plain object`);const r=e;for(const e of Object.keys(r)){if(!w(e,C))throw new TypeError(`[router.${t}] Invalid "queryParams.${e}": unknown option`);W(r[e],`queryParams.${e}`,C[e],t)}}(r.queryParams,t),function(e,t){if(void 0===e)return;if(!e||"object"!=typeof e||Array.isArray(e))throw new TypeError(`[router.${t}] Invalid "logger": expected plain object`);const r=e;if(void 0!==r.level&&!q.includes(r.level)){const e=q.map(e=>`"${e}"`).join(", ");throw new TypeError(`[router.${t}] Invalid "logger.level": "${"string"==typeof r.level?r.level:`(${typeof r.level})`}". Must be one of: ${e}`)}if(void 0!==r.callback&&"function"!=typeof r.callback)throw new TypeError(`[router.${t}] Invalid "logger.callback": expected function`);if(void 0!==r.callbackIgnoresLevel&&"boolean"!=typeof r.callbackIgnoresLevel)throw new TypeError(`[router.${t}] Invalid "logger.callbackIgnoresLevel": expected boolean`)}(r.logger,t),void 0!==r.limits&&U(r.limits,t)}var z="router.usePlugin",Z={onStart:!0,onStop:!0,onTransitionStart:!0,onTransitionSuccess:!0,onTransitionError:!0,onTransitionCancel:!0};function Q(e){for(const t in e)if("teardown"!==t&&!(t in Z))throw new TypeError(`[router.usePlugin] Unknown property '${t}'. Plugin must only contain event handlers and optional teardown.`)}function V(){o.warn(z,"Duplicate factory in batch, will be registered once")}function K(e){o.warn(z,`Property '${e}' is not a function, skipping`)}function J(e){"onStart"===e&&o.warn(z,"Router already started, onStart will not be called")}function X(e,t){const r=["start","buildPath","forwardState"];if("string"!=typeof e||!r.includes(e))throw new TypeError(`[router.addInterceptor] Invalid method: "${String(e)}". Must be one of: ${r.join(", ")}`);if("function"!=typeof t)throw new TypeError("[router.addInterceptor] interceptor must be a function, got "+typeof t)}function Y(e,t){if(!e||"object"!=typeof e)throw new TypeError(`[validation-plugin] ${t}: store must be an object`);const r=e;if(!Array.isArray(r.definitions))throw new TypeError(`[validation-plugin] ${t}: store.definitions must be an array`);if(!r.config||"object"!=typeof r.config)throw new TypeError(`[validation-plugin] ${t}: store.config must be an object`);if(!r.tree||"object"!=typeof r.tree)throw new TypeError(`[validation-plugin] ${t}: store.tree must be an object`);return r}function ee(e,t,r=""){for(const o of e){const e=r?`${r}.${o.name}`:o.name;t(o,e),o.children&&ee(o.children,t,e)}}function te(e,t){const r=t.split(".");let o=e;for(const e of r)if(o=o.children.get(e),!o)return!1;return!0}function re(e,r){try{return t(e,r)}catch(e){throw new Error(`[validation-plugin] ${e.message}`,{cause:e})}}function oe(e){const t=new Set;for(const r of e){for(const e of r.paramMeta.urlParams)t.add(e);for(const e of r.paramMeta.spatParams)t.add(e)}return t}function ne(e,t,r){if("AsyncFunction"===e.constructor.name||e.toString().includes("__awaiter"))throw new TypeError(`[validation-plugin] Route "${r}" ${t} cannot be async`)}function ae(e){const t=Y(e,"validateExistingRoutes"),r=new Set;ee(t.definitions,(e,t)=>{if("string"!=typeof e.name||!e.name)throw new TypeError(`[validation-plugin] validateExistingRoutes: route has invalid name: ${e.name}`);if("string"!=typeof e.path)throw new TypeError(`[validation-plugin] validateExistingRoutes: route "${t}" has non-string path (${typeof e.path})`);if(r.has(t))throw new Error(`[validation-plugin] validateExistingRoutes: duplicate route name detected: "${t}"`);r.add(t)})}function ie(e){const t=Y(e,"validateForwardToConsistency"),{config:r,tree:o,matcher:n}=t;for(const[e,t]of Object.entries(r.forwardMap)){if(!te(o,t))throw new Error(`[validation-plugin] validateForwardToConsistency: forwardTo target "${t}" does not exist in tree (source route: "${e}")`);const r=n.getSegmentsByName(e),a=n.getSegmentsByName(t);if(r&&a){const o=oe(r),n=[...oe(a)].filter(e=>!o.has(e));if(n.length>0)throw new Error(`[validation-plugin] validateForwardToConsistency: forwardTo target "${t}" requires params [${n.join(", ")}] not available in source route "${e}"`)}}for(const e of Object.keys(r.forwardMap))re(e,r.forwardMap)}function ce(e){if(!e||"object"!=typeof e)throw new TypeError("[validation-plugin] validateDependenciesStructure: deps must be an object");const t=e;if(!t.dependencies||"object"!=typeof t.dependencies)throw new TypeError("[validation-plugin] validateDependenciesStructure: deps.dependencies must be an object");const r=t.dependencies;for(const e of Object.keys(r))if(Object.getOwnPropertyDescriptor(r,e)?.get)throw new TypeError(`[validation-plugin] validateDependenciesStructure: dependency "${e}" must not use a getter`);if(!t.limits||"object"!=typeof t.limits)throw new TypeError("[validation-plugin] validateDependenciesStructure: deps.limits must be an object");const o=t.limits,n=["maxDependencies","maxPlugins","maxListeners","warnListeners","maxEventDepth","maxLifecycleHandlers"];for(const e of n)if("number"!=typeof o[e])throw new TypeError(`[validation-plugin] validateDependenciesStructure: deps.limits.${e} must be a number, got ${typeof o[e]}`)}function se(e,t){return new TypeError(`[router.${e}] ${t}`)}var ue=/^[A-Z_a-z][\w-]*$/,fe=/\S/;function de(e){return null===e?"null":"object"==typeof e?"constructor"in e&&"Object"!==e.constructor.name?e.constructor.name:"object":typeof e}function le(e,t){if(!t.includes("."))return e.children.get(t);let r=e;for(const e of t.split("."))if(r=r.children.get(e),!r)return;return r}function pe(e,t,r,o="",n,a){!function(e,t){if(!e||"object"!=typeof e)throw new TypeError(`[router.${t}] Route must be an object, got ${de(e)}`);const r=Object.getPrototypeOf(e);if(r!==Object.prototype&&null!==r)throw new TypeError(`[router.${t}] Route must be a plain object, got ${de(e)}`);if(function(e){for(const t of Object.keys(e)){const r=Object.getOwnPropertyDescriptor(e,t);if(r&&(r.get||r.set))return!0}return!1}(e))throw new TypeError(`[router.${t}] Route must not have getters or setters`)}(e,t);const i=e;!function(e,t){if("string"!=typeof e.name)throw new TypeError(`[router.${t}] Route name must be a string, got ${de(e.name)}`);const r=e.name;if(""===r)throw new TypeError(`[router.${t}] Route name cannot be empty`);if(!fe.test(r))throw new TypeError(`[router.${t}] Route name cannot contain only whitespace`);if(r.length>1e4)throw new TypeError(`[router.${t}] Route name exceeds maximum length of 10000 characters`);if(!r.startsWith("@@")){if(r.includes("."))throw new TypeError(`[router.${t}] Route name "${r}" cannot contain dots. Use children array or { parent } option in addRoute() instead.`);if(!ue.test(r))throw new TypeError(`[router.${t}] Invalid route name "${r}". Name must start with a letter or underscore, followed by letters, numbers, underscores, or hyphens.`)}}(i,t),function(e,t,r,o){if("string"!=typeof e){let t;throw t=null===e?"null":Array.isArray(e)?"array":typeof e,se(r,`Route path must be a string, got ${t}`)}if(""===e)return;if(/\s/.test(e))throw se(r,`Invalid path for route "${t}": whitespace not allowed in "${e}"`);if(!/^([/?~]|[^/]+$)/.test(e))throw se(r,`Route "${t}" has invalid path format: "${e}". Path should start with '/', '~', '?' or be a relative segment.`);if(e.includes("//"))throw se(r,`Invalid path for route "${t}": double slashes not allowed in "${e}"`);const n=o&&Object.values(o.paramTypeMap).includes("url");if(e.startsWith("~")&&n)throw se(r,`Absolute path "${e}" cannot be used under parent route with URL parameters`)}(i.path,i.name,t,r),function(e,t){if(void 0!==e.encodeParams&&"function"!=typeof e.encodeParams)throw new TypeError(`[router.${t}] Route "${String(e.name)}" encodeParams must be a function`)}(i,t),function(e,t){if(void 0!==e.decodeParams&&"function"!=typeof e.decodeParams)throw new TypeError(`[router.${t}] Route "${String(e.name)}" decodeParams must be a function`)}(i,t);const c=i.name,s=o?`${o}.${c}`:c;r&&s&&function(e,t,r){if(le(e,t))throw new Error(`[router.${r}] Route "${t}" already exists`)}(r,s,t),n&&function(e,t,r){if(e.has(t))throw new Error(`[router.${r}] Duplicate route "${t}" in batch`);e.add(t)}(n,s,t);const u=i.path,f=o;if(r&&function(e,t,r,o){const n=""===t?e:le(e,t);if(n)for(const e of n.children.values())if(e.path===r)throw new Error(`[router.${o}] Path "${r}" is already defined`)}(r,f,u,t),a&&function(e,t,r,o){const n=e.get(t);if(n?.has(r))throw new Error(`[router.${o}] Path "${r}" is already defined`);n?n.add(r):e.set(t,new Set([r]))}(a,f,u,t),void 0!==i.children){if(!Array.isArray(i.children))throw new TypeError(`[router.${t}] Route "${c}" children must be an array, got ${de(i.children)}`);for(const e of i.children)pe(e,t,r,s,n,a)}}function we(e,t){if(void 0!==e.canActivate&&"function"!=typeof e.canActivate)throw new TypeError(`[router.addRoute] canActivate must be a function for route "${t}", got ${m(e.canActivate)}`);if(void 0!==e.canDeactivate&&"function"!=typeof e.canDeactivate)throw new TypeError(`[router.addRoute] canDeactivate must be a function for route "${t}", got ${m(e.canDeactivate)}`);if(void 0!==e.defaultParams){const r=e.defaultParams;if(null===r||"object"!=typeof r||Array.isArray(r))throw new TypeError(`[router.addRoute] defaultParams must be an object for route "${t}", got ${m(e.defaultParams)}`)}if("AsyncFunction"===e.decodeParams?.constructor.name)throw new TypeError(`[router.addRoute] decodeParams cannot be async for route "${t}". Async functions break matchPath/buildPath.`);if("AsyncFunction"===e.encodeParams?.constructor.name)throw new TypeError(`[router.addRoute] encodeParams cannot be async for route "${t}". Async functions break matchPath/buildPath.`);if(function(e,t){if(void 0!==e&&"function"==typeof e){const r="AsyncFunction"===e.constructor.name,o=e.toString().includes("__awaiter");if(r||o)throw new TypeError(`[router.addRoute] forwardTo callback cannot be async for route "${t}". Async functions break matchPath/buildPath.`)}}(e.forwardTo,t),e.children)for(const r of e.children)we(r,`${t}.${r.name}`)}function ye(e){const t=new Set,r=/[*:]([A-Z_a-z]\w*)/g;let o;for(;null!==(o=r.exec(e));)t.add(o[1]);return t}function me(e){const t=new Set;for(const r of e)for(const e of ye(r))t.add(e);return t}function he(e,t,r="",o=[]){for(const n of e){const e=r?`${r}.${n.name}`:n.name,a=[...o,n.path];if(e===t)return a;if(n.children&&t.startsWith(`${e}.`))return he(n.children,t,e,a)}throw new Error(`[internal] collectPathsToRoute: route "${t}" not found`)}function ge(e,t=""){const r=new Set;for(const o of e){const e=t?`${t}.${o.name}`:o.name;if(r.add(e),o.children)for(const t of ge(o.children,e))r.add(t)}return r}function ve(e,t=""){const r=new Map;for(const o of e){const e=t?`${t}.${o.name}`:o.name;if(o.forwardTo&&"string"==typeof o.forwardTo&&r.set(e,o.forwardTo),o.children)for(const[t,n]of ve(o.children,e))r.set(t,n)}return r}function $e(e,t,r,o){return t?function(e){const t=new Set;for(const r of e){for(const e of r.paramMeta.urlParams)t.add(e);for(const e of r.paramMeta.spatParams)t.add(e)}return t}(function(e,t){const r=[],o=t.includes(".")?t.split("."):[t];""!==e.path&&r.push(e);let n=e;for(const e of o){const t=n.children.get(e);if(!t)return null;r.push(t),n=t}return r}(r,e)??[]):me(he(o,e))}function be(e,t,r,o,n){const a=function(e,t){const r=t.split(".");let o=e;for(const e of r)if(o=o.children.get(e),!o)return!1;return!0}(n,t),i=o.has(t);if(!a&&!i)throw new ReferenceError(`[router.addRoute] forwardTo target "${t}" does not exist for route "${e}"`);const c=me(he(r,e)),s=[...$e(t,a,n,r)].filter(e=>!c.has(e));if(s.length>0)throw new Error(`[router.addRoute] forwardTo target "${t}" requires params [${s.join(", ")}] that are not available in source route "${e}"`)}function Ee(e,r,o){const n=ge(e),a=ve(e),i={...r};for(const[e,t]of a)i[e]=t;for(const[t,r]of a)be(t,r,e,n,o);for(const e of Object.keys(i))t(e,i)}function Te(e,t){if(e.startsWith("@@"))throw new Error(`[router.${t}] Route name "${e}" uses the reserved "@@" prefix. Routes with this prefix are internal and cannot be modified through the public API.`)}function Pe(e,t){for(const r of e)r&&"object"==typeof r&&"string"==typeof r.name&&(Te(r.name,t),r.children&&Pe(r.children,t))}function je(e){y(e,"removeRoute")}function Re(e){if("string"!=typeof e)throw new TypeError(`[router.setRootPath] rootPath must be a string, got ${m(e)}`)}function Ae(e){return"AsyncFunction"===e.constructor.name||String(e).includes("__awaiter")}function xe(e){const t=e;if(void 0!==t.canActivate&&"function"!=typeof t.canActivate)throw new TypeError(`[router.addRoute] canActivate must be a function, got ${m(t.canActivate)}`);if(void 0!==t.canDeactivate&&"function"!=typeof t.canDeactivate)throw new TypeError(`[router.addRoute] canDeactivate must be a function, got ${m(t.canDeactivate)}`)}function Se(e){const t=e,r=t.name;if(void 0!==t.decodeParams&&Ae(t.decodeParams))throw new TypeError(`[router.addRoute] decodeParams cannot be async for route "${String(r)}"`);if(void 0!==t.encodeParams&&Ae(t.encodeParams))throw new TypeError(`[router.addRoute] encodeParams cannot be async for route "${String(r)}"`);if("function"==typeof t.forwardTo&&Ae(t.forwardTo))throw new TypeError(`[router.addRoute] forwardTo callback cannot be async for route "${String(r)}"`)}function Oe(e,t,r,o){if(!l(e))throw new TypeError("[router.isActiveRoute] name must be a string, got "+typeof e);if(void 0!==t&&!f(t))throw new TypeError(`[router.isActiveRoute] params must be a plain object, got ${m(t)}`);if(void 0!==r&&"boolean"!=typeof r)throw new TypeError("[router.isActiveRoute] strictEquality must be a boolean, got "+typeof r);if(void 0!==o&&"boolean"!=typeof o)throw new TypeError("[router.isActiveRoute] ignoreQueryParams must be a boolean, got "+typeof o)}function Ie(e,t,r){if(!l(e))throw new TypeError(`[router.${r}] Invalid routeName: ${m(e)}. Expected string.`);if(!f(t))throw new TypeError(`[router.${r}] Invalid routeParams: ${m(t)}. Expected plain object.`)}function De(e,t){if(y(e,"updateRoute"),""===e)throw new ReferenceError("[router.updateRoute] Invalid name: empty string. Cannot update root node.");if(null===t)throw new TypeError("[router.updateRoute] updates must be an object, got null");if("object"!=typeof t||Array.isArray(t))throw new TypeError(`[router.updateRoute] updates must be an object, got ${m(t)}`)}function ke(e,t){if("AsyncFunction"===e.constructor.name||e.toString().includes("__awaiter"))throw new TypeError(`[router.updateRoute] ${t} cannot be an async function`)}function Me(e,t){if(null!=e){if("function"!=typeof e)throw new TypeError(`[router.updateRoute] ${t} must be a function or null, got ${typeof e}`);ke(e,t)}}function Ne(e){if(!l(e)||""===e)throw new TypeError("[router.buildPath] route must be a non-empty string, got "+("string"==typeof e?'""':typeof e))}function Le(e){if(!l(e))throw new TypeError("[router.matchPath] path must be a string, got "+typeof e)}function Fe(e){if(!l(e))throw new TypeError("[router.shouldUpdateNode] nodeName must be a string, got "+typeof e)}function Ce(e,r,o,n,a){if(!o(e))throw new ReferenceError(`[router.updateRoute] route "${e}" does not exist`);if(null!=r&&"string"==typeof r){if(!o(r))throw new Error(`[router.updateRoute] forwardTo target "${r}" does not exist`);(function(e,t,r){const o=r.getSegmentsByName(e),n=r.getSegmentsByName(t),a=function(e){const t=new Set;for(const r of e)for(const e of r.paramMeta.urlParams)t.add(e);return t}(o),i=[];for(const e of n)for(const t of e.paramMeta.urlParams)i.push(t);const c=i.filter(e=>!a.has(e));if(c.length>0)throw new Error(`[router.addRoute] forwardTo target "${t}" requires params [${c.join(", ")}] that are not available in source route "${e}"`)})(e,r,n),function(e,r,o){const n={...o.forwardMap,[e]:r};t(e,n)}(e,r,a)}}function qe(e,t,r){if(!l(e))throw new TypeError(`[router.makeState] Invalid name: ${m(e)}. Expected string.`);if(void 0!==t&&!f(t))throw new TypeError(`[router.makeState] Invalid params: ${m(t)}. Expected plain object.`);if(void 0!==r&&!l(r))throw new TypeError(`[router.makeState] Invalid path: ${m(r)}. Expected string.`)}function _e(e){return{routes:{validateBuildPathArgs:Ne,validateMatchPathArgs:Le,validateIsActiveRouteArgs:Oe,validateShouldUpdateNodeArgs:Fe,validateStateBuilderArgs:Ie,validateAddRouteArgs(e){!function(e){for(const t of e){if(null===t||"object"!=typeof t||Array.isArray(t))throw new TypeError(`[router.addRoute] Route must be an object, got ${m(t)}`);we(t,t.name)}}(e)},validateRoutes(e,t){const r=t;!function(e,t,r){const o=new Set,n=new Map;for(const r of e)pe(r,"addRoute",t,"",o,n);t&&r&&Ee(e,r,t)}(e,r.tree,r.config?.forwardMap)},validateRemoveRouteArgs:je,validateUpdateRouteBasicArgs:De,validateUpdateRoutePropertyTypes(e,t){!function(e,t,r,o){if(null!=e){if("string"!=typeof e&&"function"!=typeof e)throw new TypeError(`[router.updateRoute] forwardTo must be a string, function, or null, got ${m(e)}`);"function"==typeof e&&ke(e,"forwardTo callback")}if(null!=t&&("object"!=typeof t||Array.isArray(t)))throw new TypeError(`[router.updateRoute] defaultParams must be an object or null, got ${m(t)}`);Me(r,"decodeParams"),Me(o,"encodeParams")}(t.forwardTo,t.defaultParams,t.decodeParams,t.encodeParams)},validateUpdateRoute(e,t,r){const o=r;Ce(e,t.forwardTo,e=>o.matcher.hasRoute(e),o.matcher,o.config)},validateParentOption(e,t){!function(e){if("string"!=typeof e||""===e)throw new TypeError(`[router.addRoute] parent option must be a non-empty string, got ${m(e)}`);y(e,"addRoute")}(e);let r=t;for(const t of e.split(".")){const o=r.children.get(t);if(!o)throw new ReferenceError(`[router.addRoute] Parent route "${e}" does not exist`);r=o}},validateRouteName(e,t){y(e,t)},throwIfInternalRoute(e,t){Te(e,t)},throwIfInternalRouteInArray(e,t){Pe(e,t)},validateExistingRoutes:ae,validateForwardToConsistency:ie,validateSetRootPathArgs:Re,guardRouteCallbacks:xe,guardNoAsyncCallbacks:Se},options:{validateLimitValue(e,t){H(e,t,"validate")},validateLimits(e){U(e,"validate")},validateOptions:G},dependencies:{validateDependencyName:g,validateSetDependencyArgs(e,t,r){!function(e){if("string"!=typeof e)throw new TypeError("[router.setDependency] dependency name must be a string, got "+typeof e)}(e)},validateDependenciesObject:v,validateDependencyExists(e,t){const r=t,o=r.dependencies?.[e];!function(e,t){if(void 0===e)throw new ReferenceError(`[router.getDependency] dependency "${t}" not found`)}(o,e)},validateDependencyLimit(e,t){},validateDependenciesStructure:ce,validateDependencyCount:$,validateCloneArgs:b,warnOverwrite:E,warnBatchOverwrite:T,warnRemoveNonExistent:P},plugins:{validatePluginLimit(e,t){!function(e,t,r=50){if(0!==r&&e+t>r)throw new RangeError(`[router.usePlugin] Plugin limit exceeded (${r}). Current: ${e}, Attempting to add: ${t}. This indicates an architectural problem. Consider consolidating plugins.`)}(e,1,t?.maxPlugins)},validateNoDuplicatePlugins(e,t){},validatePluginKeys:Q,validateCountThresholds(t){!function(e,t){if(0===t)return;const{warn:r,error:n}=h(t);e>=n?o.error(z,`${e} plugins registered! This is excessive. Hard limit at ${t}.`):e>=r&&o.warn(z,`${e} plugins registered. Consider if all are necessary.`)}(t,e.getOptions().limits?.maxPlugins??50)},warnBatchDuplicates:V,warnPluginMethodType:K,warnPluginAfterStart:J,validateAddInterceptorArgs:X},lifecycle:{validateHandler:A,validateNotRegistering(e,t,r){},validateHandlerLimit(e,t,r){!function(e,t,r=200){if(0!==r&&e>=r)throw new RangeError(`[router.${t}] Lifecycle handler limit exceeded (${r}). This indicates too many routes with individual handlers. Consider using plugins for cross-cutting concerns.`)}(e,r,t?.maxLifecycleHandlers)},validateCountThresholds(t,r){!function(e,t,r){if(0===r)return;const{warn:n,error:a}=h(r);e>=a?o.error(`router.${t}`,`${e} lifecycle handlers registered! This is excessive. Hard limit at ${r}.`):e>=n&&o.warn(`router.${t}`,`${e} lifecycle handlers registered. Consider consolidating logic.`)}(t,r,e.getOptions().limits?.maxLifecycleHandlers??200)},warnOverwrite:x,warnAsyncGuardSync:S},navigation:{validateNavigateArgs:O,validateNavigateToDefaultArgs:I,validateNavigationOptions:D,validateParams:k,validateStartArgs:M},state:{validateMakeStateArgs:qe,validateAreStatesEqualArgs(e,t,r){if(!d(e))throw new TypeError(`[router.areStatesEqual] Invalid state1: ${m(e)}. Expected State object.`);if(!d(t))throw new TypeError(`[router.areStatesEqual] Invalid state2: ${m(t)}. Expected State object.`);if(void 0!==r&&!p(r))throw new TypeError(`[router.areStatesEqual] Invalid ignoreQueryParams: ${m(r)}. Expected boolean.`)}},eventBus:{validateEventName:R,validateListenerArgs(e,t){!function(e,t){if(R(e),"function"!=typeof t)throw new TypeError("[router.addEventListener] callback must be a function, got "+typeof t)}(e,t)}}}}function Be(){return t=>{const o=r(t);if(t.isActive())throw new e("VALIDATION_PLUGIN_AFTER_START",{message:"validation-plugin must be registered before router.start()"});o.validator=_e(o);try{const e=o.routeGetStore(),t=o.dependenciesGetStore(),r=o.getOptions();ae(e),ie(e),function(e){const t=Y(e,"validateRoutePropertiesStore"),{config:r}=t;for(const[e,t]of Object.entries(r.decoders)){if("function"!=typeof t)throw new TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" decoder must be a function, got ${typeof t}`);ne(t,"decoder",e)}for(const[e,t]of Object.entries(r.encoders)){if("function"!=typeof t)throw new TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" encoder must be a function, got ${typeof t}`);ne(t,"encoder",e)}for(const[e,t]of Object.entries(r.defaultParams))if(null===t||"object"!=typeof t||Array.isArray(t))throw new TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" defaultParams must be a plain object, got ${Array.isArray(t)?"array":typeof t}`);for(const[e,t]of Object.entries(r.forwardFnMap)){if("function"!=typeof t)throw new TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" forwardTo callback must be a function, got ${typeof t}`);ne(t,"forwardTo callback",e)}}(e),function(e){const t=Y(e,"validateForwardToTargetsStore"),{config:r,tree:o}=t;for(const[e,t]of Object.entries(r.forwardMap))if(!te(o,t))throw new Error(`[validation-plugin] validateForwardToTargetsStore: forwardTo target "${t}" does not exist for route "${e}"`)}(e),ce(t),function(e,t,r){const o=function(e){const t=e&&"object"==typeof e?e:{};return t.limits&&"object"==typeof t.limits?t.limits:{}}(e);!function(e,t){if(!e||"object"!=typeof e)return;const r=e;if(!Array.isArray(r.definitions))return;const o=r.definitions.length,n=t.maxRoutes;if("number"==typeof n&&n>0&&o>n)throw new RangeError(`[validation-plugin] validateLimitsConsistency: route count (${o}) exceeds configured limit (${n})`)}(t,o),function(e,t){if(!e||"object"!=typeof e)return;const r=e.dependencies,o=e.limits;if(!r||"object"!=typeof r||!o||"object"!=typeof o)return;const n=Object.keys(r).length,a=t.maxDependencies,i="number"==typeof a?a:o.maxDependencies;if("number"==typeof i&&i>0&&n>=i)throw new RangeError(`[validation-plugin] validateLimitsConsistency: dependency count (${n}) reaches or exceeds maxDependencies limit (${i})`)}(r,o)}(r,e,t),o.validator.options.validateOptions(r,"constructor (retrospective)")}catch(e){throw o.validator=null,e}return{teardown(){o.validator=null}}}}export{Be as validationPlugin};//# sourceMappingURL=index.mjs.map
|
|
1
|
+
import{RouterError as e,resolveForwardChain as t}from"@real-router/core";import{getInternals as n}from"@real-router/core/validation";import{logger as r}from"@real-router/logger";const i=[`replace`,`reload`,`force`,`forceDeactivate`,`redirected`];function a(e){if(typeof e!=`object`||!e||Array.isArray(e))return!1;let t=e;for(let e of i){let n=t[e];if(n!==void 0&&typeof n!=`boolean`)return!1}let n=t.signal;return!(n!==void 0&&!(n instanceof AbortSignal))}const o=/\S/,s=/^[A-Z_a-z][\w-]*(?:\.[A-Z_a-z][\w-]*)*$/;function c(e,t){return TypeError(`[router.${e}] ${t}`)}function l(e){return typeof e==`string`?e===``?!0:e.length>1e4?!1:e.startsWith(`@@`)?!0:s.test(e):!1}function u(e,t=new WeakSet){if(e==null)return!0;let n=typeof e;if(n===`string`||n===`boolean`)return!0;if(n===`number`)return Number.isFinite(e);if(n===`function`||n===`symbol`)return!1;if(Array.isArray(e))return t.has(e)?!1:(t.add(e),e.every(e=>u(e,t)));if(n===`object`){if(t.has(e))return!1;t.add(e);let n=Object.getPrototypeOf(e);return n!==null&&n!==Object.prototype?!1:Object.values(e).every(e=>u(e,t))}return!1}function ee(e){if(e==null)return!0;let t=typeof e;return t===`string`||t===`boolean`?!0:t===`number`?Number.isFinite(e):!1}function d(e){if(typeof e!=`object`||!e||Array.isArray(e))return!1;let t=Object.getPrototypeOf(e);if(t!==null&&t!==Object.prototype)return!1;let n=!1;for(let t in e){if(!Object.hasOwn(e,t))continue;let r=e[t];if(!ee(r)){let e=typeof r;if(e===`function`||e===`symbol`)return!1;n=!0;break}}return n?u(e):!0}function te(e){return l(e.name)&&typeof e.path==`string`&&d(e.params)}function f(e){return typeof e!=`object`||!e?!1:te(e)}function p(e){return typeof e==`string`}function m(e){return typeof e==`boolean`}function ne(e,t){return e in t}function h(e,t){if(typeof e!=`string`)throw c(t,`Route name must be a string, got ${typeof e}`);if(e!==``){if(!o.test(e))throw c(t,`Route name cannot contain only whitespace`);if(e.length>1e4)throw c(t,`Route name exceeds maximum length of 10000 characters. This is a technical safety limit.`);if(!e.startsWith(`@@`)&&!s.test(e))throw c(t,`Invalid route name "${e}". Each segment must start with a letter or underscore, followed by letters, numbers, underscores, or hyphens. Segments are separated by dots (e.g., "users.profile").`)}}function g(e){return e===null?`null`:Array.isArray(e)?`array[${e.length}]`:typeof e==`object`?`constructor`in e&&e.constructor.name!==`Object`?e.constructor.name:`object`:typeof e}function _(e){return{warn:Math.floor(e*.2),error:Math.floor(e*.5)}}function re(e,t){if(typeof e!=`string`)throw TypeError(`[router.${t}] dependency name must be a string, got ${typeof e}`)}function v(e){if(typeof e!=`string`)throw TypeError(`[router.setDependency] dependency name must be a string, got ${typeof e}`)}function ie(e,t){if(!(e&&typeof e==`object`&&e.constructor===Object))throw TypeError(`[router.${t}] Invalid argument: expected plain object, received ${g(e)}`);for(let n in e)if(Object.getOwnPropertyDescriptor(e,n)?.get)throw TypeError(`[router.${t}] Getters not allowed: "${n}"`)}function ae(e,t){if(e===void 0)throw ReferenceError(`[router.getDependency] dependency "${t}" not found`)}function oe(e,t){let n=e,i=n.limits?.maxDependencies??100;if(i===0)return;let a=Object.keys(n.dependencies).length,{warn:o,error:s}=_(i);if(a>=i)throw RangeError(`[router.${t}] Dependency limit exceeded (${i}). Current: ${a}.`);a===s?r.error(`router.${t}`,`${a} dependencies registered! This indicates architectural problems. Hard limit at ${i}.`):a===o&&r.warn(`router.${t}`,`${a} dependencies registered. Consider if all are necessary.`)}function se(e){if(e!==void 0){if(!(e&&typeof e==`object`&&e.constructor===Object))throw TypeError(`[cloneRouter] Invalid dependencies: expected plain object or undefined, received ${typeof e}`);for(let t in e)if(Object.getOwnPropertyDescriptor(e,t)?.get)throw TypeError(`[cloneRouter] Getters not allowed in dependencies: "${t}"`)}}function ce(e,t){r.warn(`router.${t}`,`Router dependency already exists and is being overwritten:`,e)}function le(e,t){r.warn(`router.${t}`,`Overwritten:`,e.join(`, `))}function ue(e){r.warn(`router.removeDependency`,`Attempted to remove non-existent dependency: "${typeof e==`string`?e:String(e)}"`)}const de=new Set([`$start`,`$stop`,`$$start`,`$$cancel`,`$$success`,`$$error`]);function y(e){if(!de.has(e))throw TypeError(`[router.addEventListener] Invalid event name: ${String(e)}. Must be one of: $start, $stop, $$start, $$cancel, $$success, $$error`)}function fe(e,t){if(y(e),typeof t!=`function`)throw TypeError(`[router.addEventListener] callback must be a function, got ${typeof t}`)}function pe(e,t){if(!m(e)&&typeof e!=`function`)throw TypeError(`[router.${t}] Handler must be a boolean or factory function, got ${g(e)}`)}function me(e,t,n){if(e)throw Error(`[router.${n}] Cannot modify route "${t}" during its own registration`)}function he(e,t,n=200){if(n!==0&&e>=n)throw RangeError(`[router.${t}] Lifecycle handler limit exceeded (${n}). This indicates too many routes with individual handlers. Consider using plugins for cross-cutting concerns.`)}function ge(e,t,n){if(n===0)return;let{warn:i,error:a}=_(n);e>=a?r.error(`router.${t}`,`${e} lifecycle handlers registered! This is excessive. Hard limit at ${n}.`):e>=i&&r.warn(`router.${t}`,`${e} lifecycle handlers registered. Consider consolidating logic.`)}function _e(e,t,n){r.warn(`router.${n}`,`Overwriting existing ${t} handler for route "${e}"`)}function ve(e,t){r.warn(`router.${t}`,`Guard for "${e}" returned a Promise. Sync check cannot resolve async guards — returning false.`)}function ye(e){if(typeof e!=`string`)throw TypeError(`[router.navigate] Invalid route name: expected string, got ${g(e)}`)}function be(e){if(e!==void 0&&(typeof e!=`object`||!e))throw TypeError(`[router.navigateToDefault] Invalid options: ${g(e)}. Expected NavigationOptions object.`)}function xe(e,t){if(!a(e))throw TypeError(`[router.${t}] Invalid options: ${g(e)}. Expected NavigationOptions object.`)}function Se(e,t){if(e!==void 0&&!d(e))throw TypeError(`[router.${t}] params must be a plain object, got ${g(e)}`)}function Ce(e){if(e!==void 0&&typeof e!=`string`)throw TypeError(`[router.start] path must be a string, got ${g(e)}.`);if(typeof e==`string`&&e!==``&&!e.startsWith(`/`))throw TypeError(`[router.start] path must start with "/", got "${e}".`)}const b={trailingSlash:[`strict`,`never`,`always`,`preserve`],queryParamsMode:[`default`,`strict`,`loose`],urlParamsEncoding:[`default`,`uri`,`uriComponent`,`none`]},x={arrayFormat:[`none`,`brackets`,`index`,`comma`],booleanFormat:[`none`,`string`,`empty-true`],nullFormat:[`default`,`hidden`],numberFormat:[`none`,`auto`]},S=[`all`,`warn-error`,`error-only`,`none`],we=new Set([`defaultRoute`,`defaultParams`,`trailingSlash`,`queryParamsMode`,`queryParams`,`urlParamsEncoding`,`allowNotFound`,`rewritePathOnMatch`,`logger`,`limits`]),C={maxDependencies:{min:0,max:1e4},maxPlugins:{min:0,max:1e3},maxListeners:{min:0,max:1e5},warnListeners:{min:0,max:1e5},maxEventDepth:{min:0,max:100},maxLifecycleHandlers:{min:0,max:1e4}};function w(e,t,n){if(typeof t!=`number`||!Number.isInteger(t))throw TypeError(`[router.${n}] limit "${e}" must be an integer, got ${String(t)}`);let r=C[e];if(t<r.min||t>r.max)throw RangeError(`[router.${n}] limit "${e}" must be between ${r.min} and ${r.max}, got ${t}`)}function T(e,t){if(!e||typeof e!=`object`||e.constructor!==Object)throw TypeError(`[router.${t}] invalid limits: expected plain object, got ${typeof e}`);for(let[n,r]of Object.entries(e)){if(!Object.hasOwn(C,n))throw TypeError(`[router.${t}] unknown limit: "${n}"`);r!==void 0&&w(n,r,t)}}function E(e,t,n,r){if(e!==void 0&&(typeof e!=`string`||!n.includes(e))){let i=n.map(e=>`"${e}"`).join(`, `);throw TypeError(`[router.${r}] Invalid "${t}": "${typeof e==`string`?e:`(${typeof e})`}". Must be one of: ${i}`)}}function D(e,t){if(e!==void 0&&typeof e!=`string`&&typeof e!=`function`)throw TypeError(`[router.${t}] Invalid "defaultRoute": expected string or function, got ${typeof e}`)}function O(e,t){if(e!==void 0&&typeof e!=`function`&&(!e||typeof e!=`object`||Array.isArray(e)||e.constructor!==Object))throw TypeError(`[router.${t}] Invalid "defaultParams": expected plain object or function, got ${typeof e}`)}function k(e,t){if(e===void 0)return;if(!e||typeof e!=`object`||Array.isArray(e))throw TypeError(`[router.${t}] Invalid "queryParams": expected plain object`);let n=e;for(let e of Object.keys(n)){if(!ne(e,x))throw TypeError(`[router.${t}] Invalid "queryParams.${e}": unknown option`);E(n[e],`queryParams.${e}`,x[e],t)}}function Te(e,t){if(e===void 0)return;if(!e||typeof e!=`object`||Array.isArray(e))throw TypeError(`[router.${t}] Invalid "logger": expected plain object`);let n=e;if(n.level!==void 0&&!S.includes(n.level)){let e=S.map(e=>`"${e}"`).join(`, `),r=typeof n.level==`string`?n.level:`(${typeof n.level})`;throw TypeError(`[router.${t}] Invalid "logger.level": "${r}". Must be one of: ${e}`)}if(n.callback!==void 0&&typeof n.callback!=`function`)throw TypeError(`[router.${t}] Invalid "logger.callback": expected function`);if(n.callbackIgnoresLevel!==void 0&&typeof n.callbackIgnoresLevel!=`boolean`)throw TypeError(`[router.${t}] Invalid "logger.callbackIgnoresLevel": expected boolean`)}function Ee(e,t){if(!e||typeof e!=`object`||Array.isArray(e))throw TypeError(`[router.${t}] Invalid options: expected plain object`);let n=e;for(let e of Object.keys(n))if(!we.has(e))throw TypeError(`[router.${t}] Unknown option: "${e}"`);if(D(n.defaultRoute,t),O(n.defaultParams,t),E(n.trailingSlash,`trailingSlash`,b.trailingSlash,t),E(n.queryParamsMode,`queryParamsMode`,b.queryParamsMode,t),E(n.urlParamsEncoding,`urlParamsEncoding`,b.urlParamsEncoding,t),n.allowNotFound!==void 0&&typeof n.allowNotFound!=`boolean`)throw TypeError(`[router.${t}] Invalid "allowNotFound": expected boolean, got ${typeof n.allowNotFound}`);if(n.rewritePathOnMatch!==void 0&&typeof n.rewritePathOnMatch!=`boolean`)throw TypeError(`[router.${t}] Invalid "rewritePathOnMatch": expected boolean, got ${typeof n.rewritePathOnMatch}`);k(n.queryParams,t),Te(n.logger,t),n.limits!==void 0&&T(n.limits,t)}const A=`router.usePlugin`,De={onStart:!0,onStop:!0,onTransitionStart:!0,onTransitionSuccess:!0,onTransitionError:!0,onTransitionCancel:!0};function Oe(e,t,n=50){if(n!==0&&e+t>n)throw RangeError(`[router.usePlugin] Plugin limit exceeded (${n}). Current: ${e}, Attempting to add: ${t}. This indicates an architectural problem. Consider consolidating plugins.`)}function ke(e,t){if(t===0)return;let{warn:n,error:i}=_(t);e>=i?r.error(A,`${e} plugins registered! This is excessive. Hard limit at ${t}.`):e>=n&&r.warn(A,`${e} plugins registered. Consider if all are necessary.`)}function Ae(e){for(let t in e)if(!(t===`teardown`||t in De))throw TypeError(`[router.usePlugin] Unknown property '${t}'. Plugin must only contain event handlers and optional teardown.`)}function je(){r.warn(A,`Duplicate factory in batch, will be registered once`)}function Me(e){r.warn(A,`Property '${e}' is not a function, skipping`)}function Ne(e){e===`onStart`&&r.warn(A,`Router already started, onStart will not be called`)}function Pe(e,t){let n=[`start`,`buildPath`,`forwardState`];if(typeof e!=`string`||!n.includes(e))throw TypeError(`[router.addInterceptor] Invalid method: "${String(e)}". Must be one of: ${n.join(`, `)}`);if(typeof t!=`function`)throw TypeError(`[router.addInterceptor] interceptor must be a function, got ${typeof t}`)}function j(e,t){if(!e||typeof e!=`object`)throw TypeError(`[validation-plugin] ${t}: store must be an object`);let n=e;if(!Array.isArray(n.definitions))throw TypeError(`[validation-plugin] ${t}: store.definitions must be an array`);if(!n.config||typeof n.config!=`object`)throw TypeError(`[validation-plugin] ${t}: store.config must be an object`);if(!n.tree||typeof n.tree!=`object`)throw TypeError(`[validation-plugin] ${t}: store.tree must be an object`);return n}function M(e,t,n=``){for(let r of e){let e=n?`${n}.${r.name}`:r.name;t(r,e),r.children&&M(r.children,t,e)}}function N(e,t){let n=t.split(`.`),r=e;for(let e of n)if(r=r.children.get(e),!r)return!1;return!0}function Fe(e,n){try{return t(e,n)}catch(e){throw Error(`[validation-plugin] ${e.message}`,{cause:e})}}function P(e){let t=new Set;for(let n of e){for(let e of n.paramMeta.urlParams)t.add(e);for(let e of n.paramMeta.spatParams)t.add(e)}return t}function F(e,t,n){let r=e;if(r.constructor.name===`AsyncFunction`||r.toString().includes(`__awaiter`))throw TypeError(`[validation-plugin] Route "${n}" ${t} cannot be async`)}function I(e){let t=j(e,`validateExistingRoutes`),n=new Set;M(t.definitions,(e,t)=>{if(typeof e.name!=`string`||!e.name)throw TypeError(`[validation-plugin] validateExistingRoutes: route has invalid name: ${e.name}`);if(typeof e.path!=`string`)throw TypeError(`[validation-plugin] validateExistingRoutes: route "${t}" has non-string path (${typeof e.path})`);if(n.has(t))throw Error(`[validation-plugin] validateExistingRoutes: duplicate route name detected: "${t}"`);n.add(t)})}function L(e){let{config:t,tree:n,matcher:r}=j(e,`validateForwardToConsistency`);for(let[e,i]of Object.entries(t.forwardMap)){if(!N(n,i))throw Error(`[validation-plugin] validateForwardToConsistency: forwardTo target "${i}" does not exist in tree (source route: "${e}")`);let t=r.getSegmentsByName(e),a=r.getSegmentsByName(i);if(t&&a){let n=P(t),r=[...P(a)].filter(e=>!n.has(e));if(r.length>0)throw Error(`[validation-plugin] validateForwardToConsistency: forwardTo target "${i}" requires params [${r.join(`, `)}] not available in source route "${e}"`)}}for(let e of Object.keys(t.forwardMap))Fe(e,t.forwardMap)}function Ie(e){let{config:t}=j(e,`validateRoutePropertiesStore`);for(let[e,n]of Object.entries(t.decoders)){if(typeof n!=`function`)throw TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" decoder must be a function, got ${typeof n}`);F(n,`decoder`,e)}for(let[e,n]of Object.entries(t.encoders)){if(typeof n!=`function`)throw TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" encoder must be a function, got ${typeof n}`);F(n,`encoder`,e)}for(let[e,n]of Object.entries(t.defaultParams))if(typeof n!=`object`||!n||Array.isArray(n))throw TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" defaultParams must be a plain object, got ${Array.isArray(n)?`array`:typeof n}`);for(let[e,n]of Object.entries(t.forwardFnMap)){if(typeof n!=`function`)throw TypeError(`[validation-plugin] validateRoutePropertiesStore: route "${e}" forwardTo callback must be a function, got ${typeof n}`);F(n,`forwardTo callback`,e)}}function Le(e){let{config:t,tree:n}=j(e,`validateForwardToTargetsStore`);for(let[e,r]of Object.entries(t.forwardMap))if(!N(n,r))throw Error(`[validation-plugin] validateForwardToTargetsStore: forwardTo target "${r}" does not exist for route "${e}"`)}function R(e){if(!e||typeof e!=`object`)throw TypeError(`[validation-plugin] validateDependenciesStructure: deps must be an object`);let t=e;if(!t.dependencies||typeof t.dependencies!=`object`)throw TypeError(`[validation-plugin] validateDependenciesStructure: deps.dependencies must be an object`);let n=t.dependencies;for(let e of Object.keys(n))if(Object.getOwnPropertyDescriptor(n,e)?.get)throw TypeError(`[validation-plugin] validateDependenciesStructure: dependency "${e}" must not use a getter`);if(!t.limits||typeof t.limits!=`object`)throw TypeError(`[validation-plugin] validateDependenciesStructure: deps.limits must be an object`);let r=t.limits;for(let e of[`maxDependencies`,`maxPlugins`,`maxListeners`,`warnListeners`,`maxEventDepth`,`maxLifecycleHandlers`])if(typeof r[e]!=`number`)throw TypeError(`[validation-plugin] validateDependenciesStructure: deps.limits.${e} must be a number, got ${typeof r[e]}`)}function Re(e){let t=e&&typeof e==`object`?e:{};return t.limits&&typeof t.limits==`object`?t.limits:{}}function ze(e,t){if(!e||typeof e!=`object`)return;let n=e;if(!Array.isArray(n.definitions))return;let r=n.definitions.length,i=t.maxRoutes;if(typeof i==`number`&&i>0&&r>i)throw RangeError(`[validation-plugin] validateLimitsConsistency: route count (${r}) exceeds configured limit (${i})`)}function Be(e,t){if(!e||typeof e!=`object`)return;let n=e,r=n.dependencies,i=n.limits;if(!r||typeof r!=`object`||!i||typeof i!=`object`)return;let a=Object.keys(r).length,o=i,s=t.maxDependencies,c=o.maxDependencies,l=typeof s==`number`?s:c;if(typeof l==`number`&&l>0&&a>=l)throw RangeError(`[validation-plugin] validateLimitsConsistency: dependency count (${a}) reaches or exceeds maxDependencies limit (${l})`)}function Ve(e,t,n){let r=Re(e);ze(t,r),Be(n,r)}function He(e,t){let n=[],r=t.includes(`.`)?t.split(`.`):[t];e.path!==``&&n.push(e);let i=e;for(let e of r){let t=i.children.get(e);if(!t)return null;n.push(t),i=t}return n}function z(e,t){return TypeError(`[router.${e}] ${t}`)}function Ue(e,t,n,r){if(typeof e!=`string`){let t;throw t=e===null?`null`:Array.isArray(e)?`array`:typeof e,z(n,`Route path must be a string, got ${t}`)}if(e===``)return;if(/\s/.test(e))throw z(n,`Invalid path for route "${t}": whitespace not allowed in "${e}"`);if(!/^([/?~]|[^/]+$)/.test(e))throw z(n,`Route "${t}" has invalid path format: "${e}". Path should start with '/', '~', '?' or be a relative segment.`);if(e.includes(`//`))throw z(n,`Invalid path for route "${t}": double slashes not allowed in "${e}"`);let i=r&&Object.values(r.paramTypeMap).includes(`url`);if(e.startsWith(`~`)&&i)throw z(n,`Absolute path "${e}" cannot be used under parent route with URL parameters`)}const We=/^[A-Z_a-z][\w-]*$/,Ge=/\S/,B=1e4;function V(e){return e===null?`null`:typeof e==`object`?`constructor`in e&&e.constructor.name!==`Object`?e.constructor.name:`object`:typeof e}function Ke(e){for(let t of Object.keys(e)){let n=Object.getOwnPropertyDescriptor(e,t);if(n&&(n.get||n.set))return!0}return!1}function qe(e,t){if(!e||typeof e!=`object`)throw TypeError(`[router.${t}] Route must be an object, got ${V(e)}`);let n=Object.getPrototypeOf(e);if(n!==Object.prototype&&n!==null)throw TypeError(`[router.${t}] Route must be a plain object, got ${V(e)}`);if(Ke(e))throw TypeError(`[router.${t}] Route must not have getters or setters`)}function Je(e,t){if(e.encodeParams!==void 0&&typeof e.encodeParams!=`function`)throw TypeError(`[router.${t}] Route "${String(e.name)}" encodeParams must be a function`)}function Ye(e,t){if(e.decodeParams!==void 0&&typeof e.decodeParams!=`function`)throw TypeError(`[router.${t}] Route "${String(e.name)}" decodeParams must be a function`)}function Xe(e,t){if(typeof e.name!=`string`)throw TypeError(`[router.${t}] Route name must be a string, got ${V(e.name)}`);let n=e.name;if(n===``)throw TypeError(`[router.${t}] Route name cannot be empty`);if(!Ge.test(n))throw TypeError(`[router.${t}] Route name cannot contain only whitespace`);if(n.length>B)throw TypeError(`[router.${t}] Route name exceeds maximum length of ${B} characters`);if(!n.startsWith(`@@`)){if(n.includes(`.`))throw TypeError(`[router.${t}] Route name "${n}" cannot contain dots. Use children array or { parent } option in addRoute() instead.`);if(!We.test(n))throw TypeError(`[router.${t}] Invalid route name "${n}". Name must start with a letter or underscore, followed by letters, numbers, underscores, or hyphens.`)}}function H(e,t){if(!t.includes(`.`))return e.children.get(t);let n=e;for(let e of t.split(`.`))if(n=n.children.get(e),!n)return;return n}function Ze(e,t,n){if(H(e,t))throw Error(`[router.${n}] Route "${t}" already exists`)}function Qe(e,t,n){if(e.has(t))throw Error(`[router.${n}] Duplicate route "${t}" in batch`);e.add(t)}function $e(e,t,n,r){let i=t===``?e:H(e,t);if(i){for(let e of i.children.values())if(e.path===n)throw Error(`[router.${r}] Path "${n}" is already defined`)}}function et(e,t,n,r){let i=e.get(t);if(i?.has(n))throw Error(`[router.${r}] Path "${n}" is already defined`);i?i.add(n):e.set(t,new Set([n]))}function U(e,t,n,r=``,i,a){qe(e,t);let o=e;Xe(o,t),Ue(o.path,o.name,t,n),Je(o,t),Ye(o,t);let s=o.name,c=r?`${r}.${s}`:s;n&&c&&Ze(n,c,t),i&&Qe(i,c,t);let l=o.path,u=r;if(n&&$e(n,u,l,t),a&&et(a,u,l,t),o.children!==void 0){if(!Array.isArray(o.children))throw TypeError(`[router.${t}] Route "${s}" children must be an array, got ${V(o.children)}`);for(let e of o.children)U(e,t,n,c,i,a)}}function tt(e,t){if(e!==void 0&&typeof e==`function`){let n=e.constructor.name===`AsyncFunction`,r=e.toString().includes(`__awaiter`);if(n||r)throw TypeError(`[router.addRoute] forwardTo callback cannot be async for route "${t}". Async functions break matchPath/buildPath.`)}}function W(e,t){if(e.canActivate!==void 0&&typeof e.canActivate!=`function`)throw TypeError(`[router.addRoute] canActivate must be a function for route "${t}", got ${g(e.canActivate)}`);if(e.canDeactivate!==void 0&&typeof e.canDeactivate!=`function`)throw TypeError(`[router.addRoute] canDeactivate must be a function for route "${t}", got ${g(e.canDeactivate)}`);if(e.defaultParams!==void 0){let n=e.defaultParams;if(typeof n!=`object`||!n||Array.isArray(n))throw TypeError(`[router.addRoute] defaultParams must be an object for route "${t}", got ${g(e.defaultParams)}`)}if(e.decodeParams?.constructor.name===`AsyncFunction`)throw TypeError(`[router.addRoute] decodeParams cannot be async for route "${t}". Async functions break matchPath/buildPath.`);if(e.encodeParams?.constructor.name===`AsyncFunction`)throw TypeError(`[router.addRoute] encodeParams cannot be async for route "${t}". Async functions break matchPath/buildPath.`);if(tt(e.forwardTo,t),e.children)for(let n of e.children)W(n,`${t}.${n.name}`)}function nt(e){let t=new Set,n=/[*:]([A-Z_a-z]\w*)/g,r;for(;(r=n.exec(e))!==null;)t.add(r[1]);return t}function G(e){let t=new Set;for(let n of e)for(let e of nt(n))t.add(e);return t}function K(e,t,n=``,r=[]){for(let i of e){let e=n?`${n}.${i.name}`:i.name,a=[...r,i.path];if(e===t)return a;if(i.children&&t.startsWith(`${e}.`))return K(i.children,t,e,a)}throw Error(`[internal] collectPathsToRoute: route "${t}" not found`)}function q(e,t=``){let n=new Set;for(let r of e){let e=t?`${t}.${r.name}`:r.name;if(n.add(e),r.children)for(let t of q(r.children,e))n.add(t)}return n}function J(e,t=``){let n=new Map;for(let r of e){let e=t?`${t}.${r.name}`:r.name;if(r.forwardTo&&typeof r.forwardTo==`string`&&n.set(e,r.forwardTo),r.children)for(let[t,i]of J(r.children,e))n.set(t,i)}return n}function rt(e){let t=new Set;for(let n of e){for(let e of n.paramMeta.urlParams)t.add(e);for(let e of n.paramMeta.spatParams)t.add(e)}return t}function it(e,t){let n=t.split(`.`),r=e;for(let e of n)if(r=r.children.get(e),!r)return!1;return!0}function at(e,t,n,r){return t?rt(He(n,e)??[]):G(K(r,e))}function ot(e,t,n,r,i){let a=it(i,t),o=r.has(t);if(!a&&!o)throw ReferenceError(`[router.addRoute] forwardTo target "${t}" does not exist for route "${e}"`);let s=G(K(n,e)),c=[...at(t,a,i,n)].filter(e=>!s.has(e));if(c.length>0)throw Error(`[router.addRoute] forwardTo target "${t}" requires params [${c.join(`, `)}] that are not available in source route "${e}"`)}function st(e,n,r){let i=q(e),a=J(e),o={...n};for(let[e,t]of a)o[e]=t;for(let[t,n]of a)ot(t,n,e,i,r);for(let e of Object.keys(o))t(e,o)}function Y(e,t){if(e.startsWith(`@@`))throw Error(`[router.${t}] Route name "${e}" uses the reserved "@@" prefix. Routes with this prefix are internal and cannot be modified through the public API.`)}function X(e,t){for(let n of e)n&&typeof n==`object`&&typeof n.name==`string`&&(Y(n.name,t),n.children&&X(n.children,t))}function ct(e){h(e,`removeRoute`)}function lt(e){if(typeof e!=`string`)throw TypeError(`[router.setRootPath] rootPath must be a string, got ${g(e)}`)}function Z(e){return e.constructor.name===`AsyncFunction`||String(e).includes(`__awaiter`)}function ut(e){let t=e;if(t.canActivate!==void 0&&typeof t.canActivate!=`function`)throw TypeError(`[router.addRoute] canActivate must be a function, got ${g(t.canActivate)}`);if(t.canDeactivate!==void 0&&typeof t.canDeactivate!=`function`)throw TypeError(`[router.addRoute] canDeactivate must be a function, got ${g(t.canDeactivate)}`)}function dt(e){let t=e,n=t.name;if(t.decodeParams!==void 0&&Z(t.decodeParams))throw TypeError(`[router.addRoute] decodeParams cannot be async for route "${String(n)}"`);if(t.encodeParams!==void 0&&Z(t.encodeParams))throw TypeError(`[router.addRoute] encodeParams cannot be async for route "${String(n)}"`);if(typeof t.forwardTo==`function`&&Z(t.forwardTo))throw TypeError(`[router.addRoute] forwardTo callback cannot be async for route "${String(n)}"`)}function ft(e){for(let t of e){if(typeof t!=`object`||!t||Array.isArray(t))throw TypeError(`[router.addRoute] Route must be an object, got ${g(t)}`);W(t,t.name)}}function pt(e){if(typeof e!=`string`||e===``)throw TypeError(`[router.addRoute] parent option must be a non-empty string, got ${g(e)}`);h(e,`addRoute`)}function mt(e,t,n,r){if(!p(e))throw TypeError(`[router.isActiveRoute] name must be a string, got ${typeof e}`);if(t!==void 0&&!d(t))throw TypeError(`[router.isActiveRoute] params must be a plain object, got ${g(t)}`);if(n!==void 0&&typeof n!=`boolean`)throw TypeError(`[router.isActiveRoute] strictEquality must be a boolean, got ${typeof n}`);if(r!==void 0&&typeof r!=`boolean`)throw TypeError(`[router.isActiveRoute] ignoreQueryParams must be a boolean, got ${typeof r}`)}function ht(e,t,n){if(!p(e))throw TypeError(`[router.${n}] Invalid routeName: ${g(e)}. Expected string.`);if(!d(t))throw TypeError(`[router.${n}] Invalid routeParams: ${g(t)}. Expected plain object.`)}function gt(e,t){if(h(e,`updateRoute`),e===``)throw ReferenceError(`[router.updateRoute] Invalid name: empty string. Cannot update root node.`);if(t===null)throw TypeError(`[router.updateRoute] updates must be an object, got null`);if(typeof t!=`object`||Array.isArray(t))throw TypeError(`[router.updateRoute] updates must be an object, got ${g(t)}`)}function Q(e,t){if(e.constructor.name===`AsyncFunction`||e.toString().includes(`__awaiter`))throw TypeError(`[router.updateRoute] ${t} cannot be an async function`)}function $(e,t){if(e!=null){if(typeof e!=`function`)throw TypeError(`[router.updateRoute] ${t} must be a function or null, got ${typeof e}`);Q(e,t)}}function _t(e,t,n,r){if(e!=null){if(typeof e!=`string`&&typeof e!=`function`)throw TypeError(`[router.updateRoute] forwardTo must be a string, function, or null, got ${g(e)}`);typeof e==`function`&&Q(e,`forwardTo callback`)}if(t!=null&&(typeof t!=`object`||Array.isArray(t)))throw TypeError(`[router.updateRoute] defaultParams must be an object or null, got ${g(t)}`);$(n,`decodeParams`),$(r,`encodeParams`)}function vt(e){if(!p(e)||e===``)throw TypeError(`[router.buildPath] route must be a non-empty string, got ${typeof e==`string`?`""`:typeof e}`)}function yt(e){if(!p(e))throw TypeError(`[router.matchPath] path must be a string, got ${typeof e}`)}function bt(e){if(!p(e))throw TypeError(`[router.shouldUpdateNode] nodeName must be a string, got ${typeof e}`)}function xt(e,t,n,r){if(r&&t){let e=t;for(let t of r.split(`.`))if(e=e.children.get(t),!e)throw ReferenceError(`[router.addRoute] Parent route "${r}" does not exist`)}let i=new Set,a=new Map;for(let n of e)U(n,`addRoute`,t,r??``,i,a);t&&n&&st(e,n,t)}function St(e){let t=new Set;for(let n of e)for(let e of n.paramMeta.urlParams)t.add(e);return t}function Ct(e,t,n){let r=n.getSegmentsByName(e),i=n.getSegmentsByName(t),a=St(r),o=[];for(let e of i)for(let t of e.paramMeta.urlParams)o.push(t);let s=o.filter(e=>!a.has(e));if(s.length>0)throw Error(`[router.addRoute] forwardTo target "${t}" requires params [${s.join(`, `)}] that are not available in source route "${e}"`)}function wt(e,n,r){t(e,{...r.forwardMap,[e]:n})}function Tt(e,t,n,r,i){if(!n(e))throw ReferenceError(`[router.updateRoute] route "${e}" does not exist`);if(t!=null&&typeof t==`string`){if(!n(t))throw Error(`[router.updateRoute] forwardTo target "${t}" does not exist`);Ct(e,t,r),wt(e,t,i)}}function Et(e,t,n){if(!p(e))throw TypeError(`[router.makeState] Invalid name: ${g(e)}. Expected string.`);if(t!==void 0&&!d(t))throw TypeError(`[router.makeState] Invalid params: ${g(t)}. Expected plain object.`);if(n!==void 0&&!p(n))throw TypeError(`[router.makeState] Invalid path: ${g(n)}. Expected string.`)}function Dt(e){return{routes:{validateBuildPathArgs:vt,validateMatchPathArgs:yt,validateIsActiveRouteArgs:mt,validateShouldUpdateNodeArgs:bt,validateStateBuilderArgs:ht,validateAddRouteArgs(e){ft(e)},validateRoutes(e,t){let n=t;xt(e,n.tree,n.config?.forwardMap)},validateRemoveRouteArgs:ct,validateUpdateRouteBasicArgs:gt,validateUpdateRoutePropertyTypes(e,t){let n=t;_t(n.forwardTo,n.defaultParams,n.decodeParams,n.encodeParams)},validateUpdateRoute(e,t,n){let r=n,i=t.forwardTo;Tt(e,i,e=>r.matcher.hasRoute(e),r.matcher,r.config)},validateParentOption(e,t){pt(e);let n=t;for(let t of e.split(`.`)){let r=n.children.get(t);if(!r)throw ReferenceError(`[router.addRoute] Parent route "${e}" does not exist`);n=r}},validateRouteName(e,t){h(e,t)},throwIfInternalRoute(e,t){Y(e,t)},throwIfInternalRouteInArray(e,t){X(e,t)},validateExistingRoutes:I,validateForwardToConsistency:L,validateSetRootPathArgs:lt,guardRouteCallbacks:ut,guardNoAsyncCallbacks:dt},options:{validateLimitValue(e,t){w(e,t,`validate`)},validateLimits(e){T(e,`validate`)},validateOptions:Ee},dependencies:{validateDependencyName:re,validateSetDependencyArgs(e,t,n){v(e)},validateDependenciesObject:ie,validateDependencyExists(e,t){let n=t.dependencies?.[e];ae(n,e)},validateDependencyLimit(e,t){},validateDependenciesStructure:R,validateDependencyCount:oe,validateCloneArgs:se,warnOverwrite:ce,warnBatchOverwrite:le,warnRemoveNonExistent:ue},plugins:{validatePluginLimit(e,t){Oe(e,1,t?.maxPlugins)},validateNoDuplicatePlugins(e,t){},validatePluginKeys:Ae,validateCountThresholds(t){ke(t,e.getOptions().limits?.maxPlugins??50)},warnBatchDuplicates:je,warnPluginMethodType:Me,warnPluginAfterStart:Ne,validateAddInterceptorArgs:Pe},lifecycle:{validateHandler:pe,validateNotRegistering(e,t,n){me(!1,e,n)},validateHandlerLimit(e,t,n){he(e,n,t?.maxLifecycleHandlers)},validateCountThresholds(t,n){ge(t,n,e.getOptions().limits?.maxLifecycleHandlers??200)},warnOverwrite:_e,warnAsyncGuardSync:ve},navigation:{validateNavigateArgs:ye,validateNavigateToDefaultArgs:be,validateNavigationOptions:xe,validateParams:Se,validateStartArgs:Ce},state:{validateMakeStateArgs:Et,validateAreStatesEqualArgs(e,t,n){if(!f(e))throw TypeError(`[router.areStatesEqual] Invalid state1: ${g(e)}. Expected State object.`);if(!f(t))throw TypeError(`[router.areStatesEqual] Invalid state2: ${g(t)}. Expected State object.`);if(n!==void 0&&!m(n))throw TypeError(`[router.areStatesEqual] Invalid ignoreQueryParams: ${g(n)}. Expected boolean.`)}},eventBus:{validateEventName:y,validateListenerArgs(e,t){fe(e,t)}}}}function Ot(){return t=>{let r=n(t);if(t.isActive())throw new e(`VALIDATION_PLUGIN_AFTER_START`,{message:`validation-plugin must be registered before router.start()`});r.validator=Dt(r);try{let e=r.routeGetStore(),t=r.dependenciesGetStore(),n=r.getOptions();I(e),L(e),Ie(e),Le(e),R(t),Ve(n,e,t),r.validator.options.validateOptions(n,`constructor (retrospective)`)}catch(e){throw r.validator=null,e}return{teardown(){r.validator=null}}}}export{Ot as validationPlugin};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|