Skip to content

Commit

Permalink
Memoize useRouter from next/navigation when used in Pages Router (#52177
Browse files Browse the repository at this point in the history
)

## What?

Ensures the router instance passed for `next/navigation` in Pages Router is a stable reference. For App Router the router instance is already a stable reference, so making this one stable too would fix #18127.


## How?

Added `React.useMemo` around `adaptForAppRouterInstance`, previously it was recreated each render but that's not needed for this particular case. The searchParamsContext and pathnameContext do need a new value each render in order to ensure they get the latest value.


Fixes #18127
Fixes NEXT-1375
  • Loading branch information
timneutkens committed Jul 4, 2023
1 parent 4f75c79 commit ae3db7c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/next/src/client/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,10 @@ function renderApp(App: AppComponent, appProps: AppProps) {
function AppContainer({
children,
}: React.PropsWithChildren<{}>): React.ReactElement {
// Create a memoized value for next/navigation router context.
const adaptedForAppRouter = React.useMemo(() => {
return adaptForAppRouterInstance(router)
}, [])
return (
<Container
fn={(error) =>
Expand All @@ -336,7 +340,7 @@ function AppContainer({
)
}
>
<AppRouterContext.Provider value={adaptForAppRouterInstance(router)}>
<AppRouterContext.Provider value={adaptedForAppRouter}>
<SearchParamsContext.Provider value={adaptForSearchParams(router)}>
<PathnameContextProviderAdapter
router={router}
Expand Down

0 comments on commit ae3db7c

Please sign in to comment.