-
Notifications
You must be signed in to change notification settings - Fork 27.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: app-router prefetch crash when an invalid URL is passed to Link #66755
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
1c600da
fix: app-router crash when an invalid URL is passed to prefetch
lubieowoce 52b4d34
log error for invalid url prefetches in development
lubieowoce 8e75fd3
test: remove unnecessary async from page components
lubieowoce 933f6c9
make router.prefetch throw when given invalid URL, but don't throw in…
lubieowoce File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,15 @@ | ||
'use client' | ||
|
||
import { useEffect } from 'react' | ||
import { useState } from 'react' | ||
|
||
export function Delay({ duration = 500, children }) { | ||
const [isVisible, setIsVisible] = useState(false) | ||
useEffect(() => { | ||
const timeout = setTimeout(() => setIsVisible(true), duration) | ||
return () => clearTimeout(timeout) | ||
}, [duration]) | ||
|
||
if (!isVisible) return null | ||
return <>{children}</> | ||
} |
16 changes: 16 additions & 0 deletions
16
test/e2e/app-dir/app-prefetch/app/invalid-url/from-link/page.js
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,16 @@ | ||
import Link from 'next/link' | ||
import { INVALID_URL } from '../invalid-url' | ||
import { Delay } from '../delay' | ||
|
||
export const dynamic = 'force-dynamic' | ||
|
||
export default async function Page() { | ||
return ( | ||
<> | ||
<Link href={INVALID_URL}>invalid link</Link> | ||
<Delay> | ||
<h1>Hello, world!</h1> | ||
</Delay> | ||
</> | ||
) | ||
} |
20 changes: 20 additions & 0 deletions
20
test/e2e/app-dir/app-prefetch/app/invalid-url/from-router-prefetch/page.js
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,20 @@ | ||
'use client' | ||
import { useEffect } from 'react' | ||
import { INVALID_URL } from '../invalid-url' | ||
import { Delay } from '../delay' | ||
import { useRouter } from 'next/navigation' | ||
|
||
export const dynamic = 'force-dynamic' | ||
|
||
export default async function Page() { | ||
const router = useRouter() | ||
useEffect(() => { | ||
router.prefetch(INVALID_URL) | ||
}, [router]) | ||
|
||
return ( | ||
<Delay> | ||
<h1>Hello, world!</h1> | ||
</Delay> | ||
) | ||
} |
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,8 @@ | ||
// We need a URL that reliably fails `new URL(url, window.location) | ||
// This only fails if `window.location` starts with `https://`: | ||
// | ||
// const invalidUrl = 'http:' | ||
// | ||
// because `new URL('http:', 'http://localhost:3000')` works fine. | ||
// So better to pick something that's always invalid | ||
export const INVALID_URL = '///' |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should save the error, in dev mode if it's invalid url we should throw the error so users can discover earlier. And in production build we just swallow the error, not doing any prefetch and also error in console