mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
4b66771895
The `legacyBehavior` prop of the `Link` component has been deprecated since #77473. For Next.js 16, we're finally removing support for it. Consequently, we're also removing support for the `passHref` prop, which was only useful in conjunction with the `legacyBehavior` prop. A [codemod is available](https://nextjs.org/docs/app/guides/upgrading/codemods#new-link) to help you automatically upgrade your codebase. reverts #77473 --------- Co-authored-by: Sebastian Sebbie Silbermann <sebastian.silbermann@vercel.com>
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { FormattedMessage } from "react-intl";
|
|
import styles from "./Nav.module.css";
|
|
|
|
export default function Nav() {
|
|
const { locale, locales, asPath } = useRouter();
|
|
return (
|
|
<nav className={styles.nav}>
|
|
<li className={styles.li}>
|
|
<Link href="/">
|
|
<FormattedMessage
|
|
defaultMessage="Home"
|
|
description="Nav: Index name"
|
|
/>
|
|
</Link>
|
|
</li>
|
|
<li className={styles.li}>
|
|
<Link href="/about">
|
|
<FormattedMessage
|
|
defaultMessage="About"
|
|
description="Nav: About item"
|
|
/>
|
|
</Link>
|
|
</li>
|
|
|
|
<li className={styles.divider}></li>
|
|
|
|
{locales?.map((availableLocale) => (
|
|
<li key={availableLocale} className={styles.li}>
|
|
<Link
|
|
href={asPath}
|
|
locale={availableLocale}
|
|
prefetch={false}
|
|
className={availableLocale === locale ? styles.active : undefined}
|
|
>
|
|
{availableLocale}
|
|
</Link>
|
|
</li>
|
|
))}
|
|
</nav>
|
|
);
|
|
}
|