Skip to content

Commit 5e8cbdb

Browse files
committedFeb 16, 2024
apply the right owner (who's aware of the router)
1 parent cd182b8 commit 5e8cbdb

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed
 

‎.changeset/honest-peas-play.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@solidjs/router": patch
3+
---
4+
5+
apply the right owner (who's aware of the router)

‎src/routers/components.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*@refresh skip*/
22

3-
import type { Component, JSX } from "solid-js";
3+
import type { Component, JSX, Owner } from "solid-js";
44
import { type RequestEvent, getRequestEvent, isServer } from "solid-js/web";
5-
import { children, createMemo, createRoot, mergeProps, on, Show } from "solid-js";
5+
import { children, createMemo, createRoot, getOwner, mergeProps, on, Show } from "solid-js";
66
import {
77
createBranches,
88
createRouteContext,
@@ -47,11 +47,13 @@ export const createRouterComponent = (router: RouterIntegration) => (props: Base
4747
props.base || ""
4848
)
4949
);
50-
const routerState = createRouterContext(router, branches, { base, singleFlight: props.singleFlight });
50+
let context: Owner;
51+
const routerState = createRouterContext(router, () => context, branches, { base, singleFlight: props.singleFlight });
5152
router.create && router.create(routerState);
5253

5354
return (
5455
<RouterContextObj.Provider value={routerState}>
56+
{(context = getOwner()!) && null}
5557
<Routes routerState={routerState} branches={branches()} />
5658
</RouterContextObj.Provider>
5759
);

‎src/routing.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ export function getIntent() {
268268

269269
export function createRouterContext(
270270
integration: RouterIntegration,
271+
getContext?: () => any,
271272
getBranches?: () => Branch[],
272273
options: { base?: string, singleFlight?: boolean } = {}
273274
): RouterContext {
@@ -330,8 +331,6 @@ export function createRouterContext(
330331
});
331332
});
332333

333-
const owner = getOwner();
334-
335334
return {
336335
base: baseRoute,
337336
location,
@@ -445,7 +444,7 @@ export function createRouterContext(
445444
const { load } = route;
446445
preloadData &&
447446
load &&
448-
runWithOwner(owner, () =>
447+
runWithOwner(getContext!(), () =>
449448
load({
450449
params,
451450
location: {

‎test/router.spec.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { LocationChange } from "../src/types.js";
44
import { createAsyncRoot, createCounter, waitFor } from "./helpers.js";
55

66
const fakeBranches = () => []
7+
const fakeContext = () => ({})
78

89
describe("Router should", () => {
910
describe("have member `base` which should", () => {
@@ -18,15 +19,15 @@ describe("Router should", () => {
1819
test(`have a normalized version of the base path when defined`, () => {
1920
createRoot(() => {
2021
const signal = createSignal<LocationChange>({ value: "" });
21-
const { base } = createRouterContext({ signal }, fakeBranches, { base: "base" });
22+
const { base } = createRouterContext({ signal }, fakeContext, fakeBranches, { base: "base" });
2223
expect(base.path()).toBe("/base");
2324
});
2425
});
2526

2627
test(`throw when the base path is invalid`, () => {
2728
createRoot(() => {
2829
const signal = createSignal<LocationChange>({ value: "" });
29-
expect(() => createRouterContext({ signal }, fakeBranches, { base: "http://example.com" })).toThrow();
30+
expect(() => createRouterContext({ signal }, fakeContext, fakeBranches, { base: "http://example.com" })).toThrow();
3031
});
3132
});
3233
});

0 commit comments

Comments
 (0)
Please sign in to comment.