Socket
Socket
Sign inDemoInstall

@tanstack/router

Package Overview
Dependencies
Maintainers
1
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/router - npm Package Compare versions

Comparing version 0.0.1-beta.76 to 0.0.1-beta.77

38

build/cjs/route.js

@@ -39,7 +39,7 @@ /**

const isRoot = !allOptions?.path && !allOptions?.id;
const parent = this.options?.getParentRoute?.();
this.parentRoute = this.options?.getParentRoute?.();
if (isRoot) {
this.path = rootRouteId;
} else {
invariant__default["default"](parent, `Child Route instances must pass a 'getParentRoute: () => ParentRoute' option that returns a Route instance.`);
invariant__default["default"](this.parentRoute, `Child Route instances must pass a 'getParentRoute: () => ParentRoute' option that returns a Route instance.`);
}

@@ -55,3 +55,3 @@ let path$1 = isRoot ? rootRouteId : allOptions.path;

// Strip the parentId prefix from the first level of children
let id = isRoot ? rootRouteId : path.joinPaths([parent.id === rootRouteId ? '' : parent.id, customId]);
let id = isRoot ? rootRouteId : path.joinPaths([this.parentRoute.id === rootRouteId ? '' : this.parentRoute.id, customId]);
if (path$1 === rootRouteId) {

@@ -63,3 +63,3 @@ path$1 = '/';

}
const fullPath = id === rootRouteId ? '/' : path.trimPathRight(path.joinPaths([parent.fullPath, path$1]));
const fullPath = id === rootRouteId ? '/' : path.trimPathRight(path.joinPaths([this.parentRoute.fullPath, path$1]));
this.path = path$1;

@@ -74,6 +74,30 @@ this.id = id;

};
generate = options => {
invariant__default["default"](false, `route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `);
};
// generate = (
// options: Omit<
// RouteOptions<
// TParentRoute,
// TCustomId,
// TPath,
// InferFullSearchSchema<TParentRoute>,
// TSearchSchema,
// TFullSearchSchema,
// TParentRoute['__types']['allParams'],
// TParams,
// TAllParams,
// TParentContext,
// TAllParentContext,
// TRouteContext,
// TContext
// >,
// 'path'
// >,
// ) => {
// invariant(
// false,
// `route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `,
// )
// }
}
class RootRoute extends Route {

@@ -80,0 +104,0 @@ constructor(options) {

22

build/cjs/router.js

@@ -570,3 +570,3 @@ /**

#buildRouteTree = routeTree => {
const recurseRoutes = routes => {
const recurseRoutes = (routes, parentRoute) => {
routes.forEach((route, i) => {

@@ -578,8 +578,3 @@ route.init({

const existingRoute = this.routesById[route.id];
if (existingRoute) {
if (process.env.NODE_ENV !== 'production') {
console.warn(`Duplicate routes found with id: ${String(route.id)}`, this.routesById, route);
}
throw new Error();
}
invariant__default["default"](!existingRoute, `Duplicate routes found with id: ${String(route.id)}`);
this.routesById[route.id] = route;

@@ -624,2 +619,15 @@ const children = route.children;

recurseRoutes([routeTree]);
const recurceCheckRoutes = (routes, parentRoute) => {
routes.forEach(route => {
if (route.isRoot) {
invariant__default["default"](!parentRoute, 'Root routes can only be used as the root of a route tree.');
} else {
invariant__default["default"](parentRoute ? route.parentRoute === parentRoute : true, `Expected a route with path "${route.path}" to be passed to its parent route "${route.parentRoute?.id}" in an addChildren() call, but was instead passed as a child of the "${parentRoute?.id}" route.`);
}
if (route.children) {
recurceCheckRoutes(route.children, route);
}
});
};
recurceCheckRoutes([routeTree], undefined);
return routeTree;

@@ -626,0 +634,0 @@ };

@@ -491,7 +491,7 @@ /**

const isRoot = !allOptions?.path && !allOptions?.id;
const parent = this.options?.getParentRoute?.();
this.parentRoute = this.options?.getParentRoute?.();
if (isRoot) {
this.path = rootRouteId;
} else {
invariant(parent, `Child Route instances must pass a 'getParentRoute: () => ParentRoute' option that returns a Route instance.`);
invariant(this.parentRoute, `Child Route instances must pass a 'getParentRoute: () => ParentRoute' option that returns a Route instance.`);
}

@@ -507,3 +507,3 @@ let path = isRoot ? rootRouteId : allOptions.path;

// Strip the parentId prefix from the first level of children
let id = isRoot ? rootRouteId : joinPaths([parent.id === rootRouteId ? '' : parent.id, customId]);
let id = isRoot ? rootRouteId : joinPaths([this.parentRoute.id === rootRouteId ? '' : this.parentRoute.id, customId]);
if (path === rootRouteId) {

@@ -515,3 +515,3 @@ path = '/';

}
const fullPath = id === rootRouteId ? '/' : trimPathRight(joinPaths([parent.fullPath, path]));
const fullPath = id === rootRouteId ? '/' : trimPathRight(joinPaths([this.parentRoute.fullPath, path]));
this.path = path;

@@ -526,6 +526,30 @@ this.id = id;

};
generate = options => {
invariant(false, `route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `);
};
// generate = (
// options: Omit<
// RouteOptions<
// TParentRoute,
// TCustomId,
// TPath,
// InferFullSearchSchema<TParentRoute>,
// TSearchSchema,
// TFullSearchSchema,
// TParentRoute['__types']['allParams'],
// TParams,
// TAllParams,
// TParentContext,
// TAllParentContext,
// TRouteContext,
// TContext
// >,
// 'path'
// >,
// ) => {
// invariant(
// false,
// `route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `,
// )
// }
}
class RootRoute extends Route {

@@ -1174,3 +1198,3 @@ constructor(options) {

#buildRouteTree = routeTree => {
const recurseRoutes = routes => {
const recurseRoutes = (routes, parentRoute) => {
routes.forEach((route, i) => {

@@ -1182,8 +1206,3 @@ route.init({

const existingRoute = this.routesById[route.id];
if (existingRoute) {
if (process.env.NODE_ENV !== 'production') {
console.warn(`Duplicate routes found with id: ${String(route.id)}`, this.routesById, route);
}
throw new Error();
}
invariant(!existingRoute, `Duplicate routes found with id: ${String(route.id)}`);
this.routesById[route.id] = route;

@@ -1228,2 +1247,15 @@ const children = route.children;

recurseRoutes([routeTree]);
const recurceCheckRoutes = (routes, parentRoute) => {
routes.forEach(route => {
if (route.isRoot) {
invariant(!parentRoute, 'Root routes can only be used as the root of a route tree.');
} else {
invariant(parentRoute ? route.parentRoute === parentRoute : true, `Expected a route with path "${route.path}" to be passed to its parent route "${route.parentRoute?.id}" in an addChildren() call, but was instead passed as a child of the "${parentRoute?.id}" route.`);
}
if (route.children) {
recurceCheckRoutes(route.children, route);
}
});
};
recurceCheckRoutes([routeTree], undefined);
return routeTree;

@@ -1230,0 +1262,0 @@ };

@@ -14,7 +14,7 @@ {

"name": "tiny-invariant@1.3.1/node_modules/tiny-invariant/dist/esm/tiny-invariant.js",
"uid": "f796-32"
"uid": "5d99-32"
},
{
"name": "tiny-warning@1.0.3/node_modules/tiny-warning/dist/tiny-warning.esm.js",
"uid": "f796-34"
"uid": "5d99-34"
}

@@ -30,35 +30,35 @@ ]

{
"uid": "f796-36",
"uid": "5d99-36",
"name": "history.ts"
},
{
"uid": "f796-38",
"uid": "5d99-38",
"name": "utils.ts"
},
{
"uid": "f796-40",
"uid": "5d99-40",
"name": "path.ts"
},
{
"uid": "f796-42",
"uid": "5d99-42",
"name": "qss.ts"
},
{
"uid": "f796-44",
"uid": "5d99-44",
"name": "route.ts"
},
{
"uid": "f796-48",
"uid": "5d99-48",
"name": "searchParams.ts"
},
{
"uid": "f796-50",
"uid": "5d99-50",
"name": "router.ts"
},
{
"uid": "f796-52",
"uid": "5d99-52",
"name": "routeMatch.ts"
},
{
"uid": "f796-54",
"uid": "5d99-54",
"name": "index.ts"

@@ -70,3 +70,3 @@ }

"name": "store/build/esm/index.js",
"uid": "f796-46"
"uid": "5d99-46"
}

@@ -81,80 +81,80 @@ ]

"nodeParts": {
"f796-32": {
"5d99-32": {
"renderedLength": 199,
"gzipLength": 134,
"brotliLength": 0,
"mainUid": "f796-31"
"mainUid": "5d99-31"
},
"f796-34": {
"5d99-34": {
"renderedLength": 48,
"gzipLength": 65,
"brotliLength": 0,
"mainUid": "f796-33"
"mainUid": "5d99-33"
},
"f796-36": {
"5d99-36": {
"renderedLength": 4365,
"gzipLength": 1105,
"brotliLength": 0,
"mainUid": "f796-35"
"mainUid": "5d99-35"
},
"f796-38": {
"5d99-38": {
"renderedLength": 2821,
"gzipLength": 990,
"brotliLength": 0,
"mainUid": "f796-37"
"mainUid": "5d99-37"
},
"f796-40": {
"5d99-40": {
"renderedLength": 5705,
"gzipLength": 1352,
"brotliLength": 0,
"mainUid": "f796-39"
"mainUid": "5d99-39"
},
"f796-42": {
"5d99-42": {
"renderedLength": 1395,
"gzipLength": 558,
"brotliLength": 0,
"mainUid": "f796-41"
"mainUid": "5d99-41"
},
"f796-44": {
"renderedLength": 2963,
"gzipLength": 847,
"5d99-44": {
"renderedLength": 3715,
"gzipLength": 1056,
"brotliLength": 0,
"mainUid": "f796-43"
"mainUid": "5d99-43"
},
"f796-46": {
"5d99-46": {
"renderedLength": 1384,
"gzipLength": 502,
"brotliLength": 0,
"mainUid": "f796-45"
"mainUid": "5d99-45"
},
"f796-48": {
"5d99-48": {
"renderedLength": 1387,
"gzipLength": 483,
"brotliLength": 0,
"mainUid": "f796-47"
"mainUid": "5d99-47"
},
"f796-50": {
"renderedLength": 24120,
"gzipLength": 5498,
"5d99-50": {
"renderedLength": 24817,
"gzipLength": 5702,
"brotliLength": 0,
"mainUid": "f796-49"
"mainUid": "5d99-49"
},
"f796-52": {
"5d99-52": {
"renderedLength": 6843,
"gzipLength": 1704,
"brotliLength": 0,
"mainUid": "f796-51"
"mainUid": "5d99-51"
},
"f796-54": {
"5d99-54": {
"renderedLength": 0,
"gzipLength": 0,
"brotliLength": 0,
"mainUid": "f796-53"
"mainUid": "5d99-53"
}
},
"nodeMetas": {
"f796-31": {
"5d99-31": {
"id": "/node_modules/.pnpm/tiny-invariant@1.3.1/node_modules/tiny-invariant/dist/esm/tiny-invariant.js",
"moduleParts": {
"index.production.js": "f796-32"
"index.production.js": "5d99-32"
},

@@ -164,16 +164,16 @@ "imported": [],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-43"
"uid": "5d99-43"
},
{
"uid": "f796-49"
"uid": "5d99-49"
}
]
},
"f796-33": {
"5d99-33": {
"id": "/node_modules/.pnpm/tiny-warning@1.0.3/node_modules/tiny-warning/dist/tiny-warning.esm.js",
"moduleParts": {
"index.production.js": "f796-34"
"index.production.js": "5d99-34"
},

@@ -183,10 +183,10 @@ "imported": [],

{
"uid": "f796-53"
"uid": "5d99-53"
}
]
},
"f796-35": {
"5d99-35": {
"id": "/packages/router/src/history.ts",
"moduleParts": {
"index.production.js": "f796-36"
"index.production.js": "5d99-36"
},

@@ -196,13 +196,13 @@ "imported": [],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-49"
"uid": "5d99-49"
}
]
},
"f796-37": {
"5d99-37": {
"id": "/packages/router/src/utils.ts",
"moduleParts": {
"index.production.js": "f796-38"
"index.production.js": "5d99-38"
},

@@ -212,23 +212,23 @@ "imported": [],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-39"
"uid": "5d99-39"
},
{
"uid": "f796-51"
"uid": "5d99-51"
},
{
"uid": "f796-49"
"uid": "5d99-49"
}
]
},
"f796-39": {
"5d99-39": {
"id": "/packages/router/src/path.ts",
"moduleParts": {
"index.production.js": "f796-40"
"index.production.js": "5d99-40"
},
"imported": [
{
"uid": "f796-37"
"uid": "5d99-37"
}

@@ -238,16 +238,16 @@ ],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-43"
"uid": "5d99-43"
},
{
"uid": "f796-49"
"uid": "5d99-49"
}
]
},
"f796-41": {
"5d99-41": {
"id": "/packages/router/src/qss.ts",
"moduleParts": {
"index.production.js": "f796-42"
"index.production.js": "5d99-42"
},

@@ -257,20 +257,20 @@ "imported": [],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-47"
"uid": "5d99-47"
}
]
},
"f796-43": {
"5d99-43": {
"id": "/packages/router/src/route.ts",
"moduleParts": {
"index.production.js": "f796-44"
"index.production.js": "5d99-44"
},
"imported": [
{
"uid": "f796-31"
"uid": "5d99-31"
},
{
"uid": "f796-39"
"uid": "5d99-39"
}

@@ -280,10 +280,10 @@ ],

{
"uid": "f796-53"
"uid": "5d99-53"
}
]
},
"f796-45": {
"5d99-45": {
"id": "/packages/store/build/esm/index.js",
"moduleParts": {
"index.production.js": "f796-46"
"index.production.js": "5d99-46"
},

@@ -293,17 +293,17 @@ "imported": [],

{
"uid": "f796-51"
"uid": "5d99-51"
},
{
"uid": "f796-49"
"uid": "5d99-49"
}
]
},
"f796-47": {
"5d99-47": {
"id": "/packages/router/src/searchParams.ts",
"moduleParts": {
"index.production.js": "f796-48"
"index.production.js": "5d99-48"
},
"imported": [
{
"uid": "f796-41"
"uid": "5d99-41"
}

@@ -313,35 +313,35 @@ ],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-49"
"uid": "5d99-49"
}
]
},
"f796-49": {
"5d99-49": {
"id": "/packages/router/src/router.ts",
"moduleParts": {
"index.production.js": "f796-50"
"index.production.js": "5d99-50"
},
"imported": [
{
"uid": "f796-45"
"uid": "5d99-45"
},
{
"uid": "f796-31"
"uid": "5d99-31"
},
{
"uid": "f796-39"
"uid": "5d99-39"
},
{
"uid": "f796-51"
"uid": "5d99-51"
},
{
"uid": "f796-47"
"uid": "5d99-47"
},
{
"uid": "f796-37"
"uid": "5d99-37"
},
{
"uid": "f796-35"
"uid": "5d99-35"
}

@@ -351,23 +351,23 @@ ],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-51"
"uid": "5d99-51"
}
]
},
"f796-51": {
"5d99-51": {
"id": "/packages/router/src/routeMatch.ts",
"moduleParts": {
"index.production.js": "f796-52"
"index.production.js": "5d99-52"
},
"imported": [
{
"uid": "f796-45"
"uid": "5d99-45"
},
{
"uid": "f796-49"
"uid": "5d99-49"
},
{
"uid": "f796-37"
"uid": "5d99-37"
}

@@ -377,53 +377,53 @@ ],

{
"uid": "f796-53"
"uid": "5d99-53"
},
{
"uid": "f796-49"
"uid": "5d99-49"
}
]
},
"f796-53": {
"5d99-53": {
"id": "/packages/router/src/index.ts",
"moduleParts": {
"index.production.js": "f796-54"
"index.production.js": "5d99-54"
},
"imported": [
{
"uid": "f796-31"
"uid": "5d99-31"
},
{
"uid": "f796-33"
"uid": "5d99-33"
},
{
"uid": "f796-35"
"uid": "5d99-35"
},
{
"uid": "f796-55"
"uid": "5d99-55"
},
{
"uid": "f796-56"
"uid": "5d99-56"
},
{
"uid": "f796-39"
"uid": "5d99-39"
},
{
"uid": "f796-41"
"uid": "5d99-41"
},
{
"uid": "f796-43"
"uid": "5d99-43"
},
{
"uid": "f796-57"
"uid": "5d99-57"
},
{
"uid": "f796-51"
"uid": "5d99-51"
},
{
"uid": "f796-49"
"uid": "5d99-49"
},
{
"uid": "f796-47"
"uid": "5d99-47"
},
{
"uid": "f796-37"
"uid": "5d99-37"
}

@@ -434,3 +434,3 @@ ],

},
"f796-55": {
"5d99-55": {
"id": "/packages/router/src/frameworks.ts",

@@ -441,7 +441,7 @@ "moduleParts": {},

{
"uid": "f796-53"
"uid": "5d99-53"
}
]
},
"f796-56": {
"5d99-56": {
"id": "/packages/router/src/link.ts",

@@ -452,7 +452,7 @@ "moduleParts": {},

{
"uid": "f796-53"
"uid": "5d99-53"
}
]
},
"f796-57": {
"5d99-57": {
"id": "/packages/router/src/routeInfo.ts",

@@ -463,3 +463,3 @@ "moduleParts": {},

{
"uid": "f796-53"
"uid": "5d99-53"
}

@@ -466,0 +466,0 @@ ]

@@ -474,3 +474,2 @@ /**

addChildren: <TNewChildren extends AnyRoute[]>(children: TNewChildren) => Route<TParentRoute, TPath, TFullPath, TCustomId, TId, TSearchSchema, TFullSearchSchema, TParams, TAllParams, TParentContext, TAllParentContext, TRouteContext, TContext, TRouterContext, TNewChildren, TRoutesInfo>;
generate: (options: Omit<RouteOptions<TParentRoute, TCustomId, TPath, InferFullSearchSchema<TParentRoute>, TSearchSchema, TFullSearchSchema, TParentRoute['__types']['allParams'], TParams, TAllParams, TParentContext, TAllParentContext, TRouteContext, TContext>, 'path'>) => never;
}

@@ -477,0 +476,0 @@ type AnyRootRoute = RootRoute<any, any, any>;

@@ -520,7 +520,7 @@ /**

const isRoot = !allOptions?.path && !allOptions?.id;
const parent = this.options?.getParentRoute?.();
this.parentRoute = this.options?.getParentRoute?.();
if (isRoot) {
this.path = rootRouteId;
} else {
invariant(parent, `Child Route instances must pass a 'getParentRoute: () => ParentRoute' option that returns a Route instance.`);
invariant(this.parentRoute, `Child Route instances must pass a 'getParentRoute: () => ParentRoute' option that returns a Route instance.`);
}

@@ -536,3 +536,3 @@ let path = isRoot ? rootRouteId : allOptions.path;

// Strip the parentId prefix from the first level of children
let id = isRoot ? rootRouteId : joinPaths([parent.id === rootRouteId ? '' : parent.id, customId]);
let id = isRoot ? rootRouteId : joinPaths([this.parentRoute.id === rootRouteId ? '' : this.parentRoute.id, customId]);
if (path === rootRouteId) {

@@ -544,3 +544,3 @@ path = '/';

}
const fullPath = id === rootRouteId ? '/' : trimPathRight(joinPaths([parent.fullPath, path]));
const fullPath = id === rootRouteId ? '/' : trimPathRight(joinPaths([this.parentRoute.fullPath, path]));
this.path = path;

@@ -555,6 +555,30 @@ this.id = id;

};
generate = options => {
invariant(false, `route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `);
};
// generate = (
// options: Omit<
// RouteOptions<
// TParentRoute,
// TCustomId,
// TPath,
// InferFullSearchSchema<TParentRoute>,
// TSearchSchema,
// TFullSearchSchema,
// TParentRoute['__types']['allParams'],
// TParams,
// TAllParams,
// TParentContext,
// TAllParentContext,
// TRouteContext,
// TContext
// >,
// 'path'
// >,
// ) => {
// invariant(
// false,
// `route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `,
// )
// }
}
class RootRoute extends Route {

@@ -1252,3 +1276,3 @@ constructor(options) {

#buildRouteTree = routeTree => {
const recurseRoutes = routes => {
const recurseRoutes = (routes, parentRoute) => {
routes.forEach((route, i) => {

@@ -1260,8 +1284,3 @@ route.init({

const existingRoute = this.routesById[route.id];
if (existingRoute) {
{
console.warn(`Duplicate routes found with id: ${String(route.id)}`, this.routesById, route);
}
throw new Error();
}
invariant(!existingRoute, `Duplicate routes found with id: ${String(route.id)}`);
this.routesById[route.id] = route;

@@ -1306,2 +1325,15 @@ const children = route.children;

recurseRoutes([routeTree]);
const recurceCheckRoutes = (routes, parentRoute) => {
routes.forEach(route => {
if (route.isRoot) {
invariant(!parentRoute, 'Root routes can only be used as the root of a route tree.');
} else {
invariant(parentRoute ? route.parentRoute === parentRoute : true, `Expected a route with path "${route.path}" to be passed to its parent route "${route.parentRoute?.id}" in an addChildren() call, but was instead passed as a child of the "${parentRoute?.id}" route.`);
}
if (route.children) {
recurceCheckRoutes(route.children, route);
}
});
};
recurceCheckRoutes([routeTree], undefined);
return routeTree;

@@ -1308,0 +1340,0 @@ };

@@ -11,3 +11,3 @@ /**

*/
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).RouterCore={})}(this,(function(t){"use strict";function e(t,e){if(!t)throw new Error("Invariant failed")}const a="popstate";function s(t){let e=t.getLocation(),a=()=>{},s=new Set;const r=()=>{e=t.getLocation(),s.forEach((t=>t()))};return{get location(){return e},listen:e=>(0===s.size&&(a=t.listener(r)),s.add(e),()=>{s.delete(e),0===s.size&&a()}),push:(e,a)=>{t.pushState(e,a),r()},replace:(e,a)=>{t.replaceState(e,a),r()},go:e=>{t.go(e),r()},back:()=>{t.back(),r()},forward:()=>{t.forward(),r()},createHref:e=>t.createHref(e)}}function r(t){const e=t?.getHref??(()=>`${window.location.pathname}${window.location.hash}${window.location.search}`),r=t?.createHref??(t=>t);return s({getLocation:()=>i(e(),history.state),listener:t=>(window.addEventListener(a,t),()=>{window.removeEventListener(a,t)}),pushState:(t,e)=>{window.history.pushState({...e,key:n()},"",r(t))},replaceState:(t,e)=>{window.history.replaceState({...e,key:n()},"",r(t))},back:()=>window.history.back(),forward:()=>window.history.forward(),go:t=>window.history.go(t),createHref:t=>r(t)})}function o(t={initialEntries:["/"]}){const e=t.initialEntries;let a=t.initialIndex??e.length-1,r={};return s({getLocation:()=>i(e[a],r),listener:()=>()=>{},pushState:(t,s)=>{r={...s,key:n()},e.push(t),a++},replaceState:(t,s)=>{r={...s,key:n()},e[a]=t},back:()=>{a--},forward:()=>{a=Math.min(a+1,e.length-1)},go:t=>window.history.go(t),createHref:t=>t})}function i(t,e){let a=t.indexOf("#"),s=t.indexOf("?");return{href:t,pathname:t.substring(0,a>0?s>0?Math.min(a,s):a:s>0?s:t.length),hash:a>-1?t.substring(a,s):"",search:s>-1?t.substring(s):"",state:e}}function n(){return(Math.random()+1).toString(36).substring(7)}function h(t){return t[t.length-1]}function c(t,e){return"function"==typeof t?t(e):t}function u(t,e){return e.reduce(((e,a)=>(e[a]=t[a],e)),{})}function l(t,e){if(t===e)return t;const a=e,s=Array.isArray(t)&&Array.isArray(a);if(s||p(t)&&p(a)){const e=s?t.length:Object.keys(t).length,r=s?a:Object.keys(a),o=r.length,i=s?[]:{};let n=0;for(let e=0;e<o;e++){const o=s?e:r[e];i[o]=l(t[o],a[o]),i[o]===t[o]&&n++}return e===o&&n===e?t:i}return a}function p(t){if(!d(t))return!1;const e=t.constructor;if(void 0===e)return!0;const a=e.prototype;return!!d(a)&&!!a.hasOwnProperty("isPrototypeOf")}function d(t){return"[object Object]"===Object.prototype.toString.call(t)}function f(t,e){return t===e||typeof t==typeof e&&(p(t)&&p(e)?!Object.keys(e).some((a=>!f(t[a],e[a]))):!(!Array.isArray(t)||!Array.isArray(e))&&(t.length===e.length&&t.every(((t,a)=>f(t,e[a])))))}function m(t){return y(t.filter(Boolean).join("/"))}function y(t){return t.replace(/\/{2,}/g,"/")}function g(t){return"/"===t?t:t.replace(/^\/{1,}/,"")}function v(t){return"/"===t?t:t.replace(/\/{1,}$/,"")}function w(t){return v(g(t))}function _(t,e,a){e=e.replace(new RegExp(`^${t}`),"/"),a=a.replace(new RegExp(`^${t}`),"/");let s=b(e);const r=b(a);r.forEach(((t,e)=>{if("/"===t.value)e?e===r.length-1&&s.push(t):s=[t];else if(".."===t.value)s.length>1&&"/"===h(s)?.value&&s.pop(),s.pop();else{if("."===t.value)return;s.push(t)}}));return y(m([t,...s.map((t=>t.value))]))}function b(t){if(!t)return[];const e=[];if("/"===(t=y(t)).slice(0,1)&&(t=t.substring(1),e.push({type:"pathname",value:"/"})),!t)return e;const a=t.split("/").filter(Boolean);return e.push(...a.map((t=>"$"===t||"*"===t?{type:"wildcard",value:t}:"$"===t.charAt(0)?{type:"param",value:t}:{type:"pathname",value:t}))),"/"===t.slice(-1)&&(t=t.substring(1),e.push({type:"pathname",value:"/"})),e}function S(t,e,a){return m(b(t).map((t=>["$","*"].includes(t.value)&&!a?"":"param"===t.type?e[t.value.substring(1)]??"":t.value)))}function L(t,e,a){const s=P(t,e,a);if(!a.to||s)return s??{}}function P(t,e,a){if(!e.startsWith(t))return;const s=b(e="/"!=t?e.substring(t.length):e),r=b(`${a.to??"$"}`);"/"===h(s)?.value&&s.pop();const o={};return(()=>{for(let t=0;t<Math.max(s.length,r.length);t++){const e=s[t],i=r[t],n=t===r.length-1,h=t===s.length-1;if(i){if("wildcard"===i.type)return!!e?.value&&(o["*"]=m(s.slice(t).map((t=>t.value))),!0);if("pathname"===i.type){if("/"===i.value&&!e?.value)return!0;if(e)if(a.caseSensitive){if(i.value!==e.value)return!1}else if(i.value.toLowerCase()!==e.value.toLowerCase())return!1}if(!e)return!1;if("param"===i.type){if("/"===e?.value)return!1;"$"!==e.value.charAt(0)&&(o[i.value.substring(1)]=e.value)}}if(n&&!h)return!!a.fuzzy}return!0})()?o:void 0}function x(t,e){var a,s,r,o="";for(a in t)if(void 0!==(r=t[a]))if(Array.isArray(r))for(s=0;s<r.length;s++)o&&(o+="&"),o+=encodeURIComponent(a)+"="+encodeURIComponent(r[s]);else o&&(o+="&"),o+=encodeURIComponent(a)+"="+encodeURIComponent(r);return(e||"")+o}function R(t){if(!t)return"";var e=decodeURIComponent(t);return"false"!==e&&("true"===e||("0"===e.charAt(0)?e:0*+e==0?+e:e))}function E(t){for(var e,a,s={},r=t.split("&");e=r.shift();)void 0!==s[a=(e=e.split("=")).shift()]?s[a]=[].concat(s[a],R(e.shift())):s[a]=R(e.shift());return s}const M="__root__";class C{constructor(t){this.options=t||{},this.isRoot=!t?.getParentRoute}init=t=>{this.originalIndex=t.originalIndex,this.router=t.router;const a=this.options,s=!a?.path&&!a?.id,r=this.options?.getParentRoute?.();s?this.path=M:e(r);let o=s?M:a.path;o&&"/"!==o&&(o=w(o));const i=a?.id||o;let n=s?M:m([r.id===M?"":r.id,i]);o===M&&(o="/"),n!==M&&(n=m(["/",n]));const h=n===M?"/":v(m([r.fullPath,o]));this.path=o,this.id=n,this.fullPath=h};addChildren=t=>(this.children=t,this);generate=t=>{e(!1)}}class $ extends C{constructor(t){super(t)}static withRouterContext=()=>t=>new $(t)}
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).RouterCore={})}(this,(function(t){"use strict";function e(t,e){if(!t)throw new Error("Invariant failed")}const a="popstate";function s(t){let e=t.getLocation(),a=()=>{},s=new Set;const r=()=>{e=t.getLocation(),s.forEach((t=>t()))};return{get location(){return e},listen:e=>(0===s.size&&(a=t.listener(r)),s.add(e),()=>{s.delete(e),0===s.size&&a()}),push:(e,a)=>{t.pushState(e,a),r()},replace:(e,a)=>{t.replaceState(e,a),r()},go:e=>{t.go(e),r()},back:()=>{t.back(),r()},forward:()=>{t.forward(),r()},createHref:e=>t.createHref(e)}}function r(t){const e=t?.getHref??(()=>`${window.location.pathname}${window.location.hash}${window.location.search}`),r=t?.createHref??(t=>t);return s({getLocation:()=>i(e(),history.state),listener:t=>(window.addEventListener(a,t),()=>{window.removeEventListener(a,t)}),pushState:(t,e)=>{window.history.pushState({...e,key:n()},"",r(t))},replaceState:(t,e)=>{window.history.replaceState({...e,key:n()},"",r(t))},back:()=>window.history.back(),forward:()=>window.history.forward(),go:t=>window.history.go(t),createHref:t=>r(t)})}function o(t={initialEntries:["/"]}){const e=t.initialEntries;let a=t.initialIndex??e.length-1,r={};return s({getLocation:()=>i(e[a],r),listener:()=>()=>{},pushState:(t,s)=>{r={...s,key:n()},e.push(t),a++},replaceState:(t,s)=>{r={...s,key:n()},e[a]=t},back:()=>{a--},forward:()=>{a=Math.min(a+1,e.length-1)},go:t=>window.history.go(t),createHref:t=>t})}function i(t,e){let a=t.indexOf("#"),s=t.indexOf("?");return{href:t,pathname:t.substring(0,a>0?s>0?Math.min(a,s):a:s>0?s:t.length),hash:a>-1?t.substring(a,s):"",search:s>-1?t.substring(s):"",state:e}}function n(){return(Math.random()+1).toString(36).substring(7)}function h(t){return t[t.length-1]}function c(t,e){return"function"==typeof t?t(e):t}function u(t,e){return e.reduce(((e,a)=>(e[a]=t[a],e)),{})}function l(t,e){if(t===e)return t;const a=e,s=Array.isArray(t)&&Array.isArray(a);if(s||p(t)&&p(a)){const e=s?t.length:Object.keys(t).length,r=s?a:Object.keys(a),o=r.length,i=s?[]:{};let n=0;for(let e=0;e<o;e++){const o=s?e:r[e];i[o]=l(t[o],a[o]),i[o]===t[o]&&n++}return e===o&&n===e?t:i}return a}function p(t){if(!d(t))return!1;const e=t.constructor;if(void 0===e)return!0;const a=e.prototype;return!!d(a)&&!!a.hasOwnProperty("isPrototypeOf")}function d(t){return"[object Object]"===Object.prototype.toString.call(t)}function f(t,e){return t===e||typeof t==typeof e&&(p(t)&&p(e)?!Object.keys(e).some((a=>!f(t[a],e[a]))):!(!Array.isArray(t)||!Array.isArray(e))&&(t.length===e.length&&t.every(((t,a)=>f(t,e[a])))))}function m(t){return y(t.filter(Boolean).join("/"))}function y(t){return t.replace(/\/{2,}/g,"/")}function g(t){return"/"===t?t:t.replace(/^\/{1,}/,"")}function v(t){return"/"===t?t:t.replace(/\/{1,}$/,"")}function w(t){return v(g(t))}function _(t,e,a){e=e.replace(new RegExp(`^${t}`),"/"),a=a.replace(new RegExp(`^${t}`),"/");let s=S(e);const r=S(a);r.forEach(((t,e)=>{if("/"===t.value)e?e===r.length-1&&s.push(t):s=[t];else if(".."===t.value)s.length>1&&"/"===h(s)?.value&&s.pop(),s.pop();else{if("."===t.value)return;s.push(t)}}));return y(m([t,...s.map((t=>t.value))]))}function S(t){if(!t)return[];const e=[];if("/"===(t=y(t)).slice(0,1)&&(t=t.substring(1),e.push({type:"pathname",value:"/"})),!t)return e;const a=t.split("/").filter(Boolean);return e.push(...a.map((t=>"$"===t||"*"===t?{type:"wildcard",value:t}:"$"===t.charAt(0)?{type:"param",value:t}:{type:"pathname",value:t}))),"/"===t.slice(-1)&&(t=t.substring(1),e.push({type:"pathname",value:"/"})),e}function b(t,e,a){return m(S(t).map((t=>["$","*"].includes(t.value)&&!a?"":"param"===t.type?e[t.value.substring(1)]??"":t.value)))}function L(t,e,a){const s=P(t,e,a);if(!a.to||s)return s??{}}function P(t,e,a){if(!e.startsWith(t))return;const s=S(e="/"!=t?e.substring(t.length):e),r=S(`${a.to??"$"}`);"/"===h(s)?.value&&s.pop();const o={};return(()=>{for(let t=0;t<Math.max(s.length,r.length);t++){const e=s[t],i=r[t],n=t===r.length-1,h=t===s.length-1;if(i){if("wildcard"===i.type)return!!e?.value&&(o["*"]=m(s.slice(t).map((t=>t.value))),!0);if("pathname"===i.type){if("/"===i.value&&!e?.value)return!0;if(e)if(a.caseSensitive){if(i.value!==e.value)return!1}else if(i.value.toLowerCase()!==e.value.toLowerCase())return!1}if(!e)return!1;if("param"===i.type){if("/"===e?.value)return!1;"$"!==e.value.charAt(0)&&(o[i.value.substring(1)]=e.value)}}if(n&&!h)return!!a.fuzzy}return!0})()?o:void 0}function R(t,e){var a,s,r,o="";for(a in t)if(void 0!==(r=t[a]))if(Array.isArray(r))for(s=0;s<r.length;s++)o&&(o+="&"),o+=encodeURIComponent(a)+"="+encodeURIComponent(r[s]);else o&&(o+="&"),o+=encodeURIComponent(a)+"="+encodeURIComponent(r);return(e||"")+o}function x(t){if(!t)return"";var e=decodeURIComponent(t);return"false"!==e&&("true"===e||("0"===e.charAt(0)?e:0*+e==0?+e:e))}function E(t){for(var e,a,s={},r=t.split("&");e=r.shift();)void 0!==s[a=(e=e.split("=")).shift()]?s[a]=[].concat(s[a],x(e.shift())):s[a]=x(e.shift());return s}const M="__root__";class C{constructor(t){this.options=t||{},this.isRoot=!t?.getParentRoute}init=t=>{this.originalIndex=t.originalIndex,this.router=t.router;const a=this.options,s=!a?.path&&!a?.id;this.parentRoute=this.options?.getParentRoute?.(),s?this.path=M:e(this.parentRoute);let r=s?M:a.path;r&&"/"!==r&&(r=w(r));const o=a?.id||r;let i=s?M:m([this.parentRoute.id===M?"":this.parentRoute.id,o]);r===M&&(r="/"),i!==M&&(i=m(["/",i]));const n=i===M?"/":v(m([this.parentRoute.fullPath,r]));this.path=r,this.id=i,this.fullPath=n};addChildren=t=>(this.children=t,this)}class $ extends C{constructor(t){super(t)}static withRouterContext=()=>t=>new $(t)}
/**

@@ -22,3 +22,3 @@ * store

* @license MIT
*/class I{listeners=new Set;batching=!1;queue=[];constructor(t,e){this.state=t,this.options=e}subscribe=t=>{this.listeners.add(t);const e=this.options?.onSubscribe?.(t,this);return()=>{this.listeners.delete(t),e?.()}};setState=t=>{const e=this.state;this.state=this.options?.updateFn?this.options.updateFn(e)(t):t(e),this.state!==e&&(this.options?.onUpdate?.(this.state,e),this.queue.push((()=>{this.listeners.forEach((t=>t(this.state,e)))})),this.#t())};#t=()=>{this.batching||(this.queue.forEach((t=>t())),this.queue=[])};batch=t=>{this.batching=!0,t(),this.batching=!1,this.#t()}}const A=T(JSON.parse),k=H(JSON.stringify);function T(t){return e=>{"?"===e.substring(0,1)&&(e=e.substring(1));let a=E(e);for(let e in a){const s=a[e];if("string"==typeof s)try{a[e]=t(s)}catch(t){}}return a}}function H(t){return e=>{(e={...e})&&Object.keys(e).forEach((a=>{const s=e[a];if(void 0===s||void 0===s)delete e[a];else if(s&&"object"==typeof s&&null!==s)try{e[a]=t(s)}catch(t){}}));const a=x(e).toString();return a?`?${a}`:""}}const j=async({router:t,routeMatch:e})=>{const a=t.buildNext({to:".",search:t=>({...t??{},__data:{matchId:e.id}})}),s=await fetch(a.href,{method:"GET",signal:e.abortController.signal});if(s.ok)return s.json();throw new Error("Failed to fetch match data")};const D="undefined"==typeof window||!window.document.createElement;function O(){return{status:"idle",latestLocation:null,currentLocation:null,currentMatches:[],lastUpdated:Date.now()}}function N(t){return!!t?.isRedirect}const U=["component","errorComponent","pendingComponent"];class B{abortController=new AbortController;constructor(t,e,a){Object.assign(this,{route:e,router:t,id:a.id,pathname:a.pathname,params:a.params,__store:new I({updatedAt:0,routeSearch:{},search:{},status:"idle"},{onUpdate:t=>{this.state=t}})}),this.state=this.__store.state,U.map((async t=>{const e=this.route.options[t];"function"!=typeof this[t]&&(this[t]=e)})),"idle"!==this.state.status||this.#e()||this.__store.setState((t=>({...t,status:"success"})))}#e=()=>!(!this.route.options.onLoad&&!U.some((t=>this.route.options[t]?.preload)));__commit=()=>{const{routeSearch:t,search:e,context:a,routeContext:s}=this.#a({location:this.router.state.currentLocation});this.context=a,this.routeContext=s,this.__store.setState((a=>({...a,routeSearch:l(a.routeSearch,t),search:l(a.search,e)})))};cancel=()=>{this.abortController?.abort()};#s=t=>{const e=this.parentMatch?this.parentMatch.#s(t):{search:t.location.search,routeSearch:t.location.search};try{const t=("object"==typeof this.route.options.validateSearch?this.route.options.validateSearch.parse:this.route.options.validateSearch)?.(e.search)??{};return{routeSearch:t,search:{...e.search,...t}}}catch(t){if(N(t))throw t;this.route.options.onValidateSearchError?.(t);const e=new Error("Invalid search params found",{cause:t});throw e.code="INVALID_SEARCH_PARAMS",e}};#a=t=>{const{search:e,routeSearch:a}=this.#s(t),s=this.route.options.getContext?.({parentContext:this.parentMatch?.routeContext??{},context:this.parentMatch?.context??this.router?.options.context??{},params:this.params,search:e})||{};return{routeSearch:a,search:e,context:{...this.parentMatch?.context??this.router?.options.context,...s},routeContext:s}};__load=async t=>{let e;this.parentMatch=t.parentMatch;try{e=this.#a(t)}catch(t){return N(t)?void this.router.navigate(t):(this.route.options.onError?.(t),void this.__store.setState((e=>({...e,status:"error",error:t}))))}const{routeSearch:a,search:s,context:r,routeContext:o}=e;if("pending"!==this.state.status)return this.__loadPromise=Promise.resolve().then((async()=>{const e=""+Date.now()+Math.random();this.#r=e;const i=()=>e!==this.#r?this.__loadPromise:void 0;let n;"idle"===this.state.status&&this.__store.setState((t=>({...t,status:"pending"})));const h=(async()=>{await Promise.all(U.map((async t=>{const e=this.route.options[t];this[t]?.preload&&(this[t]=await this.router.options.loadComponent(e))})))})(),c=Promise.resolve().then((()=>{if(this.route.options.onLoad)return this.route.options.onLoad({params:this.params,routeSearch:a,search:s,signal:this.abortController.signal,preload:!!t?.preload,routeContext:o,context:r})}));try{if(await Promise.all([h,c]),n=i())return await n;this.__store.setState((t=>({...t,error:void 0,status:"success",updatedAt:Date.now()})))}catch(t){if(N(t))return void this.router.navigate(t);this.route.options.onLoadError?.(t),this.route.options.onError?.(t),this.__store.setState((e=>({...e,error:t,status:"error",updatedAt:Date.now()})))}finally{delete this.__loadPromise}})),this.__loadPromise};#r=""}t.RootRoute=$,t.Route=C,t.RouteMatch=B,t.Router=class{#o;startedLoadingAt=Date.now();resolveNavigation=()=>{};constructor(t){this.options={defaultPreloadDelay:50,context:void 0,...t,stringifySearch:t?.stringifySearch??k,parseSearch:t?.parseSearch??A,fetchServerDataFn:t?.fetchServerDataFn??j},this.__store=new I(O(),{onUpdate:t=>{this.state=t}}),this.state=this.__store.state,this.basepath="",this.update(t),this.options.Router?.(this);const e=this.buildNext({hash:!0,fromCurrent:!0,search:!0,state:!0});this.state.latestLocation.href!==e.href&&this.#i({...e,replace:!0})}reset=()=>{this.__store.setState((t=>Object.assign(t,O())))};mount=()=>(D||this.state.currentMatches.length||this.safeLoad(),()=>{});update=t=>{if(Object.assign(this.options,t),!this.history||this.options.history&&this.options.history!==this.history){this.#o&&this.#o(),this.history=this.options.history??(D?o():r());const t=this.#n();this.__store.setState((e=>({...e,latestLocation:t,currentLocation:t}))),this.#o=this.history.listen((()=>{this.safeLoad({next:this.#n(this.state.latestLocation)})}))}const{basepath:e,routeTree:a}=this.options;return this.basepath=`/${w(e??"")??""}`,a&&(this.routesById={},this.routeTree=this.#h(a)),this};buildNext=t=>{const e=this.#c(t),a=this.matchRoutes(e.pathname);return this.#c({...t,__matches:a})};cancelMatches=()=>{[...this.state.currentMatches,...this.state.pendingMatches||[]].forEach((t=>{t.cancel()}))};safeLoad=t=>{this.load(t).catch((t=>{console.warn(t),e(!1)}))};load=async t=>{let e=Date.now();const a=e;let s;if(this.startedLoadingAt=a,this.cancelMatches(),this.__store.batch((()=>{t?.next&&this.__store.setState((e=>({...e,latestLocation:t.next}))),s=this.matchRoutes(this.state.latestLocation.pathname,{strictParseParams:!0}),this.__store.setState((t=>({...t,status:"pending",pendingMatches:s,pendingLocation:this.state.latestLocation})))})),await this.loadMatches(s,this.state.pendingLocation),this.startedLoadingAt!==a)return this.navigationPromise;const r=this.state.currentMatches,o=[],i=[];r.forEach((t=>{s.find((e=>e.id===t.id))?i.push(t):o.push(t)}));const n=s.filter((t=>!r.find((e=>e.id===t.id))));e=Date.now(),o.forEach((t=>{t.__onExit?.({params:t.params,search:t.state.routeSearch}),"error"===t.state.status&&this.__store.setState((t=>({...t,status:"idle",error:void 0})))})),i.forEach((t=>{t.route.options.onTransition?.({params:t.params,search:t.state.routeSearch})})),n.forEach((t=>{t.__onExit=t.route.options.onLoaded?.({params:t.params,search:t.state.search})}));const h=this.state.currentLocation;this.__store.setState((t=>({...t,status:"idle",currentLocation:this.state.latestLocation,currentMatches:s,pendingLocation:void 0,pendingMatches:void 0}))),s.forEach((t=>{t.__commit()})),h.href!==this.state.currentLocation.href&&this.options.onRouteChange?.(),this.resolveNavigation()};getRoute=t=>{const a=this.routesById[t];return e(a),a};loadRoute=async(t=this.state.latestLocation)=>{const e=this.buildNext(t),a=this.matchRoutes(e.pathname,{strictParseParams:!0});return await this.loadMatches(a,e),a};preloadRoute=async(t=this.state.latestLocation)=>{const e=this.buildNext(t),a=this.matchRoutes(e.pathname,{strictParseParams:!0});return await this.loadMatches(a,e,{preload:!0}),a};matchRoutes=(t,e)=>{const a=[];if(!this.routeTree)return a;const s=[...this.state.currentMatches,...this.state.pendingMatches??[]],r=async o=>{let i=h(a)?.params??{};const n=this.options.filterRoutes?.(o)??o;let c=[];const u=(a,s)=>(s.some((s=>{const r=s.children;if(!s.path&&r?.length)return u([...c,s],r);const o=!("/"===s.path&&!r?.length),n=L(this.basepath,t,{to:s.fullPath,fuzzy:o,caseSensitive:s.options.caseSensitive??this.options.caseSensitive});if(n){let t;try{t=s.options.parseParams?.(n)??n}catch(t){if(e?.strictParseParams)throw t}i={...i,...t}}return n&&(c=[...a,s]),!!c.length})),!!c.length);if(u([],n),!c.length)return;c.forEach((t=>{const e=S(t.path,i),r=S(t.id,i,!0),o=s.find((t=>t.id===r))||new B(this,t,{id:r,params:i,pathname:m([this.basepath,e])});a.push(o)}));const l=h(c).children;l?.length&&r(l)};return r([this.routeTree]),a};loadMatches=async(t,e,a)=>{await Promise.all(t.map((async t=>{try{await(t.route.options.beforeLoad?.({router:this,match:t}))}catch(e){throw a?.preload||t.route.options.onBeforeLoadError?.(e),t.route.options.onError?.(e),e}})));const s=t.map((async(s,r)=>{const o=t[r-1];s.__load({preload:a?.preload,location:e,parentMatch:o}),await s.__loadPromise,o&&await o.__loadPromise}));await Promise.all(s)};reload=()=>{this.navigate({fromCurrent:!0,replace:!0,search:!0})};resolvePath=(t,e)=>_(this.basepath,t,y(e));navigate=async({from:t,to:a="",search:s,hash:r,replace:o,params:i})=>{const n=String(a),h=void 0===t?t:String(t);let c;try{new URL(`${n}`),c=!0}catch(t){}return e(!c),this.#i({from:h,to:n,search:s,hash:r,replace:o,params:i})};matchRoute=(t,e)=>{t={...t,to:t.to?this.resolvePath(t.from??"",t.to):void 0};const a=this.buildNext(t),s=e?.pending?this.state.pendingLocation:this.state.currentLocation;if(!s)return!1;const r=L(this.basepath,s.pathname,{...e,to:a.pathname});return!!r&&(e?.includeSearch??1?!!f(s.search,a.search)&&r:r)};buildLink=({from:t,to:e=".",search:a,params:s,hash:r,target:o,replace:i,activeOptions:n,preload:h,preloadDelay:c,disabled:u})=>{try{return new URL(`${e}`),{type:"external",href:e}}catch(t){}const l={from:t,to:e,search:a,params:s,hash:r,replace:i},p=this.buildNext(l);h=h??this.options.defaultPreload;const d=c??this.options.defaultPreloadDelay??0,m=this.state.currentLocation.pathname.split("/"),y=p.pathname.split("/").every(((t,e)=>t===m[e])),g=n?.exact?this.state.currentLocation.pathname===p.pathname:y,v=!n?.includeHash||this.state.currentLocation.hash===p.hash,w=!(n?.includeSearch??1)||f(this.state.currentLocation.search,p.search);return{type:"internal",next:p,handleFocus:t=>{h&&this.preloadRoute(l).catch((t=>{console.warn(t),console.warn("Error preloading route! ☝️")}))},handleClick:t=>{u||function(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}(t)||t.defaultPrevented||o&&"_self"!==o||0!==t.button||(t.preventDefault(),this.#i(l))},handleEnter:t=>{const e=t.target||{};if(h){if(e.preloadTimeout)return;e.preloadTimeout=setTimeout((()=>{e.preloadTimeout=null,this.preloadRoute(l).catch((t=>{console.warn(t),console.warn("Error preloading route! ☝️")}))}),d)}},handleLeave:t=>{const e=t.target||{};e.preloadTimeout&&(clearTimeout(e.preloadTimeout),e.preloadTimeout=null)},handleTouchStart:t=>{this.preloadRoute(l).catch((t=>{console.warn(t),console.warn("Error preloading route! ☝️")}))},isActive:g&&v&&w,disabled:u}};dehydrate=()=>({state:{...u(this.state,["latestLocation","currentLocation","status","lastUpdated"]),currentMatches:this.state.currentMatches.map((t=>({id:t.id,state:{status:t.state.status}})))}});hydrate=t=>{this.__store.setState((a=>{const s=this.matchRoutes(t.state.latestLocation.pathname,{strictParseParams:!0});return s.forEach(((a,s)=>{const r=t.state.currentMatches[s];e(r&&r.id===a.id),a.__store.setState((t=>({...t,...r.state})))})),{...a,...t.state,currentMatches:s}}))};#h=t=>{const e=t=>{t.forEach(((t,a)=>{t.init({originalIndex:a,router:this});if(this.routesById[t.id])throw new Error;this.routesById[t.id]=t;const s=t.children;s?.length&&(e(s),t.children=s.map(((t,e)=>{const a=b(g(y(t.path??"/")));for(;a.length>1&&"/"===a[0]?.value;)a.shift();let s=0;return a.forEach(((t,e)=>{let a=1;for(;e--;)a*=.001;"pathname"===t.type&&"/"!==t.value?s+=1*a:"param"===t.type?s+=2*a:"wildcard"===t.type&&(s+=3*a)})),{child:t,parsed:a,index:e,score:s}})).sort(((t,e)=>t.score!==e.score?t.score-e.score:t.index-e.index)).map((t=>t.child)))}))};return e([t]),t};#n=t=>{let{pathname:e,search:a,hash:s,state:r}=this.history.location;const o=this.options.parseSearch(a);return{pathname:e,searchStr:a,search:l(t?.search,o),hash:s.split("#").reverse()[0]??"",href:`${e}${a}${s}`,state:r,key:r?.key||"__init__"}};#c=(t={})=>{t.fromCurrent=t.fromCurrent??""===t.to;const e=t.fromCurrent?this.state.latestLocation.pathname:t.from??this.state.latestLocation.pathname;let a=_(this.basepath??"/",e,`${t.to??""}`);const s={...h(this.matchRoutes(this.state.latestLocation.pathname,{strictParseParams:!0}))?.params};let r=!0===(t.params??!0)?s:c(t.params,s);r&&t.__matches?.map((t=>t.route.options.stringifyParams)).filter(Boolean).forEach((t=>{r={...r,...t(r)}})),a=S(a,r??{});const o=t.__matches?.map((t=>t.route.options.preSearchFilters??[])).flat().filter(Boolean)??[],i=t.__matches?.map((t=>t.route.options.postSearchFilters??[])).flat().filter(Boolean)??[],n=o?.length?o?.reduce(((t,e)=>e(t)),this.state.latestLocation.search):this.state.latestLocation.search,u=!0===t.search?n:t.search?c(t.search,n)??{}:o?.length?n:{},p=i?.length?i.reduce(((t,e)=>e(t)),u):u,d=l(this.state.latestLocation.search,p),f=this.options.stringifySearch(d);let m=!0===t.hash?this.state.latestLocation.hash:c(t.hash,this.state.latestLocation.hash);m=m?`#${m}`:"";return{pathname:a,search:d,searchStr:f,state:!0===t.state?this.state.latestLocation.state:c(t.state,this.state.latestLocation.state),hash:m,href:this.history.createHref(`${a}${f}${m}`),key:t.key}};#i=async t=>{const e=this.buildNext(t),a=""+Date.now()+Math.random();this.navigateTimeout&&clearTimeout(this.navigateTimeout);let s="replace";t.replace||(s="push");this.state.latestLocation.href===e.href&&!e.key&&(s="replace");const r=`${e.pathname}${e.searchStr}${e.hash?`#${e.hash}`:""}`;return this.history["push"===s?"push":"replace"](r,{id:a,...e.state}),this.navigationPromise=new Promise((t=>{const e=this.resolveNavigation;this.resolveNavigation=()=>{e(),t()}}))}},t.cleanPath=y,t.createBrowserHistory=r,t.createHashHistory=function(){return r({getHref:()=>window.location.hash.substring(1),createHref:t=>`#${t}`})},t.createMemoryHistory=o,t.decode=E,t.defaultFetchServerDataFn=j,t.defaultParseSearch=A,t.defaultStringifySearch=k,t.encode=x,t.functionalUpdate=c,t.interpolatePath=S,t.invariant=e,t.isPlainObject=p,t.isRedirect=N,t.joinPaths=m,t.last=h,t.matchByPath=P,t.matchPathname=L,t.parsePathname=b,t.parseSearchWith=T,t.partialDeepEqual=f,t.pick=u,t.redirect=function(t){return t.isRedirect=!0,t},t.replaceEqualDeep=l,t.resolvePath=_,t.rootRouteId=M,t.stringifySearchWith=H,t.trimPath=w,t.trimPathLeft=g,t.trimPathRight=v,t.warning=function(t,e){},Object.defineProperty(t,"__esModule",{value:!0})}));
*/class I{listeners=new Set;batching=!1;queue=[];constructor(t,e){this.state=t,this.options=e}subscribe=t=>{this.listeners.add(t);const e=this.options?.onSubscribe?.(t,this);return()=>{this.listeners.delete(t),e?.()}};setState=t=>{const e=this.state;this.state=this.options?.updateFn?this.options.updateFn(e)(t):t(e),this.state!==e&&(this.options?.onUpdate?.(this.state,e),this.queue.push((()=>{this.listeners.forEach((t=>t(this.state,e)))})),this.#t())};#t=()=>{this.batching||(this.queue.forEach((t=>t())),this.queue=[])};batch=t=>{this.batching=!0,t(),this.batching=!1,this.#t()}}const A=T(JSON.parse),k=H(JSON.stringify);function T(t){return e=>{"?"===e.substring(0,1)&&(e=e.substring(1));let a=E(e);for(let e in a){const s=a[e];if("string"==typeof s)try{a[e]=t(s)}catch(t){}}return a}}function H(t){return e=>{(e={...e})&&Object.keys(e).forEach((a=>{const s=e[a];if(void 0===s||void 0===s)delete e[a];else if(s&&"object"==typeof s&&null!==s)try{e[a]=t(s)}catch(t){}}));const a=R(e).toString();return a?`?${a}`:""}}const j=async({router:t,routeMatch:e})=>{const a=t.buildNext({to:".",search:t=>({...t??{},__data:{matchId:e.id}})}),s=await fetch(a.href,{method:"GET",signal:e.abortController.signal});if(s.ok)return s.json();throw new Error("Failed to fetch match data")};const D="undefined"==typeof window||!window.document.createElement;function O(){return{status:"idle",latestLocation:null,currentLocation:null,currentMatches:[],lastUpdated:Date.now()}}function N(t){return!!t?.isRedirect}const U=["component","errorComponent","pendingComponent"];class B{abortController=new AbortController;constructor(t,e,a){Object.assign(this,{route:e,router:t,id:a.id,pathname:a.pathname,params:a.params,__store:new I({updatedAt:0,routeSearch:{},search:{},status:"idle"},{onUpdate:t=>{this.state=t}})}),this.state=this.__store.state,U.map((async t=>{const e=this.route.options[t];"function"!=typeof this[t]&&(this[t]=e)})),"idle"!==this.state.status||this.#e()||this.__store.setState((t=>({...t,status:"success"})))}#e=()=>!(!this.route.options.onLoad&&!U.some((t=>this.route.options[t]?.preload)));__commit=()=>{const{routeSearch:t,search:e,context:a,routeContext:s}=this.#a({location:this.router.state.currentLocation});this.context=a,this.routeContext=s,this.__store.setState((a=>({...a,routeSearch:l(a.routeSearch,t),search:l(a.search,e)})))};cancel=()=>{this.abortController?.abort()};#s=t=>{const e=this.parentMatch?this.parentMatch.#s(t):{search:t.location.search,routeSearch:t.location.search};try{const t=("object"==typeof this.route.options.validateSearch?this.route.options.validateSearch.parse:this.route.options.validateSearch)?.(e.search)??{};return{routeSearch:t,search:{...e.search,...t}}}catch(t){if(N(t))throw t;this.route.options.onValidateSearchError?.(t);const e=new Error("Invalid search params found",{cause:t});throw e.code="INVALID_SEARCH_PARAMS",e}};#a=t=>{const{search:e,routeSearch:a}=this.#s(t),s=this.route.options.getContext?.({parentContext:this.parentMatch?.routeContext??{},context:this.parentMatch?.context??this.router?.options.context??{},params:this.params,search:e})||{};return{routeSearch:a,search:e,context:{...this.parentMatch?.context??this.router?.options.context,...s},routeContext:s}};__load=async t=>{let e;this.parentMatch=t.parentMatch;try{e=this.#a(t)}catch(t){return N(t)?void this.router.navigate(t):(this.route.options.onError?.(t),void this.__store.setState((e=>({...e,status:"error",error:t}))))}const{routeSearch:a,search:s,context:r,routeContext:o}=e;if("pending"!==this.state.status)return this.__loadPromise=Promise.resolve().then((async()=>{const e=""+Date.now()+Math.random();this.#r=e;const i=()=>e!==this.#r?this.__loadPromise:void 0;let n;"idle"===this.state.status&&this.__store.setState((t=>({...t,status:"pending"})));const h=(async()=>{await Promise.all(U.map((async t=>{const e=this.route.options[t];this[t]?.preload&&(this[t]=await this.router.options.loadComponent(e))})))})(),c=Promise.resolve().then((()=>{if(this.route.options.onLoad)return this.route.options.onLoad({params:this.params,routeSearch:a,search:s,signal:this.abortController.signal,preload:!!t?.preload,routeContext:o,context:r})}));try{if(await Promise.all([h,c]),n=i())return await n;this.__store.setState((t=>({...t,error:void 0,status:"success",updatedAt:Date.now()})))}catch(t){if(N(t))return void this.router.navigate(t);this.route.options.onLoadError?.(t),this.route.options.onError?.(t),this.__store.setState((e=>({...e,error:t,status:"error",updatedAt:Date.now()})))}finally{delete this.__loadPromise}})),this.__loadPromise};#r=""}t.RootRoute=$,t.Route=C,t.RouteMatch=B,t.Router=class{#o;startedLoadingAt=Date.now();resolveNavigation=()=>{};constructor(t){this.options={defaultPreloadDelay:50,context:void 0,...t,stringifySearch:t?.stringifySearch??k,parseSearch:t?.parseSearch??A,fetchServerDataFn:t?.fetchServerDataFn??j},this.__store=new I(O(),{onUpdate:t=>{this.state=t}}),this.state=this.__store.state,this.basepath="",this.update(t),this.options.Router?.(this);const e=this.buildNext({hash:!0,fromCurrent:!0,search:!0,state:!0});this.state.latestLocation.href!==e.href&&this.#i({...e,replace:!0})}reset=()=>{this.__store.setState((t=>Object.assign(t,O())))};mount=()=>(D||this.state.currentMatches.length||this.safeLoad(),()=>{});update=t=>{if(Object.assign(this.options,t),!this.history||this.options.history&&this.options.history!==this.history){this.#o&&this.#o(),this.history=this.options.history??(D?o():r());const t=this.#n();this.__store.setState((e=>({...e,latestLocation:t,currentLocation:t}))),this.#o=this.history.listen((()=>{this.safeLoad({next:this.#n(this.state.latestLocation)})}))}const{basepath:e,routeTree:a}=this.options;return this.basepath=`/${w(e??"")??""}`,a&&(this.routesById={},this.routeTree=this.#h(a)),this};buildNext=t=>{const e=this.#c(t),a=this.matchRoutes(e.pathname);return this.#c({...t,__matches:a})};cancelMatches=()=>{[...this.state.currentMatches,...this.state.pendingMatches||[]].forEach((t=>{t.cancel()}))};safeLoad=t=>{this.load(t).catch((t=>{console.warn(t),e(!1)}))};load=async t=>{let e=Date.now();const a=e;let s;if(this.startedLoadingAt=a,this.cancelMatches(),this.__store.batch((()=>{t?.next&&this.__store.setState((e=>({...e,latestLocation:t.next}))),s=this.matchRoutes(this.state.latestLocation.pathname,{strictParseParams:!0}),this.__store.setState((t=>({...t,status:"pending",pendingMatches:s,pendingLocation:this.state.latestLocation})))})),await this.loadMatches(s,this.state.pendingLocation),this.startedLoadingAt!==a)return this.navigationPromise;const r=this.state.currentMatches,o=[],i=[];r.forEach((t=>{s.find((e=>e.id===t.id))?i.push(t):o.push(t)}));const n=s.filter((t=>!r.find((e=>e.id===t.id))));e=Date.now(),o.forEach((t=>{t.__onExit?.({params:t.params,search:t.state.routeSearch}),"error"===t.state.status&&this.__store.setState((t=>({...t,status:"idle",error:void 0})))})),i.forEach((t=>{t.route.options.onTransition?.({params:t.params,search:t.state.routeSearch})})),n.forEach((t=>{t.__onExit=t.route.options.onLoaded?.({params:t.params,search:t.state.search})}));const h=this.state.currentLocation;this.__store.setState((t=>({...t,status:"idle",currentLocation:this.state.latestLocation,currentMatches:s,pendingLocation:void 0,pendingMatches:void 0}))),s.forEach((t=>{t.__commit()})),h.href!==this.state.currentLocation.href&&this.options.onRouteChange?.(),this.resolveNavigation()};getRoute=t=>{const a=this.routesById[t];return e(a),a};loadRoute=async(t=this.state.latestLocation)=>{const e=this.buildNext(t),a=this.matchRoutes(e.pathname,{strictParseParams:!0});return await this.loadMatches(a,e),a};preloadRoute=async(t=this.state.latestLocation)=>{const e=this.buildNext(t),a=this.matchRoutes(e.pathname,{strictParseParams:!0});return await this.loadMatches(a,e,{preload:!0}),a};matchRoutes=(t,e)=>{const a=[];if(!this.routeTree)return a;const s=[...this.state.currentMatches,...this.state.pendingMatches??[]],r=async o=>{let i=h(a)?.params??{};const n=this.options.filterRoutes?.(o)??o;let c=[];const u=(a,s)=>(s.some((s=>{const r=s.children;if(!s.path&&r?.length)return u([...c,s],r);const o=!("/"===s.path&&!r?.length),n=L(this.basepath,t,{to:s.fullPath,fuzzy:o,caseSensitive:s.options.caseSensitive??this.options.caseSensitive});if(n){let t;try{t=s.options.parseParams?.(n)??n}catch(t){if(e?.strictParseParams)throw t}i={...i,...t}}return n&&(c=[...a,s]),!!c.length})),!!c.length);if(u([],n),!c.length)return;c.forEach((t=>{const e=b(t.path,i),r=b(t.id,i,!0),o=s.find((t=>t.id===r))||new B(this,t,{id:r,params:i,pathname:m([this.basepath,e])});a.push(o)}));const l=h(c).children;l?.length&&r(l)};return r([this.routeTree]),a};loadMatches=async(t,e,a)=>{await Promise.all(t.map((async t=>{try{await(t.route.options.beforeLoad?.({router:this,match:t}))}catch(e){throw a?.preload||t.route.options.onBeforeLoadError?.(e),t.route.options.onError?.(e),e}})));const s=t.map((async(s,r)=>{const o=t[r-1];s.__load({preload:a?.preload,location:e,parentMatch:o}),await s.__loadPromise,o&&await o.__loadPromise}));await Promise.all(s)};reload=()=>{this.navigate({fromCurrent:!0,replace:!0,search:!0})};resolvePath=(t,e)=>_(this.basepath,t,y(e));navigate=async({from:t,to:a="",search:s,hash:r,replace:o,params:i})=>{const n=String(a),h=void 0===t?t:String(t);let c;try{new URL(`${n}`),c=!0}catch(t){}return e(!c),this.#i({from:h,to:n,search:s,hash:r,replace:o,params:i})};matchRoute=(t,e)=>{t={...t,to:t.to?this.resolvePath(t.from??"",t.to):void 0};const a=this.buildNext(t),s=e?.pending?this.state.pendingLocation:this.state.currentLocation;if(!s)return!1;const r=L(this.basepath,s.pathname,{...e,to:a.pathname});return!!r&&(e?.includeSearch??1?!!f(s.search,a.search)&&r:r)};buildLink=({from:t,to:e=".",search:a,params:s,hash:r,target:o,replace:i,activeOptions:n,preload:h,preloadDelay:c,disabled:u})=>{try{return new URL(`${e}`),{type:"external",href:e}}catch(t){}const l={from:t,to:e,search:a,params:s,hash:r,replace:i},p=this.buildNext(l);h=h??this.options.defaultPreload;const d=c??this.options.defaultPreloadDelay??0,m=this.state.currentLocation.pathname.split("/"),y=p.pathname.split("/").every(((t,e)=>t===m[e])),g=n?.exact?this.state.currentLocation.pathname===p.pathname:y,v=!n?.includeHash||this.state.currentLocation.hash===p.hash,w=!(n?.includeSearch??1)||f(this.state.currentLocation.search,p.search);return{type:"internal",next:p,handleFocus:t=>{h&&this.preloadRoute(l).catch((t=>{console.warn(t),console.warn("Error preloading route! ☝️")}))},handleClick:t=>{u||function(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}(t)||t.defaultPrevented||o&&"_self"!==o||0!==t.button||(t.preventDefault(),this.#i(l))},handleEnter:t=>{const e=t.target||{};if(h){if(e.preloadTimeout)return;e.preloadTimeout=setTimeout((()=>{e.preloadTimeout=null,this.preloadRoute(l).catch((t=>{console.warn(t),console.warn("Error preloading route! ☝️")}))}),d)}},handleLeave:t=>{const e=t.target||{};e.preloadTimeout&&(clearTimeout(e.preloadTimeout),e.preloadTimeout=null)},handleTouchStart:t=>{this.preloadRoute(l).catch((t=>{console.warn(t),console.warn("Error preloading route! ☝️")}))},isActive:g&&v&&w,disabled:u}};dehydrate=()=>({state:{...u(this.state,["latestLocation","currentLocation","status","lastUpdated"]),currentMatches:this.state.currentMatches.map((t=>({id:t.id,state:{status:t.state.status}})))}});hydrate=t=>{this.__store.setState((a=>{const s=this.matchRoutes(t.state.latestLocation.pathname,{strictParseParams:!0});return s.forEach(((a,s)=>{const r=t.state.currentMatches[s];e(r&&r.id===a.id),a.__store.setState((t=>({...t,...r.state})))})),{...a,...t.state,currentMatches:s}}))};#h=t=>{const a=(t,s)=>{t.forEach(((t,s)=>{t.init({originalIndex:s,router:this});e(!this.routesById[t.id],String(t.id)),this.routesById[t.id]=t;const r=t.children;r?.length&&(a(r),t.children=r.map(((t,e)=>{const a=S(g(y(t.path??"/")));for(;a.length>1&&"/"===a[0]?.value;)a.shift();let s=0;return a.forEach(((t,e)=>{let a=1;for(;e--;)a*=.001;"pathname"===t.type&&"/"!==t.value?s+=1*a:"param"===t.type?s+=2*a:"wildcard"===t.type&&(s+=3*a)})),{child:t,parsed:a,index:e,score:s}})).sort(((t,e)=>t.score!==e.score?t.score-e.score:t.index-e.index)).map((t=>t.child)))}))};a([t]);const s=(t,a)=>{t.forEach((t=>{t.isRoot?e(!a):e(!a||t.parentRoute===a,(t.path,t.parentRoute?.id,a?.id)),t.children&&s(t.children,t)}))};return s([t],void 0),t};#n=t=>{let{pathname:e,search:a,hash:s,state:r}=this.history.location;const o=this.options.parseSearch(a);return{pathname:e,searchStr:a,search:l(t?.search,o),hash:s.split("#").reverse()[0]??"",href:`${e}${a}${s}`,state:r,key:r?.key||"__init__"}};#c=(t={})=>{t.fromCurrent=t.fromCurrent??""===t.to;const e=t.fromCurrent?this.state.latestLocation.pathname:t.from??this.state.latestLocation.pathname;let a=_(this.basepath??"/",e,`${t.to??""}`);const s={...h(this.matchRoutes(this.state.latestLocation.pathname,{strictParseParams:!0}))?.params};let r=!0===(t.params??!0)?s:c(t.params,s);r&&t.__matches?.map((t=>t.route.options.stringifyParams)).filter(Boolean).forEach((t=>{r={...r,...t(r)}})),a=b(a,r??{});const o=t.__matches?.map((t=>t.route.options.preSearchFilters??[])).flat().filter(Boolean)??[],i=t.__matches?.map((t=>t.route.options.postSearchFilters??[])).flat().filter(Boolean)??[],n=o?.length?o?.reduce(((t,e)=>e(t)),this.state.latestLocation.search):this.state.latestLocation.search,u=!0===t.search?n:t.search?c(t.search,n)??{}:o?.length?n:{},p=i?.length?i.reduce(((t,e)=>e(t)),u):u,d=l(this.state.latestLocation.search,p),f=this.options.stringifySearch(d);let m=!0===t.hash?this.state.latestLocation.hash:c(t.hash,this.state.latestLocation.hash);m=m?`#${m}`:"";return{pathname:a,search:d,searchStr:f,state:!0===t.state?this.state.latestLocation.state:c(t.state,this.state.latestLocation.state),hash:m,href:this.history.createHref(`${a}${f}${m}`),key:t.key}};#i=async t=>{const e=this.buildNext(t),a=""+Date.now()+Math.random();this.navigateTimeout&&clearTimeout(this.navigateTimeout);let s="replace";t.replace||(s="push");this.state.latestLocation.href===e.href&&!e.key&&(s="replace");const r=`${e.pathname}${e.searchStr}${e.hash?`#${e.hash}`:""}`;return this.history["push"===s?"push":"replace"](r,{id:a,...e.state}),this.navigationPromise=new Promise((t=>{const e=this.resolveNavigation;this.resolveNavigation=()=>{e(),t()}}))}},t.cleanPath=y,t.createBrowserHistory=r,t.createHashHistory=function(){return r({getHref:()=>window.location.hash.substring(1),createHref:t=>`#${t}`})},t.createMemoryHistory=o,t.decode=E,t.defaultFetchServerDataFn=j,t.defaultParseSearch=A,t.defaultStringifySearch=k,t.encode=R,t.functionalUpdate=c,t.interpolatePath=b,t.invariant=e,t.isPlainObject=p,t.isRedirect=N,t.joinPaths=m,t.last=h,t.matchByPath=P,t.matchPathname=L,t.parsePathname=S,t.parseSearchWith=T,t.partialDeepEqual=f,t.pick=u,t.redirect=function(t){return t.isRedirect=!0,t},t.replaceEqualDeep=l,t.resolvePath=_,t.rootRouteId=M,t.stringifySearchWith=H,t.trimPath=w,t.trimPathLeft=g,t.trimPathRight=v,t.warning=function(t,e){},Object.defineProperty(t,"__esModule",{value:!0})}));
//# sourceMappingURL=index.production.js.map
{
"name": "@tanstack/router",
"author": "Tanner Linsley",
"version": "0.0.1-beta.76",
"version": "0.0.1-beta.77",
"license": "MIT",

@@ -6,0 +6,0 @@ "repository": "tanstack/router",

@@ -447,3 +447,3 @@ import { GetFrameworkGeneric } from './frameworks'

const parent = this.options?.getParentRoute?.()
this.parentRoute = this.options?.getParentRoute?.()

@@ -454,3 +454,3 @@ if (isRoot) {

invariant(
parent,
this.parentRoute,
`Child Route instances must pass a 'getParentRoute: () => ParentRoute' option that returns a Route instance.`,

@@ -473,3 +473,5 @@ )

: joinPaths([
(parent.id as any) === rootRouteId ? '' : parent.id,
(this.parentRoute.id as any) === rootRouteId
? ''
: this.parentRoute.id,
customId,

@@ -489,3 +491,3 @@ ])

? '/'
: trimPathRight(joinPaths([parent.fullPath, path]))
: trimPathRight(joinPaths([this.parentRoute.fullPath, path]))

@@ -522,27 +524,27 @@ this.path = path as TPath

generate = (
options: Omit<
RouteOptions<
TParentRoute,
TCustomId,
TPath,
InferFullSearchSchema<TParentRoute>,
TSearchSchema,
TFullSearchSchema,
TParentRoute['__types']['allParams'],
TParams,
TAllParams,
TParentContext,
TAllParentContext,
TRouteContext,
TContext
>,
'path'
>,
) => {
invariant(
false,
`route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `,
)
}
// generate = (
// options: Omit<
// RouteOptions<
// TParentRoute,
// TCustomId,
// TPath,
// InferFullSearchSchema<TParentRoute>,
// TSearchSchema,
// TFullSearchSchema,
// TParentRoute['__types']['allParams'],
// TParams,
// TAllParams,
// TParentContext,
// TAllParentContext,
// TRouteContext,
// TContext
// >,
// 'path'
// >,
// ) => {
// invariant(
// false,
// `route.generate() is used by TanStack Router's file-based routing code generation and should not actually be called during runtime. `,
// )
// }
}

@@ -549,0 +551,0 @@

@@ -61,2 +61,3 @@ import { Store } from '@tanstack/store'

} from './history'
import warning from 'tiny-warning'

@@ -990,3 +991,3 @@ export interface Register {

#buildRouteTree = (routeTree: AnyRoute) => {
const recurseRoutes = (routes: Route[]) => {
const recurseRoutes = (routes: Route[], parentRoute: Route | undefined) => {
routes.forEach((route, i) => {

@@ -997,13 +998,6 @@ route.init({ originalIndex: i, router: this })

if (existingRoute) {
if (process.env.NODE_ENV !== 'production') {
console.warn(
`Duplicate routes found with id: ${String(route.id)}`,
this.routesById,
route,
)
}
throw new Error()
}
invariant(
!existingRoute,
`Duplicate routes found with id: ${String(route.id)}`,
)
;(this.routesById as any)[route.id] = route

@@ -1014,3 +1008,3 @@

if (children?.length) {
recurseRoutes(children)
recurseRoutes(children, route)

@@ -1057,4 +1051,29 @@ route.children = children

recurseRoutes([routeTree] as Route[])
recurseRoutes([routeTree] as Route[], undefined)
const recurceCheckRoutes = (
routes: Route[],
parentRoute: Route | undefined,
) => {
routes.forEach((route) => {
if (route.isRoot) {
invariant(
!parentRoute,
'Root routes can only be used as the root of a route tree.',
)
} else {
invariant(
parentRoute ? route.parentRoute === parentRoute : true,
`Expected a route with path "${route.path}" to be passed to its parent route "${route.parentRoute?.id}" in an addChildren() call, but was instead passed as a child of the "${parentRoute?.id}" route.`,
)
}
if (route.children) {
recurceCheckRoutes(route.children as Route[], route)
}
})
}
recurceCheckRoutes([routeTree] as Route[], undefined)
return routeTree

@@ -1061,0 +1080,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc