@solidjs/router 0.14.3 → 0.14.4
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/index.js +3 -3
- package/dist/routers/Router.js +2 -1
- package/dist/routing.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -532,8 +532,7 @@ function createRouterContext(integration, branches, getContext, options = {}) {
|
|
|
532
532
|
scroll: true,
|
|
533
533
|
...options
|
|
534
534
|
};
|
|
535
|
-
|
|
536
|
-
const resolvedTo = resolve ? route.resolvePath(to) : resolvePath(queryOnly && (s = source().value) && s.split("?")[0] || "", to);
|
|
535
|
+
const resolvedTo = resolve ? route.resolvePath(to) : resolvePath(queryOnly && location.pathname || "", to);
|
|
537
536
|
if (resolvedTo === undefined) {
|
|
538
537
|
throw new Error(`Path '${to}' is not a routable path`);
|
|
539
538
|
} else if (referrers.length >= MAX_REDIRECTS) {
|
|
@@ -1316,9 +1315,10 @@ function Router(props) {
|
|
|
1316
1315
|
if (isServer) return StaticRouter(props);
|
|
1317
1316
|
const getSource = () => {
|
|
1318
1317
|
const url = window.location.pathname.replace(/^\/+/, "/") + window.location.search;
|
|
1318
|
+
const state = window.history.state && window.history.state._depth && Object.keys(window.history.state).length === 1 ? undefined : window.history.state;
|
|
1319
1319
|
return {
|
|
1320
1320
|
value: url + window.location.hash,
|
|
1321
|
-
state
|
|
1321
|
+
state
|
|
1322
1322
|
};
|
|
1323
1323
|
};
|
|
1324
1324
|
const beforeLeave = createBeforeLeave();
|
package/dist/routers/Router.js
CHANGED
|
@@ -8,9 +8,10 @@ export function Router(props) {
|
|
|
8
8
|
return StaticRouter(props);
|
|
9
9
|
const getSource = () => {
|
|
10
10
|
const url = window.location.pathname.replace(/^\/+/, "/") + window.location.search;
|
|
11
|
+
const state = window.history.state && window.history.state._depth && Object.keys(window.history.state).length === 1 ? undefined : window.history.state;
|
|
11
12
|
return {
|
|
12
13
|
value: url + window.location.hash,
|
|
13
|
-
state
|
|
14
|
+
state
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
const beforeLeave = createBeforeLeave();
|
package/dist/routing.js
CHANGED
|
@@ -305,7 +305,7 @@ export function createRouterContext(integration, branches, getContext, options =
|
|
|
305
305
|
let s;
|
|
306
306
|
const resolvedTo = resolve
|
|
307
307
|
? route.resolvePath(to)
|
|
308
|
-
: resolvePath((queryOnly &&
|
|
308
|
+
: resolvePath((queryOnly && location.pathname) || "", to);
|
|
309
309
|
if (resolvedTo === undefined) {
|
|
310
310
|
throw new Error(`Path '${to}' is not a routable path`);
|
|
311
311
|
}
|