-
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
- Loading branch information
Showing
14 changed files
with
180 additions
and
22 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