PHP 7.4.33
Preview: links.js.map Size: 15.10 KB
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/next/dist/client/components/links.js.map
{"version":3,"sources":["../../../src/client/components/links.ts"],"sourcesContent":["import type { FlightRouterState } from '../../server/app-render/types'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport { getCurrentAppRouterState } from '../../shared/lib/router/action-queue'\nimport { createPrefetchURL } from './app-router'\nimport { PrefetchKind } from './router-reducer/router-reducer-types'\nimport { getCurrentCacheVersion } from './segment-cache'\nimport { createCacheKey } from './segment-cache'\nimport {\n  type PrefetchTask,\n  PrefetchPriority,\n  schedulePrefetchTask as scheduleSegmentPrefetchTask,\n  cancelPrefetchTask,\n  bumpPrefetchTask,\n} from './segment-cache'\n\ntype LinkElement = HTMLAnchorElement | SVGAElement | HTMLFormElement\n\ntype LinkInstance = {\n  router: AppRouterInstance\n  kind: PrefetchKind.AUTO | PrefetchKind.FULL\n  prefetchHref: string\n\n  isVisible: boolean\n  wasHoveredOrTouched: boolean\n\n  // The most recently initiated prefetch task. It may or may not have\n  // already completed.  The same prefetch task object can be reused across\n  // multiple prefetches of the same link.\n  prefetchTask: PrefetchTask | null\n\n  // The cache version at the time the task was initiated. This is used to\n  // determine if the cache was invalidated since the task was initiated.\n  cacheVersion: number\n}\n\n// Use a WeakMap to associate a Link instance with its DOM element. This is\n// used by the IntersectionObserver to track the link's visibility.\nconst links: WeakMap<LinkElement, LinkInstance> | Map<Element, LinkInstance> =\n  typeof WeakMap === 'function' ? new WeakMap() : new Map()\n\n// A Set of the currently visible links. We re-prefetch visible links after a\n// cache invalidation, or when the current URL changes. It's a separate data\n// structure from the WeakMap above because only the visible links need to\n// be enumerated.\nconst visibleLinks: Set<LinkInstance> = new Set()\n\n// A single IntersectionObserver instance shared by all <Link> components.\nconst observer: IntersectionObserver | null =\n  typeof IntersectionObserver === 'function'\n    ? new IntersectionObserver(handleIntersect, {\n        rootMargin: '200px',\n      })\n    : null\n\nexport function mountLinkInstance(\n  element: LinkElement,\n  href: string,\n  router: AppRouterInstance,\n  kind: PrefetchKind.AUTO | PrefetchKind.FULL\n) {\n  let prefetchUrl: URL | null = null\n  try {\n    prefetchUrl = createPrefetchURL(href)\n    if (prefetchUrl === null) {\n      // We only track the link if it's prefetchable. For example, this excludes\n      // links to external URLs.\n      return\n    }\n  } catch {\n    // createPrefetchURL sometimes throws an error if an invalid URL is\n    // provided, though I'm not sure if it's actually necessary.\n    // TODO: Consider removing the throw from the inner function, or change it\n    // to reportError. Or maybe the error isn't even necessary for automatic\n    // prefetches, just navigations.\n    const reportErrorFn =\n      typeof reportError === 'function' ? reportError : console.error\n    reportErrorFn(\n      `Cannot prefetch '${href}' because it cannot be converted to a URL.`\n    )\n    return\n  }\n\n  const instance: LinkInstance = {\n    prefetchHref: prefetchUrl.href,\n    router,\n    kind,\n    isVisible: false,\n    wasHoveredOrTouched: false,\n    prefetchTask: null,\n    cacheVersion: -1,\n  }\n  const existingInstance = links.get(element)\n  if (existingInstance !== undefined) {\n    // This shouldn't happen because each <Link> component should have its own\n    // anchor tag instance, but it's defensive coding to avoid a memory leak in\n    // case there's a logical error somewhere else.\n    unmountLinkInstance(element)\n  }\n  links.set(element, instance)\n  if (observer !== null) {\n    observer.observe(element)\n  }\n}\n\nexport function unmountLinkInstance(element: LinkElement) {\n  const instance = links.get(element)\n  if (instance !== undefined) {\n    links.delete(element)\n    visibleLinks.delete(instance)\n    const prefetchTask = instance.prefetchTask\n    if (prefetchTask !== null) {\n      cancelPrefetchTask(prefetchTask)\n    }\n  }\n  if (observer !== null) {\n    observer.unobserve(element)\n  }\n}\n\nfunction handleIntersect(entries: Array<IntersectionObserverEntry>) {\n  for (const entry of entries) {\n    // Some extremely old browsers or polyfills don't reliably support\n    // isIntersecting so we check intersectionRatio instead. (Do we care? Not\n    // really. But whatever this is fine.)\n    const isVisible = entry.intersectionRatio > 0\n    onLinkVisibilityChanged(entry.target as HTMLAnchorElement, isVisible)\n  }\n}\n\nexport function onLinkVisibilityChanged(\n  element: LinkElement,\n  isVisible: boolean\n) {\n  if (process.env.NODE_ENV !== 'production') {\n    // Prefetching on viewport is disabled in development for performance\n    // reasons, because it requires compiling the target page.\n    // TODO: Investigate re-enabling this.\n    return\n  }\n\n  const instance = links.get(element)\n  if (instance === undefined) {\n    return\n  }\n\n  instance.isVisible = isVisible\n  if (isVisible) {\n    visibleLinks.add(instance)\n  } else {\n    visibleLinks.delete(instance)\n  }\n  rescheduleLinkPrefetch(instance)\n}\n\nexport function onNavigationIntent(element: HTMLAnchorElement | SVGAElement) {\n  const instance = links.get(element)\n  if (instance === undefined) {\n    return\n  }\n  // Prefetch the link on hover/touchstart.\n  if (instance !== undefined) {\n    instance.wasHoveredOrTouched = true\n    rescheduleLinkPrefetch(instance)\n  }\n}\n\nfunction rescheduleLinkPrefetch(instance: LinkInstance) {\n  const existingPrefetchTask = instance.prefetchTask\n\n  if (!instance.isVisible) {\n    // Cancel any in-progress prefetch task. (If it already finished then this\n    // is a no-op.)\n    if (existingPrefetchTask !== null) {\n      cancelPrefetchTask(existingPrefetchTask)\n    }\n    // We don't need to reset the prefetchTask to null upon cancellation; an\n    // old task object can be rescheduled with bumpPrefetchTask. This is a\n    // micro-optimization but also makes the code simpler (don't need to\n    // worry about whether an old task object is stale).\n    return\n  }\n\n  if (!process.env.__NEXT_CLIENT_SEGMENT_CACHE) {\n    // The old prefetch implementation does not have different priority levels.\n    // Just schedule a new prefetch task.\n    prefetchWithOldCacheImplementation(instance)\n    return\n  }\n\n  // In the Segment Cache implementation, we assign a higher priority level to\n  // links that were at one point hovered or touched. Since the queue is last-\n  // in-first-out, the highest priority Link is whichever one was hovered last.\n  //\n  // We also increase the relative priority of links whenever they re-enter the\n  // viewport, as if they were being scheduled for the first time.\n  const priority = instance.wasHoveredOrTouched\n    ? PrefetchPriority.Intent\n    : PrefetchPriority.Default\n  if (existingPrefetchTask === null) {\n    // Initiate a prefetch task.\n    const appRouterState = getCurrentAppRouterState()\n    if (appRouterState !== null) {\n      const nextUrl = appRouterState.nextUrl\n      const treeAtTimeOfPrefetch = appRouterState.tree\n      const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n      instance.prefetchTask = scheduleSegmentPrefetchTask(\n        cacheKey,\n        treeAtTimeOfPrefetch,\n        instance.kind === PrefetchKind.FULL,\n        priority\n      )\n      instance.cacheVersion = getCurrentCacheVersion()\n    }\n  } else {\n    // We already have an old task object that we can reschedule. This is\n    // effectively the same as canceling the old task and creating a new one.\n    bumpPrefetchTask(existingPrefetchTask, priority)\n  }\n}\n\nexport function pingVisibleLinks(\n  nextUrl: string | null,\n  tree: FlightRouterState\n) {\n  // For each currently visible link, cancel the existing prefetch task (if it\n  // exists) and schedule a new one. This is effectively the same as if all the\n  // visible links left and then re-entered the viewport.\n  //\n  // This is called when the Next-Url or the base tree changes, since those\n  // may affect the result of a prefetch task. It's also called after a\n  // cache invalidation.\n  const currentCacheVersion = getCurrentCacheVersion()\n  for (const instance of visibleLinks) {\n    const task = instance.prefetchTask\n    if (\n      task !== null &&\n      instance.cacheVersion === currentCacheVersion &&\n      task.key.nextUrl === nextUrl &&\n      task.treeAtTimeOfPrefetch === tree\n    ) {\n      // The cache has not been invalidated, and none of the inputs have\n      // changed. Bail out.\n      continue\n    }\n    // Something changed. Cancel the existing prefetch task and schedule a\n    // new one.\n    if (task !== null) {\n      cancelPrefetchTask(task)\n    }\n    const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n    const priority = instance.wasHoveredOrTouched\n      ? PrefetchPriority.Intent\n      : PrefetchPriority.Default\n    instance.prefetchTask = scheduleSegmentPrefetchTask(\n      cacheKey,\n      tree,\n      instance.kind === PrefetchKind.FULL,\n      priority\n    )\n    instance.cacheVersion = getCurrentCacheVersion()\n  }\n}\n\nfunction prefetchWithOldCacheImplementation(instance: LinkInstance) {\n  // This is the path used when the Segment Cache is not enabled.\n  if (typeof window === 'undefined') {\n    return\n  }\n\n  const doPrefetch = async () => {\n    // note that `appRouter.prefetch()` is currently sync,\n    // so we have to wrap this call in an async function to be able to catch() errors below.\n    return instance.router.prefetch(instance.prefetchHref, {\n      kind: instance.kind,\n    })\n  }\n\n  // Prefetch the page if asked (only in the client)\n  // We need to handle a prefetch error here since we may be\n  // loading with priority which can reject but we don't\n  // want to force navigation since this is only a prefetch\n  doPrefetch().catch((err) => {\n    if (process.env.NODE_ENV !== 'production') {\n      // rethrow to show invalid URL errors\n      throw err\n    }\n  })\n}\n"],"names":["mountLinkInstance","onLinkVisibilityChanged","onNavigationIntent","pingVisibleLinks","unmountLinkInstance","links","WeakMap","Map","visibleLinks","Set","observer","IntersectionObserver","handleIntersect","rootMargin","element","href","router","kind","prefetchUrl","createPrefetchURL","reportErrorFn","reportError","console","error","instance","prefetchHref","isVisible","wasHoveredOrTouched","prefetchTask","cacheVersion","existingInstance","get","undefined","set","observe","delete","cancelPrefetchTask","unobserve","entries","entry","intersectionRatio","target","process","env","NODE_ENV","add","rescheduleLinkPrefetch","existingPrefetchTask","__NEXT_CLIENT_SEGMENT_CACHE","prefetchWithOldCacheImplementation","priority","PrefetchPriority","Intent","Default","appRouterState","getCurrentAppRouterState","nextUrl","treeAtTimeOfPrefetch","tree","cacheKey","createCacheKey","scheduleSegmentPrefetchTask","PrefetchKind","FULL","getCurrentCacheVersion","bumpPrefetchTask","currentCacheVersion","task","key","window","doPrefetch","prefetch","catch","err"],"mappings":"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"}

