-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix interception route refresh behavior with dynamic params (#64006)
### What When triggering an interception route that has a parent with dynamic params, and then later going to "refresh" the tree, either by calling `router.refresh` or revalidating in a server action, the refresh action would silently fail and the router would be in a bad state. ### Why Because of the dependency that interception routes currently have on `FlightRouterState` for dynamic params extraction, we need to make sure the refetch has the full tree so that it can properly extract earlier params. Since the refreshing logic traversed parallel routes and scoped the refresh to that particular segment, it would skip over earlier segments, and so when the server attempted to diff the tree, it would return an updated tree that corresponded with the wrong segment (`[locale]` rather than `["locale", "en", "d]`). Separately, since a page segment might be `__PAGE__?{"locale": "en"}` rather than just `__PAGE__`, this updates the refetch marker logic to do a partial match on the page segment key. ### How This keeps a reference to the root of the updated tree so that the refresh always starts at the top. This has the side effect of re-rendering more data when making the "stale" refetch request, but this is necessary until we can decouple `FlightRouterState` from interception routes. shout-out to @steve-marmalade for helping find this bug and providing excellent Replays to help track it down 🙏 x-ref: - #63900 <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation - Run `pnpm prettier-fix` to fix formatting issues before opening the PR. - Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs.org/docs/community/contribution-guide ### Adding or Updating Examples - The "examples guidelines" are followed from our contributing doc https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md - Make sure the linting passes by running `pnpm build && pnpm lint`. See https://github.com/vercel/next.js/blob/canary/contributing/repository/linting.md ### Fixing a bug - Related issues linked using `fixes #number` - Tests added. See: https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs - Errors have a helpful link attached, see https://github.com/vercel/next.js/blob/canary/contributing.md ### Adding a feature - Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. (A discussion must be opened, see https://github.com/vercel/next.js/discussions/new?category=ideas) - Related issues/discussions are linked using `fixes #number` - e2e tests added (https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs) - Documentation added - Telemetry added. In case of a feature if it's used or not. - Errors have a helpful link attached, see https://github.com/vercel/next.js/blob/canary/contributing.md ## For Maintainers - Minimal description (aim for explaining to someone not on the team to understand the PR) - When linking to a Slack thread, you might want to share details of the conclusion - Link both the Linear (Fixes NEXT-xxx) and the GitHub issues - Add review comments if necessary to explain to the reviewer the logic behind a change ### What? ### Why? ### How? Closes NEXT- Fixes # --> Closes NEXT-2986
- Loading branch information
Showing
14 changed files
with
179 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...lidation/app/refreshing/buttonRefresh.tsx → ...lidation/app/components/RefreshButton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
test/e2e/app-dir/parallel-routes-revalidation/app/components/RevalidateButton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
'use client' | ||
import { revalidateAction } from '../nested-revalidate/@modal/modal/action' | ||
|
||
export function RevalidateButton({ id }: { id?: string }) { | ||
return ( | ||
<button | ||
id={`revalidate-button${id ? `-${id}` : ''}`} | ||
style={{ color: 'orange', padding: '10px' }} | ||
onClick={() => revalidateAction()} | ||
> | ||
Revalidate | ||
</button> | ||
) | ||
} |
22 changes: 22 additions & 0 deletions
22
...p-dir/parallel-routes-revalidation/app/dynamic-refresh/[dynamic]/@modal/(.)login/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { RefreshButton } from '../../../../components/RefreshButton' | ||
import { RevalidateButton } from '../../../../components/RevalidateButton' | ||
|
||
const getRandom = async () => Math.random() | ||
|
||
export default async function Page({ params }) { | ||
const someProp = await getRandom() | ||
|
||
return ( | ||
<dialog open> | ||
<div>{params.dynamic}</div> | ||
<div style={{ display: 'flex', flexDirection: 'column' }}> | ||
<div> | ||
<span>Modal Page</span> | ||
<span id="modal-random">{someProp}</span> | ||
</div> | ||
<RefreshButton /> | ||
<RevalidateButton /> | ||
</div> | ||
</dialog> | ||
) | ||
} |
3 changes: 3 additions & 0 deletions
3
...e2e/app-dir/parallel-routes-revalidation/app/dynamic-refresh/[dynamic]/@modal/default.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function Default() { | ||
return null | ||
} |
19 changes: 19 additions & 0 deletions
19
test/e2e/app-dir/parallel-routes-revalidation/app/dynamic-refresh/[dynamic]/layout.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import Link from 'next/link' | ||
|
||
export const dynamic = 'force-dynamic' | ||
|
||
export default function Layout({ | ||
children, | ||
modal, | ||
}: { | ||
children: React.ReactNode | ||
modal: React.ReactNode | ||
}) { | ||
return ( | ||
<div> | ||
<div>{children}</div> | ||
<div>{modal}</div> | ||
<Link href="/dynamic-refresh/foo/other">Go to Other Page</Link> | ||
</div> | ||
) | ||
} |
11 changes: 11 additions & 0 deletions
11
test/e2e/app-dir/parallel-routes-revalidation/app/dynamic-refresh/[dynamic]/login/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { RefreshButton } from '../../../components/RefreshButton' | ||
|
||
export default function Page() { | ||
return ( | ||
<> | ||
<span>Login Page</span> | ||
<RefreshButton /> | ||
Random Number: <span id="login-page-random">{Math.random()}</span> | ||
</> | ||
) | ||
} |
13 changes: 13 additions & 0 deletions
13
test/e2e/app-dir/parallel-routes-revalidation/app/dynamic-refresh/[dynamic]/other/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { RefreshButton } from '../../../components/RefreshButton' | ||
import { RevalidateButton } from '../../../components/RevalidateButton' | ||
|
||
export default function Page() { | ||
return ( | ||
<div> | ||
<div>Other Page</div> | ||
<div id="other-page-random">{Math.random()}</div> | ||
<RefreshButton /> | ||
<RevalidateButton id="other" /> | ||
</div> | ||
) | ||
} |
14 changes: 14 additions & 0 deletions
14
test/e2e/app-dir/parallel-routes-revalidation/app/dynamic-refresh/[dynamic]/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import Link from 'next/link' | ||
|
||
export default function Home() { | ||
return ( | ||
<main> | ||
<Link href="/dynamic-refresh/foo/login"> | ||
<button>Login button</button> | ||
</Link> | ||
<div> | ||
Random # from Root Page: <span id="random-number">{Math.random()}</span> | ||
</div> | ||
</main> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
test/e2e/app-dir/parallel-routes-revalidation/app/refreshing/login/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
test/e2e/app-dir/parallel-routes-revalidation/app/refreshing/other/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
import { RefreshButton } from '../../components/RefreshButton' | ||
import { RevalidateButton } from '../../components/RevalidateButton' | ||
|
||
export default function Page() { | ||
return ( | ||
<div> | ||
<div>Other Page</div> | ||
<div id="other-page-random">{Math.random()}</div> | ||
<RefreshButton /> | ||
<RevalidateButton id="other" /> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters