Skip to content

Commit b541b8d

Browse files
authoredJan 16, 2024
Fix NavLink isPending with a basename (#11195)
1 parent 552662a commit b541b8d

File tree

3 files changed

+51
-1
lines changed

3 files changed

+51
-1
lines changed
 

‎.changeset/brave-pillows-juggle.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"react-router-dom": patch
3+
---
4+
5+
Fix `NavLink` `isPending` when a `basename` is used

‎packages/react-router-dom/__tests__/nav-link-active-test.tsx

+40
Original file line numberDiff line numberDiff line change
@@ -942,6 +942,46 @@ describe("NavLink using a data router", () => {
942942
expect(screen.getByText("Link to Bar").className).toBe("");
943943
expect(screen.getByText("Link to Baz").className).toBe("active");
944944
});
945+
946+
it("applies the default 'active'/'pending' classNames when a basename is used", async () => {
947+
let dfd = createDeferred();
948+
let router = createBrowserRouter(
949+
createRoutesFromElements(
950+
<Route path="/" element={<Layout />}>
951+
<Route path="foo" element={<p>Foo page</p>} />
952+
<Route
953+
path="bar"
954+
loader={() => dfd.promise}
955+
element={<p>Bar page</p>}
956+
/>
957+
</Route>
958+
),
959+
{
960+
window: getWindow("/base/foo"),
961+
basename: "/base",
962+
}
963+
);
964+
render(<RouterProvider router={router} />);
965+
966+
function Layout() {
967+
return (
968+
<>
969+
<NavLink to="/foo">Link to Foo</NavLink>
970+
<NavLink to="/bar">Link to Bar</NavLink>
971+
<Outlet />
972+
</>
973+
);
974+
}
975+
976+
expect(screen.getByText("Link to Bar").className).toBe("");
977+
978+
fireEvent.click(screen.getByText("Link to Bar"));
979+
expect(screen.getByText("Link to Bar").className).toBe("pending");
980+
981+
dfd.resolve(null);
982+
await waitFor(() => screen.getByText("Bar page"));
983+
expect(screen.getByText("Link to Bar").className).toBe("active");
984+
});
945985
});
946986

947987
describe("NavLink under a Routes with a basename", () => {

‎packages/react-router-dom/index.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ export const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(
10281028
let path = useResolvedPath(to, { relative: rest.relative });
10291029
let location = useLocation();
10301030
let routerState = React.useContext(DataRouterStateContext);
1031-
let { navigator } = React.useContext(NavigationContext);
1031+
let { navigator, basename } = React.useContext(NavigationContext);
10321032
let isTransitioning =
10331033
routerState != null &&
10341034
// Conditional usage is OK here because the usage of a data router is static
@@ -1053,6 +1053,11 @@ export const NavLink = React.forwardRef<HTMLAnchorElement, NavLinkProps>(
10531053
toPathname = toPathname.toLowerCase();
10541054
}
10551055

1056+
if (nextLocationPathname && basename) {
1057+
nextLocationPathname =
1058+
stripBasename(nextLocationPathname, basename) || nextLocationPathname;
1059+
}
1060+
10561061
// If the `to` has a trailing slash, look at that exact spot. Otherwise,
10571062
// we're looking for a slash _after_ what's in `to`. For example:
10581063
//

0 commit comments

Comments
 (0)
Please sign in to comment.