Directory Contents

Dirs: 7 × Files: 120
Name Size Perms Modified Actions
errors DIR
- drwxr-xr-x 2025-03-28 11:04:45
Edit Download
globals DIR
- drwxr-xr-x 2025-03-28 11:04:45
Edit Download
- drwxr-xr-x 2025-03-28 11:04:45
Edit Download
metadata DIR
- drwxr-xr-x 2025-03-28 11:04:45
Edit Download
- drwxr-xr-x 2025-03-28 11:04:45
Edit Download
- drwxr-xr-x 2025-03-28 11:04:45
Edit Download
- drwxr-xr-x 2025-03-28 11:04:45
Edit Download
196 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
3.27 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
4.55 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
1.06 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
3.31 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
2.72 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
1.02 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
28.90 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
39.99 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
80 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
1.20 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
927 B lrw-r--r-- 2025-03-28 11:04:43
Edit Download
876 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
2.54 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
3.80 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
836 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
2.14 KB lrw-r--r-- 2025-03-28 11:04:39
Edit Download
2.99 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
158 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
1019 B lrw-r--r-- 2025-03-28 11:04:40
Edit Download
499 B lrw-r--r-- 2025-03-28 11:04:43
Edit Download
230 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
1.82 KB lrw-r--r-- 2025-03-28 11:04:40
Edit Download
1.24 KB lrw-r--r-- 2025-03-28 11:04:43
Edit Download
1.73 KB lrw-r--r-- 2025-03-28 11:04:45
Edit Download
8.26 KB lrw-r--r-- 2025-03-28 11:04:40
Edit Download
10.20 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
78 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
890 B lrw-r--r-- 2025-03-28 11:04:40
Edit Download
528 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
44 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
2.03 KB lrw-r--r-- 2025-03-28 11:04:40
Edit Download
1.92 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
326 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.32 KB lrw-r--r-- 2025-03-28 11:04:40
Edit Download
1.14 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
632 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
5.57 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
6.50 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
431 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
886 B lrw-r--r-- 2025-03-28 11:04:41
Edit Download
882 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
953 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
24.15 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
32.48 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
832 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
10.04 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
15.10 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
154 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.03 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
1.00 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
123 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
2.43 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
2.78 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
11 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
2.10 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
2.70 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
4.45 KB lrw-r--r-- 2025-03-28 11:04:45
Edit Download
7.51 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
12.24 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
1.14 KB lrw-r--r-- 2025-03-28 11:04:45
Edit Download
3.00 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
2.45 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
42 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
607 B lrw-r--r-- 2025-03-28 11:04:41
Edit Download
232 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
77 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
885 B lrw-r--r-- 2025-03-28 11:04:41
Edit Download
523 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
43 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.84 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
1.69 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
162 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.06 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
522 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
192 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
4.17 KB lrw-r--r-- 2025-03-28 11:04:41
Edit Download
3.51 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
776 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
3.19 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
3.87 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
633 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.78 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
2.06 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
120 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
967 B lrw-r--r-- 2025-03-28 11:04:42
Edit Download
313 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
2.41 KB lrw-r--r-- 2025-03-28 11:04:45
Edit Download
3.66 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
5.76 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
100 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.14 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
628 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
2.68 KB lrw-r--r-- 2025-03-28 11:04:45
Edit Download
6.33 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
6.67 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
205 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.27 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
909 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
81 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
909 B lrw-r--r-- 2025-03-28 11:04:42
Edit Download
547 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
47 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
2.06 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
1.95 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
183 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
769 B lrw-r--r-- 2025-03-28 11:04:42
Edit Download
433 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
64 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1011 B lrw-r--r-- 2025-03-28 11:04:42
Edit Download
815 B lrw-r--r-- 2025-03-28 11:04:44
Edit Download
591 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.22 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
1.08 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
64 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.49 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
1.45 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
418 B lrw-r--r-- 2025-03-28 11:04:45
Edit Download
1.88 KB lrw-r--r-- 2025-03-28 11:04:42
Edit Download
2.00 KB lrw-r--r-- 2025-03-28 11:04:44
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).