Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
237 lines
5.7 KiB
JavaScript
237 lines
5.7 KiB
JavaScript
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
|
|
if (typeof window !== 'undefined') {
|
|
window.caughtWarns = []
|
|
const origWarn = window.console.warn
|
|
window.console.warn = function (...args) {
|
|
window.caughtWarns.push(args)
|
|
origWarn(...args)
|
|
}
|
|
}
|
|
|
|
const Page = () => {
|
|
return (
|
|
<div>
|
|
<h3>My blog</h3>
|
|
<Link href="/[name]" as="/post-1" id="view-post-1">
|
|
View post 1
|
|
</Link>
|
|
<br />
|
|
<Link href="/[name]" as="/post-1#my-hash" id="view-post-1-hash-1">
|
|
View post 1 (hash)
|
|
</Link>
|
|
<br />
|
|
<Link href="/post-1#my-hash" id="view-post-1-hash-1-href-only">
|
|
View post 1 (hash only href)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/post-1?hidden=value"
|
|
as="/post-1"
|
|
id="view-post-1-hidden-query"
|
|
>
|
|
View post 1 (href query)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href={{
|
|
hash: 'my-hash',
|
|
pathname: '/[name]',
|
|
query: { name: 'post-1' },
|
|
}}
|
|
id="view-post-1-hash-1-interpolated"
|
|
>
|
|
View post 1 (hash interpolated)
|
|
</Link>
|
|
<br />
|
|
<Link href="/post-1" id="view-post-1-no-as">
|
|
View post 1 (no as)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href={{
|
|
pathname: '/[name]',
|
|
query: { name: 'post-1' },
|
|
}}
|
|
id="view-post-1-interpolated"
|
|
>
|
|
View post 1 (interpolated)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href={{
|
|
pathname: '/[name]',
|
|
query: { another: 'value' },
|
|
}}
|
|
id="view-post-1-interpolated-incorrectly"
|
|
>
|
|
View post 1 (interpolated incorrectly)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href={{
|
|
pathname: '/[name]',
|
|
query: { name: 'post-1', another: 'value' },
|
|
}}
|
|
id="view-post-1-interpolated-more-query"
|
|
>
|
|
View post 1 (interpolated additional query)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/[name]/comments"
|
|
as="/post-1/comments"
|
|
id="view-post-1-comments"
|
|
>
|
|
View post 1 comments
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/[name]/[comment]"
|
|
as="/post-1/comment-1"
|
|
id="view-post-1-comment-1"
|
|
>
|
|
View comment 1 on post 1
|
|
</Link>
|
|
<br />
|
|
<Link href="/post-1/comment-1" id="view-post-1-comment-1-no-as">
|
|
View comment 1 on post 1 (no as)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href={{
|
|
pathname: '/[name]/[comment]',
|
|
query: { name: 'post-1', comment: 'comment-1' },
|
|
}}
|
|
id="view-post-1-comment-1-interpolated"
|
|
>
|
|
View comment 1 on post 1 (interpolated)
|
|
</Link>
|
|
<br />
|
|
<Link href="/added-later/first" id="added-later-link">
|
|
/added-later/first
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/blog/[post]/comment/[id]"
|
|
as="/blog/321/comment/123"
|
|
id="view-nested-dynamic-cmnt"
|
|
>
|
|
View comment 123 on blog post 321
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/[name]?fromHome=true"
|
|
as="/post-1?fromHome=true"
|
|
id="view-post-1-with-query"
|
|
>
|
|
View post 1 with query
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/on-mount/[post]"
|
|
as="/on-mount/test-w-hash#item-400"
|
|
id="view-dynamic-with-hash"
|
|
>
|
|
View test with hash
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/all-ssr/[...rest]"
|
|
as="/p1/p2/all-ssr/hello"
|
|
id="catch-all-single"
|
|
>
|
|
Catch-all route (single)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/all-ssr/[...rest]"
|
|
as="/p1/p2/all-ssr/hello1/hello2"
|
|
id="catch-all-multi"
|
|
>
|
|
Catch-all route (multi)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/all-ssr/[...rest]"
|
|
as="/p1/p2/all-ssr/hello1%2F/he%2Fllo2"
|
|
id="catch-all-enc"
|
|
>
|
|
Catch-all route (encoded)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/all-ssr/[...rest]"
|
|
as="/p1/p2/all-ssr/:42"
|
|
id="catch-all-colonnumber"
|
|
>
|
|
Catch-all route :42
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/all-ssg/[...rest]"
|
|
as="/p1/p2/all-ssg/hello"
|
|
id="ssg-catch-all-single"
|
|
>
|
|
Catch-all route (single)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href={{
|
|
pathname: '/p1/p2/all-ssg/[...rest]',
|
|
query: { rest: ['hello'] },
|
|
}}
|
|
id="ssg-catch-all-single-interpolated"
|
|
>
|
|
Catch-all route (single interpolated)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/all-ssg/[...rest]"
|
|
as="/p1/p2/all-ssg/hello1/hello2"
|
|
id="ssg-catch-all-multi"
|
|
>
|
|
Catch-all route (multi)
|
|
</Link>
|
|
<br />
|
|
<Link href="/p1/p2/all-ssg/hello1/hello2" id="ssg-catch-all-multi-no-as">
|
|
Catch-all route (multi)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href={{
|
|
pathname: '/p1/p2/all-ssg/[...rest]',
|
|
query: { rest: ['hello1', 'hello2'] },
|
|
}}
|
|
id="ssg-catch-all-multi-interpolated"
|
|
>
|
|
Catch-all route (multi interpolated)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/nested-all-ssg/[...rest]"
|
|
as="/p1/p2/nested-all-ssg/hello"
|
|
id="nested-ssg-catch-all-single"
|
|
>
|
|
Nested Catch-all route (single)
|
|
</Link>
|
|
<br />
|
|
<Link
|
|
href="/p1/p2/nested-all-ssg/[...rest]"
|
|
as="/p1/p2/nested-all-ssg/hello1/hello2"
|
|
id="nested-ssg-catch-all-multi"
|
|
>
|
|
Nested Catch-all route (multi)
|
|
</Link>
|
|
<br />
|
|
<Link href="/d/dynamic-1" id="dynamic-route-no-as">
|
|
Dynamic route no as
|
|
</Link>
|
|
<p id="query">{JSON.stringify(Object.keys(useRouter().query))}</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Page
|