rsnext/test/integration/invalid-href/pages/first.js
Tim Neutkens f260328900
BREAKING CHANGE: Enable newNextLinkBehavior (#41459)
- Enable newNextLinkBehavior. See #36436 
- Run next/link codemod on test suite

Note that from when this lands on apps trying canary will need to run
the new-link codemod in order to upgrade.
Ideally we have to detect `<a>` while rendering the new link and warn
for it.

Co-authored-by: Steven <steven@ceriously.com>
2022-10-17 21:20:28 -04:00

27 lines
578 B
JavaScript

import Link from 'next/link'
import { useRouter } from 'next/router'
const invalidLink = 'mailto:idk@idk.com'
export default function Page() {
const { query, ...router } = useRouter()
const { method } = query
return method ? (
<a
id="click-me"
onClick={(e) => {
e.preventDefault()
router[method](invalidLink)
}}
>
invalid link :o
</a>
) : (
// this should throw an error on load since prefetch
// receives the invalid href
<Link href={invalidLink} id="click-me">
invalid link :o
</Link>
)
}