Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Wrap route with location arg in location context #9094

Merged
merged 5 commits into from Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/hungry-vans-ring.md
@@ -0,0 +1,8 @@
---
"react-router": patch
"react-router-dom": patch
"react-router-dom-v5-compat": patch
"react-router-native": patch
---

fix: update `useLocation` to return the scoped `Location` when inside a `<Routes location>` component
49 changes: 44 additions & 5 deletions packages/react-router/__tests__/useLocation-test.tsx
Expand Up @@ -2,9 +2,9 @@ import * as React from "react";
import * as TestRenderer from "react-test-renderer";
import { MemoryRouter, Routes, Route, useLocation } from "react-router";

function ShowPath() {
let { pathname, search, hash } = useLocation();
return <pre>{JSON.stringify({ pathname, search, hash })}</pre>;
function ShowLocation() {
let location = useLocation();
return <pre>{JSON.stringify(location)}</pre>;
}

describe("useLocation", () => {
Expand All @@ -14,16 +14,55 @@ describe("useLocation", () => {
renderer = TestRenderer.create(
<MemoryRouter initialEntries={["/home?the=search#the-hash"]}>
<Routes>
<Route path="/home" element={<ShowPath />} />
<Route path="/home" element={<ShowLocation />} />
</Routes>
</MemoryRouter>
);
});

expect(renderer.toJSON()).toMatchInlineSnapshot(`
<pre>
{"pathname":"/home","search":"?the=search","hash":"#the-hash"}
{"pathname":"/home","search":"?the=search","hash":"#the-hash","state":null,"key":"default"}
</pre>
`);
});

it("returns the scoped location object when nested in <Routes location>", () => {
johnpangalos marked this conversation as resolved.
Show resolved Hide resolved
let renderer: TestRenderer.ReactTestRenderer;
TestRenderer.act(() => {
renderer = TestRenderer.create(
<MemoryRouter initialEntries={["/home?the=search#the-hash"]}>
<App />
</MemoryRouter>
);
});

function App() {
return (
<div>
<h1>App</h1>
<Routes>
<Route path="/home" element={<ShowLocation />} />
</Routes>
<Routes location="/scoped?scoped=search#scoped-hash">
<Route path="/scoped" element={<ShowLocation />} />
</Routes>
</div>
);
}

expect(renderer.toJSON()).toMatchInlineSnapshot(`
<div>
<h1>
App
</h1>
<pre>
{"pathname":"/home","search":"?the=search","hash":"#the-hash","state":null,"key":"default"}
</pre>
<pre>
{"pathname":"/scoped","search":"?scoped=search","hash":"#scoped-hash","state":null,"key":"default"}
</pre>
</div>
`);
});
});
5 changes: 4 additions & 1 deletion packages/react-router/__tests__/useRoutes-test.tsx
Expand Up @@ -56,7 +56,10 @@ describe("useRoutes", () => {
it("Uses the `location` prop instead of context location`", () => {
let routes = [
{ path: "one", element: <h1>one</h1> },
{ path: "two", element: <h1>two</h1> },
{
path: "two",
element: <h1>two</h1>,
},
];

let renderer: TestRenderer.ReactTestRenderer;
Expand Down
28 changes: 26 additions & 2 deletions packages/react-router/lib/hooks.tsx
Expand Up @@ -8,9 +8,9 @@ import type {
PathPattern,
Router as RemixRouter,
To,
Action as NavigationType,
} from "@remix-run/router";
import {
Action as NavigationType,
invariant,
isRouteErrorResponse,
joinPaths,
Expand Down Expand Up @@ -425,7 +425,7 @@ export function useRoutes(
);
}

return _renderMatches(
let renderedMatches = _renderMatches(
matches &&
matches.map((match) =>
Object.assign({}, match, {
Expand All @@ -440,6 +440,30 @@ export function useRoutes(
parentMatches,
dataRouterStateContext || undefined
);

// When a user passes in a `locationArg` prop, the associated routes need to
// be wrapped in a `LocationContext.Provider` in order for `useLocation` to
// use the `locationArg` location instead of the global location.
if (locationArg) {
return (
<LocationContext.Provider
value={{
location: {
pathname: "/",
search: "",
hash: "",
state: null,
johnpangalos marked this conversation as resolved.
Show resolved Hide resolved
key: "default",
...location,
},
navigationType: NavigationType.Pop,
}}
>
{renderedMatches}
</LocationContext.Provider>
);
}
return renderedMatches;
}

function DefaultErrorElement() {
Expand Down