-
Notifications
You must be signed in to change notification settings - Fork 88
fix: apply caching headers to pages router 404 with getStaticProps #2764
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
330dca0
fix: apply caching headers to pages router 404 with getStaticProps
pieh bdfb31a
chore: don't store revalidate on request context for app router pages…
pieh c1712f8
chore: don't apply new 404 caching header code path, if existing meth…
pieh 7b947dc
test: add notFound cases for 404 with getStaticProps without revalidate
pieh 3423330
test: add fixture for 404 with getStaticProps with revalidate
pieh 25ad18c
tmp: outline 404 integration test cases for page router
pieh bbedbdb
test: update 404 caching tests
orinokai 3ea9375
fix: relax the conditions for caching 404s
orinokai 5d91e73
test: remove only
orinokai 81a2338
Merge branch 'main' into fix/caching-headers-for-get-static-props-404
orinokai 2962d0b
feat: hide 404 caching behind env var
orinokai 238e6e6
test: remove only and console logs
orinokai bb64d82
test: update static 404 test
orinokai 45ce211
Merge branch 'main' into fix/caching-headers-for-get-static-props-404
orinokai f31d30c
feat: reduce 404 caching scope to just the 404 page itself
orinokai a6f37e2
test: remove only modifier
orinokai 70a3ae6
test: fix tests for new custom 404 pate
orinokai cfb3086
Merge branch 'main' into fix/caching-headers-for-get-static-props-404
orinokai 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
10 changes: 10 additions & 0 deletions
10
tests/fixtures/page-router-404-get-static-props-with-revalidate/next.config.js
This file contains hidden or 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,10 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
output: 'standalone', | ||
eslint: { | ||
ignoreDuringBuilds: true, | ||
}, | ||
generateBuildId: () => 'build-id', | ||
} | ||
|
||
module.exports = nextConfig |
15 changes: 15 additions & 0 deletions
15
tests/fixtures/page-router-404-get-static-props-with-revalidate/package.json
This file contains hidden or 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 @@ | ||
{ | ||
"name": "page-router-404-get-static-props-with-revalidate", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"postinstall": "next build", | ||
"dev": "next dev", | ||
"build": "next build" | ||
}, | ||
"dependencies": { | ||
"next": "latest", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
tests/fixtures/page-router-404-get-static-props-with-revalidate/pages/404.js
This file contains hidden or 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,17 @@ | ||
export default function NotFound({ timestamp }) { | ||
return ( | ||
<p> | ||
Custom 404 page with revalidate: <pre data-testid="timestamp">{timestamp}</pre> | ||
</p> | ||
) | ||
} | ||
|
||
/** @type {import('next').GetStaticProps} */ | ||
export const getStaticProps = ({ locale }) => { | ||
return { | ||
props: { | ||
timestamp: Date.now(), | ||
}, | ||
revalidate: 300, | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
tests/fixtures/page-router-404-get-static-props-with-revalidate/pages/products/[slug].js
This file contains hidden or 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,40 @@ | ||
const Product = ({ time, slug }) => ( | ||
<div> | ||
<h1>Product {slug}</h1> | ||
<p> | ||
This page uses getStaticProps() and getStaticPaths() to pre-fetch a Product | ||
<span data-testid="date-now">{time}</span> | ||
</p> | ||
</div> | ||
) | ||
|
||
/** @type {import('next').GetStaticProps} */ | ||
export async function getStaticProps({ params }) { | ||
if (params.slug === 'not-found-no-revalidate') { | ||
return { | ||
notFound: true, | ||
} | ||
} else if (params.slug === 'not-found-with-revalidate') { | ||
return { | ||
notFound: true, | ||
revalidate: 600, | ||
} | ||
} | ||
|
||
return { | ||
props: { | ||
time: new Date().toISOString(), | ||
slug: params.slug, | ||
}, | ||
} | ||
} | ||
|
||
/** @type {import('next').GetStaticPaths} */ | ||
export const getStaticPaths = () => { | ||
return { | ||
paths: [], | ||
fallback: 'blocking', // false or "blocking" | ||
} | ||
} | ||
|
||
export default Product |
This file contains hidden or 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 hidden or 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 NotFound() { | ||
return <p>Custom 404 page</p> | ||
} |
This file contains hidden or 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.
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.
Uh oh!
There was an error while loading. Please reload this page.