File size: 13,350 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
import type { FlightRouterState } from '../../server/app-render/types'
import type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'
import { getCurrentAppRouterState } from './app-router-instance'
import { createPrefetchURL } from './app-router'
import {
FetchStrategy,
isPrefetchTaskDirty,
type PrefetchTaskFetchStrategy,
} from './segment-cache'
import { createCacheKey } from './segment-cache'
import {
type PrefetchTask,
PrefetchPriority,
schedulePrefetchTask as scheduleSegmentPrefetchTask,
cancelPrefetchTask,
reschedulePrefetchTask,
} from './segment-cache'
import { startTransition } from 'react'
import { PrefetchKind } from './router-reducer/router-reducer-types'
type LinkElement = HTMLAnchorElement | SVGAElement
type Element = LinkElement | HTMLFormElement
// Properties that are shared between Link and Form instances. We use the same
// shape for both to prevent a polymorphic de-opt in the VM.
type LinkOrFormInstanceShared = {
router: AppRouterInstance
fetchStrategy: PrefetchTaskFetchStrategy
isVisible: boolean
// The most recently initiated prefetch task. It may or may not have
// already completed. The same prefetch task object can be reused across
// multiple prefetches of the same link.
prefetchTask: PrefetchTask | null
}
export type FormInstance = LinkOrFormInstanceShared & {
prefetchHref: string
setOptimisticLinkStatus: null
}
type PrefetchableLinkInstance = LinkOrFormInstanceShared & {
prefetchHref: string
setOptimisticLinkStatus: (status: { pending: boolean }) => void
}
type NonPrefetchableLinkInstance = LinkOrFormInstanceShared & {
prefetchHref: null
setOptimisticLinkStatus: (status: { pending: boolean }) => void
}
type PrefetchableInstance = PrefetchableLinkInstance | FormInstance
export type LinkInstance =
| PrefetchableLinkInstance
| NonPrefetchableLinkInstance
// Tracks the most recently navigated link instance. When null, indicates
// the current navigation was not initiated by a link click.
let linkForMostRecentNavigation: LinkInstance | null = null
// Status object indicating link is pending
export const PENDING_LINK_STATUS = { pending: true }
// Status object indicating link is idle
export const IDLE_LINK_STATUS = { pending: false }
// Updates the loading state when navigating between links
// - Resets the previous link's loading state
// - Sets the new link's loading state
// - Updates tracking of current navigation
export function setLinkForCurrentNavigation(link: LinkInstance | null) {
startTransition(() => {
linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS)
link?.setOptimisticLinkStatus(PENDING_LINK_STATUS)
linkForMostRecentNavigation = link
})
}
// Unmounts the current link instance from navigation tracking
export function unmountLinkForCurrentNavigation(link: LinkInstance) {
if (linkForMostRecentNavigation === link) {
linkForMostRecentNavigation = null
}
}
// Use a WeakMap to associate a Link instance with its DOM element. This is
// used by the IntersectionObserver to track the link's visibility.
const prefetchable:
| WeakMap<Element, PrefetchableInstance>
| Map<Element, PrefetchableInstance> =
typeof WeakMap === 'function' ? new WeakMap() : new Map()
// A Set of the currently visible links. We re-prefetch visible links after a
// cache invalidation, or when the current URL changes. It's a separate data
// structure from the WeakMap above because only the visible links need to
// be enumerated.
const prefetchableAndVisible: Set<PrefetchableInstance> = new Set()
// A single IntersectionObserver instance shared by all <Link> components.
const observer: IntersectionObserver | null =
typeof IntersectionObserver === 'function'
? new IntersectionObserver(handleIntersect, {
rootMargin: '200px',
})
: null
function observeVisibility(element: Element, instance: PrefetchableInstance) {
const existingInstance = prefetchable.get(element)
if (existingInstance !== undefined) {
// This shouldn't happen because each <Link> component should have its own
// anchor tag instance, but it's defensive coding to avoid a memory leak in
// case there's a logical error somewhere else.
unmountPrefetchableInstance(element)
}
// Only track prefetchable links that have a valid prefetch URL
prefetchable.set(element, instance)
if (observer !== null) {
observer.observe(element)
}
}
function coercePrefetchableUrl(href: string): URL | null {
try {
return createPrefetchURL(href)
} catch {
// createPrefetchURL sometimes throws an error if an invalid URL is
// provided, though I'm not sure if it's actually necessary.
// TODO: Consider removing the throw from the inner function, or change it
// to reportError. Or maybe the error isn't even necessary for automatic
// prefetches, just navigations.
const reportErrorFn =
typeof reportError === 'function' ? reportError : console.error
reportErrorFn(
`Cannot prefetch '${href}' because it cannot be converted to a URL.`
)
return null
}
}
export function mountLinkInstance(
element: LinkElement,
href: string,
router: AppRouterInstance,
fetchStrategy: PrefetchTaskFetchStrategy,
prefetchEnabled: boolean,
setOptimisticLinkStatus: (status: { pending: boolean }) => void
): LinkInstance {
if (prefetchEnabled) {
const prefetchURL = coercePrefetchableUrl(href)
if (prefetchURL !== null) {
const instance: PrefetchableLinkInstance = {
router,
fetchStrategy,
isVisible: false,
prefetchTask: null,
prefetchHref: prefetchURL.href,
setOptimisticLinkStatus,
}
// We only observe the link's visibility if it's prefetchable. For
// example, this excludes links to external URLs.
observeVisibility(element, instance)
return instance
}
}
// If the link is not prefetchable, we still create an instance so we can
// track its optimistic state (i.e. useLinkStatus).
const instance: NonPrefetchableLinkInstance = {
router,
fetchStrategy,
isVisible: false,
prefetchTask: null,
prefetchHref: null,
setOptimisticLinkStatus,
}
return instance
}
export function mountFormInstance(
element: HTMLFormElement,
href: string,
router: AppRouterInstance,
fetchStrategy: PrefetchTaskFetchStrategy
): void {
const prefetchURL = coercePrefetchableUrl(href)
if (prefetchURL === null) {
// This href is not prefetchable, so we don't track it.
// TODO: We currently observe/unobserve a form every time its href changes.
// For Links, this isn't a big deal because the href doesn't usually change,
// but for forms it's extremely common. We should optimize this.
return
}
const instance: FormInstance = {
router,
fetchStrategy,
isVisible: false,
prefetchTask: null,
prefetchHref: prefetchURL.href,
setOptimisticLinkStatus: null,
}
observeVisibility(element, instance)
}
export function unmountPrefetchableInstance(element: Element) {
const instance = prefetchable.get(element)
if (instance !== undefined) {
prefetchable.delete(element)
prefetchableAndVisible.delete(instance)
const prefetchTask = instance.prefetchTask
if (prefetchTask !== null) {
cancelPrefetchTask(prefetchTask)
}
}
if (observer !== null) {
observer.unobserve(element)
}
}
function handleIntersect(entries: Array<IntersectionObserverEntry>) {
for (const entry of entries) {
// Some extremely old browsers or polyfills don't reliably support
// isIntersecting so we check intersectionRatio instead. (Do we care? Not
// really. But whatever this is fine.)
const isVisible = entry.intersectionRatio > 0
onLinkVisibilityChanged(entry.target as HTMLAnchorElement, isVisible)
}
}
export function onLinkVisibilityChanged(element: Element, isVisible: boolean) {
if (process.env.NODE_ENV !== 'production') {
// Prefetching on viewport is disabled in development for performance
// reasons, because it requires compiling the target page.
// TODO: Investigate re-enabling this.
return
}
const instance = prefetchable.get(element)
if (instance === undefined) {
return
}
instance.isVisible = isVisible
if (isVisible) {
prefetchableAndVisible.add(instance)
} else {
prefetchableAndVisible.delete(instance)
}
rescheduleLinkPrefetch(instance, PrefetchPriority.Default)
}
export function onNavigationIntent(
element: HTMLAnchorElement | SVGAElement,
unstable_upgradeToDynamicPrefetch: boolean
) {
const instance = prefetchable.get(element)
if (instance === undefined) {
return
}
// Prefetch the link on hover/touchstart.
if (instance !== undefined) {
if (
process.env.__NEXT_DYNAMIC_ON_HOVER &&
unstable_upgradeToDynamicPrefetch
) {
// Switch to a full, dynamic prefetch
instance.fetchStrategy = FetchStrategy.Full
}
rescheduleLinkPrefetch(instance, PrefetchPriority.Intent)
}
}
function rescheduleLinkPrefetch(
instance: PrefetchableInstance,
priority: PrefetchPriority.Default | PrefetchPriority.Intent
) {
const existingPrefetchTask = instance.prefetchTask
if (!instance.isVisible) {
// Cancel any in-progress prefetch task. (If it already finished then this
// is a no-op.)
if (existingPrefetchTask !== null) {
cancelPrefetchTask(existingPrefetchTask)
}
// We don't need to reset the prefetchTask to null upon cancellation; an
// old task object can be rescheduled with reschedulePrefetchTask. This is a
// micro-optimization but also makes the code simpler (don't need to
// worry about whether an old task object is stale).
return
}
if (!process.env.__NEXT_CLIENT_SEGMENT_CACHE) {
// The old prefetch implementation does not have different priority levels.
// Just schedule a new prefetch task.
prefetchWithOldCacheImplementation(instance)
return
}
const appRouterState = getCurrentAppRouterState()
if (appRouterState !== null) {
const treeAtTimeOfPrefetch = appRouterState.tree
if (existingPrefetchTask === null) {
// Initiate a prefetch task.
const nextUrl = appRouterState.nextUrl
const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)
instance.prefetchTask = scheduleSegmentPrefetchTask(
cacheKey,
treeAtTimeOfPrefetch,
instance.fetchStrategy,
priority,
null
)
} else {
// We already have an old task object that we can reschedule. This is
// effectively the same as canceling the old task and creating a new one.
reschedulePrefetchTask(
existingPrefetchTask,
treeAtTimeOfPrefetch,
instance.fetchStrategy,
priority
)
}
}
}
export function pingVisibleLinks(
nextUrl: string | null,
tree: FlightRouterState
) {
// For each currently visible link, cancel the existing prefetch task (if it
// exists) and schedule a new one. This is effectively the same as if all the
// visible links left and then re-entered the viewport.
//
// This is called when the Next-Url or the base tree changes, since those
// may affect the result of a prefetch task. It's also called after a
// cache invalidation.
for (const instance of prefetchableAndVisible) {
const task = instance.prefetchTask
if (task !== null && !isPrefetchTaskDirty(task, nextUrl, tree)) {
// The cache has not been invalidated, and none of the inputs have
// changed. Bail out.
continue
}
// Something changed. Cancel the existing prefetch task and schedule a
// new one.
if (task !== null) {
cancelPrefetchTask(task)
}
const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)
instance.prefetchTask = scheduleSegmentPrefetchTask(
cacheKey,
tree,
instance.fetchStrategy,
PrefetchPriority.Default,
null
)
}
}
function prefetchWithOldCacheImplementation(instance: PrefetchableInstance) {
// This is the path used when the Segment Cache is not enabled.
if (typeof window === 'undefined') {
return
}
const doPrefetch = async () => {
// note that `appRouter.prefetch()` is currently sync,
// so we have to wrap this call in an async function to be able to catch() errors below.
let prefetchKind: PrefetchKind
switch (instance.fetchStrategy) {
case FetchStrategy.PPR: {
prefetchKind = PrefetchKind.AUTO
break
}
case FetchStrategy.Full: {
prefetchKind = PrefetchKind.FULL
break
}
default: {
instance.fetchStrategy satisfies never
// Unreachable, but otherwise typescript will consider the variable unassigned
prefetchKind = undefined!
}
}
return instance.router.prefetch(instance.prefetchHref, {
kind: prefetchKind,
})
}
// Prefetch the page if asked (only in the client)
// We need to handle a prefetch error here since we may be
// loading with priority which can reject but we don't
// want to force navigation since this is only a prefetch
doPrefetch().catch((err) => {
if (process.env.NODE_ENV !== 'production') {
// rethrow to show invalid URL errors
throw err
}
})
}
|