| 'use client' |
|
|
| import React, { createContext, useContext, useOptimistic, useRef } from 'react' |
| import type { UrlObject } from 'url' |
| import { formatUrl } from '../../shared/lib/router/utils/format-url' |
| import { AppRouterContext } from '../../shared/lib/app-router-context.shared-runtime' |
| import { useMergedRef } from '../use-merged-ref' |
| import { isAbsoluteUrl } from '../../shared/lib/utils' |
| import { addBasePath } from '../add-base-path' |
| import { warnOnce } from '../../shared/lib/utils/warn-once' |
| import type { PENDING_LINK_STATUS } from '../components/links' |
| import { |
| IDLE_LINK_STATUS, |
| mountLinkInstance, |
| onNavigationIntent, |
| unmountLinkForCurrentNavigation, |
| unmountPrefetchableInstance, |
| type LinkInstance, |
| } from '../components/links' |
| import { isLocalURL } from '../../shared/lib/router/utils/is-local-url' |
| import { dispatchNavigateAction } from '../components/app-router-instance' |
| import { errorOnce } from '../../shared/lib/utils/error-once' |
| import { FetchStrategy } from '../components/segment-cache' |
|
|
| type Url = string | UrlObject |
| type RequiredKeys<T> = { |
| [K in keyof T]-?: {} extends Pick<T, K> ? never : K |
| }[keyof T] |
| type OptionalKeys<T> = { |
| [K in keyof T]-?: {} extends Pick<T, K> ? K : never |
| }[keyof T] |
|
|
| type OnNavigateEventHandler = (event: { preventDefault: () => void }) => void |
|
|
| type InternalLinkProps = { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| href: Url |
|
|
| |
| |
| |
| |
| as?: Url |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| replace?: boolean |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| scroll?: boolean |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| shallow?: boolean |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| passHref?: boolean |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| prefetch?: boolean | 'auto' | null |
|
|
| |
| |
| |
| |
| unstable_dynamicOnHover?: boolean |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| locale?: string | false |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| legacyBehavior?: boolean |
|
|
| |
| |
| |
| onMouseEnter?: React.MouseEventHandler<HTMLAnchorElement> |
|
|
| |
| |
| |
| onTouchStart?: React.TouchEventHandler<HTMLAnchorElement> |
|
|
| |
| |
| |
| onClick?: React.MouseEventHandler<HTMLAnchorElement> |
|
|
| |
| |
| |
| onNavigate?: OnNavigateEventHandler |
| } |
|
|
| |
| |
|
|
| |
| |
| |
| export type LinkProps<RouteInferType = any> = InternalLinkProps |
| type LinkPropsRequired = RequiredKeys<LinkProps> |
| type LinkPropsOptional = OptionalKeys<Omit<InternalLinkProps, 'locale'>> |
|
|
| function isModifiedEvent(event: React.MouseEvent): boolean { |
| const eventTarget = event.currentTarget as HTMLAnchorElement | SVGAElement |
| const target = eventTarget.getAttribute('target') |
| return ( |
| (target && target !== '_self') || |
| event.metaKey || |
| event.ctrlKey || |
| event.shiftKey || |
| event.altKey || |
| (event.nativeEvent && event.nativeEvent.which === 2) |
| ) |
| } |
|
|
| function linkClicked( |
| e: React.MouseEvent, |
| href: string, |
| as: string, |
| linkInstanceRef: React.RefObject<LinkInstance | null>, |
| replace?: boolean, |
| scroll?: boolean, |
| onNavigate?: OnNavigateEventHandler |
| ): void { |
| const { nodeName } = e.currentTarget |
|
|
| |
| const isAnchorNodeName = nodeName.toUpperCase() === 'A' |
|
|
| if ( |
| (isAnchorNodeName && isModifiedEvent(e)) || |
| e.currentTarget.hasAttribute('download') |
| ) { |
| |
| return |
| } |
|
|
| if (!isLocalURL(href)) { |
| if (replace) { |
| |
| |
| e.preventDefault() |
| location.replace(href) |
| } |
|
|
| |
| return |
| } |
|
|
| e.preventDefault() |
|
|
| if (onNavigate) { |
| let isDefaultPrevented = false |
|
|
| onNavigate({ |
| preventDefault: () => { |
| isDefaultPrevented = true |
| }, |
| }) |
|
|
| if (isDefaultPrevented) { |
| return |
| } |
| } |
|
|
| React.startTransition(() => { |
| dispatchNavigateAction( |
| as || href, |
| replace ? 'replace' : 'push', |
| scroll ?? true, |
| linkInstanceRef.current |
| ) |
| }) |
| } |
|
|
| function formatStringOrUrl(urlObjOrString: UrlObject | string): string { |
| if (typeof urlObjOrString === 'string') { |
| return urlObjOrString |
| } |
|
|
| return formatUrl(urlObjOrString) |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export default function LinkComponent( |
| props: LinkProps & { |
| children: React.ReactNode |
| ref: React.Ref<HTMLAnchorElement> |
| } |
| ) { |
| const [linkStatus, setOptimisticLinkStatus] = useOptimistic(IDLE_LINK_STATUS) |
|
|
| let children: React.ReactNode |
|
|
| const linkInstanceRef = useRef<LinkInstance | null>(null) |
|
|
| const { |
| href: hrefProp, |
| as: asProp, |
| children: childrenProp, |
| prefetch: prefetchProp = null, |
| passHref, |
| replace, |
| shallow, |
| scroll, |
| onClick, |
| onMouseEnter: onMouseEnterProp, |
| onTouchStart: onTouchStartProp, |
| legacyBehavior = false, |
| onNavigate, |
| ref: forwardedRef, |
| unstable_dynamicOnHover, |
| ...restProps |
| } = props |
|
|
| children = childrenProp |
|
|
| if ( |
| legacyBehavior && |
| (typeof children === 'string' || typeof children === 'number') |
| ) { |
| children = <a>{children}</a> |
| } |
|
|
| const router = React.useContext(AppRouterContext) |
|
|
| const prefetchEnabled = prefetchProp !== false |
| |
| |
| |
| |
| |
| |
| |
| const fetchStrategy = |
| prefetchProp === null || prefetchProp === 'auto' |
| ? |
| FetchStrategy.PPR |
| : FetchStrategy.Full |
|
|
| if (process.env.NODE_ENV !== 'production') { |
| function createPropError(args: { |
| key: string |
| expected: string |
| actual: string |
| }) { |
| return new Error( |
| `Failed prop type: The prop \`${args.key}\` expects a ${args.expected} in \`<Link>\`, but got \`${args.actual}\` instead.` + |
| (typeof window !== 'undefined' |
| ? "\nOpen your browser's console to view the Component stack trace." |
| : '') |
| ) |
| } |
|
|
| |
| const requiredPropsGuard: Record<LinkPropsRequired, true> = { |
| href: true, |
| } as const |
| const requiredProps: LinkPropsRequired[] = Object.keys( |
| requiredPropsGuard |
| ) as LinkPropsRequired[] |
| requiredProps.forEach((key: LinkPropsRequired) => { |
| if (key === 'href') { |
| if ( |
| props[key] == null || |
| (typeof props[key] !== 'string' && typeof props[key] !== 'object') |
| ) { |
| throw createPropError({ |
| key, |
| expected: '`string` or `object`', |
| actual: props[key] === null ? 'null' : typeof props[key], |
| }) |
| } |
| } else { |
| |
| |
| const _: never = key |
| } |
| }) |
|
|
| |
| const optionalPropsGuard: Record<LinkPropsOptional, true> = { |
| as: true, |
| replace: true, |
| scroll: true, |
| shallow: true, |
| passHref: true, |
| prefetch: true, |
| unstable_dynamicOnHover: true, |
| onClick: true, |
| onMouseEnter: true, |
| onTouchStart: true, |
| legacyBehavior: true, |
| onNavigate: true, |
| } as const |
| const optionalProps: LinkPropsOptional[] = Object.keys( |
| optionalPropsGuard |
| ) as LinkPropsOptional[] |
| optionalProps.forEach((key: LinkPropsOptional) => { |
| const valType = typeof props[key] |
|
|
| if (key === 'as') { |
| if (props[key] && valType !== 'string' && valType !== 'object') { |
| throw createPropError({ |
| key, |
| expected: '`string` or `object`', |
| actual: valType, |
| }) |
| } |
| } else if ( |
| key === 'onClick' || |
| key === 'onMouseEnter' || |
| key === 'onTouchStart' || |
| key === 'onNavigate' |
| ) { |
| if (props[key] && valType !== 'function') { |
| throw createPropError({ |
| key, |
| expected: '`function`', |
| actual: valType, |
| }) |
| } |
| } else if ( |
| key === 'replace' || |
| key === 'scroll' || |
| key === 'shallow' || |
| key === 'passHref' || |
| key === 'legacyBehavior' || |
| key === 'unstable_dynamicOnHover' |
| ) { |
| if (props[key] != null && valType !== 'boolean') { |
| throw createPropError({ |
| key, |
| expected: '`boolean`', |
| actual: valType, |
| }) |
| } |
| } else if (key === 'prefetch') { |
| if ( |
| props[key] != null && |
| valType !== 'boolean' && |
| props[key] !== 'auto' |
| ) { |
| throw createPropError({ |
| key, |
| expected: '`boolean | "auto"`', |
| actual: valType, |
| }) |
| } |
| } else { |
| |
| |
| const _: never = key |
| } |
| }) |
| } |
|
|
| if (process.env.NODE_ENV !== 'production') { |
| if (props.locale) { |
| warnOnce( |
| 'The `locale` prop is not supported in `next/link` while using the `app` router. Read more about app router internalization: https://nextjs.org/docs/app/building-your-application/routing/internationalization' |
| ) |
| } |
| if (!asProp) { |
| let href: string | undefined |
| if (typeof hrefProp === 'string') { |
| href = hrefProp |
| } else if ( |
| typeof hrefProp === 'object' && |
| typeof hrefProp.pathname === 'string' |
| ) { |
| href = hrefProp.pathname |
| } |
|
|
| if (href) { |
| const hasDynamicSegment = href |
| .split('/') |
| .some((segment) => segment.startsWith('[') && segment.endsWith(']')) |
|
|
| if (hasDynamicSegment) { |
| throw new Error( |
| `Dynamic href \`${href}\` found in <Link> while using the \`/app\` router, this is not supported. Read more: https://nextjs.org/docs/messages/app-dir-dynamic-href` |
| ) |
| } |
| } |
| } |
| } |
|
|
| const { href, as } = React.useMemo(() => { |
| const resolvedHref = formatStringOrUrl(hrefProp) |
| return { |
| href: resolvedHref, |
| as: asProp ? formatStringOrUrl(asProp) : resolvedHref, |
| } |
| }, [hrefProp, asProp]) |
|
|
| |
| let child: any |
| if (legacyBehavior) { |
| if (process.env.NODE_ENV === 'development') { |
| if (onClick) { |
| console.warn( |
| `"onClick" was passed to <Link> with \`href\` of \`${hrefProp}\` but "legacyBehavior" was set. The legacy behavior requires onClick be set on the child of next/link` |
| ) |
| } |
| if (onMouseEnterProp) { |
| console.warn( |
| `"onMouseEnter" was passed to <Link> with \`href\` of \`${hrefProp}\` but "legacyBehavior" was set. The legacy behavior requires onMouseEnter be set on the child of next/link` |
| ) |
| } |
| try { |
| child = React.Children.only(children) |
| } catch (err) { |
| if (!children) { |
| throw new Error( |
| `No children were passed to <Link> with \`href\` of \`${hrefProp}\` but one child is required https://nextjs.org/docs/messages/link-no-children` |
| ) |
| } |
| throw new Error( |
| `Multiple children were passed to <Link> with \`href\` of \`${hrefProp}\` but only one child is supported https://nextjs.org/docs/messages/link-multiple-children` + |
| (typeof window !== 'undefined' |
| ? " \nOpen your browser's console to view the Component stack trace." |
| : '') |
| ) |
| } |
| } else { |
| child = React.Children.only(children) |
| } |
| } else { |
| if (process.env.NODE_ENV === 'development') { |
| if ((children as any)?.type === 'a') { |
| throw new Error( |
| 'Invalid <Link> with <a> child. Please remove <a> or use <Link legacyBehavior>.\nLearn more: https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor' |
| ) |
| } |
| } |
| } |
|
|
| const childRef: any = legacyBehavior |
| ? child && typeof child === 'object' && child.ref |
| : forwardedRef |
|
|
| |
| |
| |
| |
| const observeLinkVisibilityOnMount = React.useCallback( |
| (element: HTMLAnchorElement | SVGAElement) => { |
| if (router !== null) { |
| linkInstanceRef.current = mountLinkInstance( |
| element, |
| href, |
| router, |
| fetchStrategy, |
| prefetchEnabled, |
| setOptimisticLinkStatus |
| ) |
| } |
|
|
| return () => { |
| if (linkInstanceRef.current) { |
| unmountLinkForCurrentNavigation(linkInstanceRef.current) |
| linkInstanceRef.current = null |
| } |
| unmountPrefetchableInstance(element) |
| } |
| }, |
| [prefetchEnabled, href, router, fetchStrategy, setOptimisticLinkStatus] |
| ) |
|
|
| const mergedRef = useMergedRef(observeLinkVisibilityOnMount, childRef) |
|
|
| const childProps: { |
| onTouchStart?: React.TouchEventHandler<HTMLAnchorElement> |
| onMouseEnter: React.MouseEventHandler<HTMLAnchorElement> |
| onClick: React.MouseEventHandler<HTMLAnchorElement> |
| href?: string |
| ref?: any |
| } = { |
| ref: mergedRef, |
| onClick(e) { |
| if (process.env.NODE_ENV !== 'production') { |
| if (!e) { |
| throw new Error( |
| `Component rendered inside next/link has to pass click event to "onClick" prop.` |
| ) |
| } |
| } |
|
|
| if (!legacyBehavior && typeof onClick === 'function') { |
| onClick(e) |
| } |
|
|
| if ( |
| legacyBehavior && |
| child.props && |
| typeof child.props.onClick === 'function' |
| ) { |
| child.props.onClick(e) |
| } |
|
|
| if (!router) { |
| return |
| } |
|
|
| if (e.defaultPrevented) { |
| return |
| } |
|
|
| linkClicked(e, href, as, linkInstanceRef, replace, scroll, onNavigate) |
| }, |
| onMouseEnter(e) { |
| if (!legacyBehavior && typeof onMouseEnterProp === 'function') { |
| onMouseEnterProp(e) |
| } |
|
|
| if ( |
| legacyBehavior && |
| child.props && |
| typeof child.props.onMouseEnter === 'function' |
| ) { |
| child.props.onMouseEnter(e) |
| } |
|
|
| if (!router) { |
| return |
| } |
|
|
| if (!prefetchEnabled || process.env.NODE_ENV === 'development') { |
| return |
| } |
|
|
| const upgradeToDynamicPrefetch = unstable_dynamicOnHover === true |
| onNavigationIntent( |
| e.currentTarget as HTMLAnchorElement | SVGAElement, |
| upgradeToDynamicPrefetch |
| ) |
| }, |
| onTouchStart: process.env.__NEXT_LINK_NO_TOUCH_START |
| ? undefined |
| : function onTouchStart(e) { |
| if (!legacyBehavior && typeof onTouchStartProp === 'function') { |
| onTouchStartProp(e) |
| } |
|
|
| if ( |
| legacyBehavior && |
| child.props && |
| typeof child.props.onTouchStart === 'function' |
| ) { |
| child.props.onTouchStart(e) |
| } |
|
|
| if (!router) { |
| return |
| } |
|
|
| if (!prefetchEnabled) { |
| return |
| } |
|
|
| const upgradeToDynamicPrefetch = unstable_dynamicOnHover === true |
| onNavigationIntent( |
| e.currentTarget as HTMLAnchorElement | SVGAElement, |
| upgradeToDynamicPrefetch |
| ) |
| }, |
| } |
|
|
| |
| |
| |
| if (isAbsoluteUrl(as)) { |
| childProps.href = as |
| } else if ( |
| !legacyBehavior || |
| passHref || |
| (child.type === 'a' && !('href' in child.props)) |
| ) { |
| childProps.href = addBasePath(as) |
| } |
|
|
| let link: React.ReactNode |
|
|
| if (legacyBehavior) { |
| if (process.env.NODE_ENV === 'development') { |
| errorOnce( |
| '`legacyBehavior` is deprecated and will be removed in a future ' + |
| 'release. A codemod is available to upgrade your components:\n\n' + |
| 'npx @next/codemod@latest new-link .\n\n' + |
| 'Learn more: https://nextjs.org/docs/app/building-your-application/upgrading/codemods#remove-a-tags-from-link-components' |
| ) |
| } |
| link = React.cloneElement(child, childProps) |
| } else { |
| link = ( |
| <a {...restProps} {...childProps}> |
| {children} |
| </a> |
| ) |
| } |
|
|
| return ( |
| <LinkStatusContext.Provider value={linkStatus}> |
| {link} |
| </LinkStatusContext.Provider> |
| ) |
| } |
|
|
| const LinkStatusContext = createContext< |
| typeof PENDING_LINK_STATUS | typeof IDLE_LINK_STATUS |
| >(IDLE_LINK_STATUS) |
|
|
| export const useLinkStatus = () => { |
| return useContext(LinkStatusContext) |
| } |
|
|