Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,3 +309,4 @@
- yuleicul
- zeromask1337
- zheng-chuang
- dunnai
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,44 @@ describe("navigate with params", () => {
expect(node.innerHTML).toMatch(/react\+router/);
});
});

describe("when navigate params are encoded using #", () => {
it("the encoding of the # parameter in the URL has been changed", () => {
function Start() {
let navigate = useNavigate();

React.useEffect(() => {
navigate("/route/react%23router/subroute/router/blog");
});

return null;
}

function Blog() {
let params = useParams();
return <h1>Blog: {params.routeName}-{params.subrouteName}</h1>;
}

act(() => {
ReactDOM.createRoot(node).render(
<BrowserRouter>
<Routes>
<Route path="/" element={<Start />} />
<Route path="/route/:routeName/subroute/:subrouteName/*" element={
<Routes>
<Route path="blog" element={<Blog />} />
<Route path="*" element={null} />
</Routes>
} />
</Routes>
</BrowserRouter>
);
});

let pathname = window.location.pathname;
expect(pathname).toEqual("/route/react%23router/subroute/router/blog");

expect(node.innerHTML).toMatch(/react#router-router/);
});
});
});
1 change: 1 addition & 0 deletions packages/react-router/lib/router/history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,7 @@ function getUrlBasedHistory(
// pre-encode them since they might be part of a matching splat param from
// an ancestor route
href = href.replace(/ $/, "%20");
href = typeof to === "string" ? href.replace(/#/, "%23") : href
invariant(
base,
`No window.location.(origin|href) available to create URL for href: ${href}`
Expand Down