{"version":3,"file":"Swup.cjs","sources":["../src/helpers/classify.ts","../src/helpers/getCurrentUrl.ts","../src/helpers/history.ts","../src/helpers/delegateEvent.ts","../src/helpers/Location.ts","../src/modules/fetchPage.ts","../src/modules/Cache.ts","../src/utils/index.ts","../src/modules/Classes.ts","../src/modules/Visit.ts","../src/modules/Hooks.ts","../src/modules/getAnchorElement.ts","../src/modules/awaitAnimations.ts","../src/modules/navigate.ts","../src/modules/animatePageOut.ts","../src/modules/replaceContent.ts","../src/modules/scrollToContent.ts","../src/modules/animatePageIn.ts","../src/modules/renderPage.ts","../src/modules/plugins.ts","../src/modules/resolveUrl.ts","../src/Swup.ts","../src/helpers/matchPath.ts"],"sourcesContent":["/** Turn a string into a slug by lowercasing and replacing whitespace. */\nexport const classify = (text: string, fallback?: string): string => {\n\tconst output = String(text)\n\t\t.toLowerCase()\n\t\t// .normalize('NFD') // split an accented letter in the base letter and the accent\n\t\t// .replace(/[\\u0300-\\u036f]/g, '') // remove all previously split accents\n\t\t.replace(/[\\s/_.]+/g, '-') // replace spaces and _./ with '-'\n\t\t.replace(/[^\\w-]+/g, '') // remove all non-word chars\n\t\t.replace(/--+/g, '-') // replace repeating '-' with single '-'\n\t\t.replace(/^-+|-+$/g, ''); // trim '-' from edges\n\treturn output || fallback || '';\n};\n","/** Get the current page URL: path name + query params. Optionally including hash. */\nexport const getCurrentUrl = ({ hash }: { hash?: boolean } = {}): string => {\n\treturn window.location.pathname + window.location.search + (hash ? window.location.hash : '');\n};\n","import { getCurrentUrl } from './getCurrentUrl.js';\n\nexport interface HistoryState {\n\turl: string;\n\tsource: 'swup';\n\trandom: number;\n\tindex?: number;\n\t[key: string]: unknown;\n}\n\ntype HistoryData = Record<string, unknown>;\n\n/** Create a new history record with a custom swup identifier. */\nexport const createHistoryRecord = (url: string, data: HistoryData = {}): void => {\n\turl = url || getCurrentUrl({ hash: true });\n\tconst state: HistoryState = {\n\t\turl,\n\t\trandom: Math.random(),\n\t\tsource: 'swup',\n\t\t...data\n\t};\n\twindow.history.pushState(state, '', url);\n};\n\n/** Update the current history record with a custom swup identifier. */\nexport const updateHistoryRecord = (url: string | null = null, data: HistoryData = {}): void => {\n\turl = url || getCurrentUrl({ hash: true });\n\tconst currentState = (window.history.state as HistoryState) || {};\n\tconst state: HistoryState = {\n\t\t...currentState,\n\t\turl,\n\t\trandom: Math.random(),\n\t\tsource: 'swup',\n\t\t...data\n\t};\n\twindow.history.replaceState(state, '', url);\n};\n","import delegate, {\n\ttype DelegateEventHandler,\n\ttype DelegateOptions,\n\ttype EventType\n} from 'delegate-it';\nimport type { ParseSelector } from 'typed-query-selector/parser.js';\n\nexport type DelegateEventUnsubscribe = {\n\tdestroy: () => void;\n};\n\n/** Register a delegated event listener. */\nexport const delegateEvent = <\n\tSelector extends string,\n\tTElement extends Element = ParseSelector<Selector, HTMLElement>,\n\tTEvent extends EventType = EventType\n>(\n\tselector: Selector,\n\ttype: TEvent,\n\tcallback: DelegateEventHandler<GlobalEventHandlersEventMap[TEvent], TElement>,\n\toptions?: DelegateOptions\n): DelegateEventUnsubscribe => {\n\tconst controller = new AbortController();\n\toptions = { ...options, signal: controller.signal };\n\tdelegate<Selector, TElement, TEvent>(selector, type, callback, options);\n\treturn { destroy: () => controller.abort() };\n};\n","/**\n * A helper for creating a Location from either an element\n * or a URL object/string\n *\n */\nexport class Location extends URL {\n\tconstructor(url: URL | string, base: string = document.baseURI) {\n\t\tsuper(url.toString(), base);\n\t\t// Fix Safari bug with extending native classes\n\t\tObject.setPrototypeOf(this, Location.prototype);\n\t}\n\n\t/**\n\t * The full local path including query params.\n\t */\n\tget url(): string {\n\t\treturn this.pathname + this.search;\n\t}\n\n\t/**\n\t * Instantiate a Location from an element's href attribute\n\t * @param el\n\t * @returns new Location instance\n\t */\n\tstatic fromElement(el: Element): Location {\n\t\tconst href = el.getAttribute('href') || el.getAttribute('xlink:href') || '';\n\t\treturn new Location(href);\n\t}\n\n\t/**\n\t * Instantiate a Location from a URL object or string\n\t * @param url\n\t * @returns new Location instance\n\t */\n\tstatic fromUrl(url: URL | string): Location {\n\t\treturn new Location(url);\n\t}\n}\n","import type Swup from '../Swup.js';\nimport { Location } from '../helpers.js';\nimport type { Visit } from './Visit.js';\n\n/** A page object as used by swup and its cache. */\nexport interface PageData {\n\t/** The URL of the page */\n\turl: string;\n\t/** The complete HTML response received from the server */\n\thtml: string;\n}\n\n/** Define how a page is fetched. */\nexport interface FetchOptions extends Omit<RequestInit, 'cache'> {\n\t/** The request method. */\n\tmethod?: 'GET' | 'POST';\n\t/** The body of the request: raw string, form data object or URL params. */\n\tbody?: string | FormData | URLSearchParams;\n\t/** The request timeout in milliseconds. */\n\ttimeout?: number;\n\t/** Optional visit object with additional context. @internal */\n\tvisit?: Visit;\n}\n\nexport class FetchError extends Error {\n\turl: string;\n\tstatus?: number;\n\taborted: boolean;\n\ttimedOut: boolean;\n\tconstructor(\n\t\tmessage: string,\n\t\tdetails: { url: string; status?: number; aborted?: boolean; timedOut?: boolean }\n\t) {\n\t\tsuper(message);\n\t\tthis.name = 'FetchError';\n\t\tthis.url = details.url;\n\t\tthis.status = details.status;\n\t\tthis.aborted = details.aborted || false;\n\t\tthis.timedOut = details.timedOut || false;\n\t}\n}\n\n/**\n * Fetch a page from the server, return it and cache it.\n */\nexport async function fetchPage(\n\tthis: Swup,\n\turl: URL | string,\n\toptions: FetchOptions = {}\n): Promise<PageData> {\n\turl = Location.fromUrl(url).url;\n\n\tconst { visit = this.visit } = options;\n\tconst headers = { ...this.options.requestHeaders, ...options.headers };\n\tconst timeout = options.timeout ?? this.options.timeout;\n\tconst controller = new AbortController();\n\tconst { signal } = controller;\n\toptions = { ...options, headers, signal };\n\n\tlet timedOut = false;\n\tlet timeoutId: ReturnType<typeof setTimeout> | null = null;\n\tif (timeout && timeout > 0) {\n\t\ttimeoutId = setTimeout(() => {\n\t\t\ttimedOut = true;\n\t\t\tcontroller.abort('timeout');\n\t\t}, timeout);\n\t}\n\n\t// Allow hooking before this and returning a custom response-like object (e.g. custom fetch implementation)\n\tlet response: Response;\n\ttry {\n\t\tresponse = await this.hooks.call(\n\t\t\t'fetch:request',\n\t\t\tvisit,\n\t\t\t{ url, options },\n\t\t\t(visit, { url, options }) => fetch(url, options)\n\t\t);\n\t\tif (timeoutId) {\n\t\t\tclearTimeout(timeoutId);\n\t\t}\n\t} catch (error) {\n\t\tif (timedOut) {\n\t\t\tthis.hooks.call('fetch:timeout', visit, { url });\n\t\t\tthrow new FetchError(`Request timed out: ${url}`, { url, timedOut });\n\t\t}\n\t\tif ((error as Error)?.name === 'AbortError' || signal.aborted) {\n\t\t\tthrow new FetchError(`Request aborted: ${url}`, { url, aborted: true });\n\t\t}\n\t\tthrow error;\n\t}\n\n\tconst { status, url: responseUrl } = response;\n\tconst html = await response.text();\n\n\tif (status === 500) {\n\t\tthis.hooks.call('fetch:error', visit, { status, response, url: responseUrl });\n\t\tthrow new FetchError(`Server error: ${responseUrl}`, { status, url: responseUrl });\n\t}\n\n\tif (!html) {\n\t\tthrow new FetchError(`Empty response: ${responseUrl}`, { status, url: responseUrl });\n\t}\n\n\t// Resolve real url after potential redirect\n\tconst { url: finalUrl } = Location.fromUrl(responseUrl);\n\tconst page = { url: finalUrl, html };\n\n\t// Write to cache for safe methods and non-redirects\n\tif (visit.cache.write && (!options.method || options.method === 'GET') && url === finalUrl) {\n\t\tthis.cache.set(page.url, page);\n\t}\n\n\treturn page;\n}\n","import type Swup from '../Swup.js';\nimport { Location } from '../helpers.js';\nimport { type PageData } from './fetchPage.js';\n\nexport interface CacheData extends PageData {}\n\n/**\n * In-memory page cache.\n */\nexport class Cache {\n\t/** Swup instance this cache belongs to */\n\tprotected swup: Swup;\n\n\t/** Cached pages, indexed by URL */\n\tprotected pages: Map<string, CacheData> = new Map();\n\n\tconstructor(swup: Swup) {\n\t\tthis.swup = swup;\n\t}\n\n\t/** Number of cached pages in memory. */\n\tget size(): number {\n\t\treturn this.pages.size;\n\t}\n\n\t/** All cached pages. */\n\tget all() {\n\t\tconst copy = new Map();\n\t\tthis.pages.forEach((page, key) => {\n\t\t\tcopy.set(key, { ...page });\n\t\t});\n\t\treturn copy;\n\t}\n\n\t/** Check if the given URL has been cached. */\n\thas(url: string): boolean {\n\t\treturn this.pages.has(this.resolve(url));\n\t}\n\n\t/** Return a shallow copy of the cached page object if available. */\n\tget(url: string): CacheData | undefined {\n\t\tconst result = this.pages.get(this.resolve(url));\n\t\tif (!result) return result;\n\t\treturn { ...result };\n\t}\n\n\t/** Create a cache record for the specified URL. */\n\tset(url: string, page: CacheData) {\n\t\turl = this.resolve(url);\n\t\tpage = { ...page, url };\n\t\tthis.pages.set(url, page);\n\t\tthis.swup.hooks.callSync('cache:set', undefined, { page });\n\t}\n\n\t/** Update a cache record, overwriting or adding custom data. */\n\tupdate(url: string, payload: object) {\n\t\turl = this.resolve(url);\n\t\tconst page = { ...this.get(url), ...payload, url } as CacheData;\n\t\tthis.pages.set(url, page);\n\t}\n\n\t/** Delete a cache record. */\n\tdelete(url: string): void {\n\t\tthis.pages.delete(this.resolve(url));\n\t}\n\n\t/** Empty the cache. */\n\tclear(): void {\n\t\tthis.pages.clear();\n\t\tthis.swup.hooks.callSync('cache:clear', undefined, undefined);\n\t}\n\n\t/** Remove all cache entries that return true for a given predicate function.  */\n\tprune(predicate: (url: string, page: CacheData) => boolean): void {\n\t\tthis.pages.forEach((page, url) => {\n\t\t\tif (predicate(url, page)) {\n\t\t\t\tthis.delete(url);\n\t\t\t}\n\t\t});\n\t}\n\n\t/** Resolve URLs by making them local and letting swup resolve them. */\n\tprotected resolve(urlToResolve: string): string {\n\t\tconst { url } = Location.fromUrl(urlToResolve);\n\t\treturn this.swup.resolveUrl(url);\n\t}\n}\n","/** Find an element by selector. */\nexport const query = (selector: string, context: Document | Element = document) => {\n\treturn context.querySelector<HTMLElement>(selector);\n};\n\n/** Find a set of elements by selector. */\nexport const queryAll = (\n\tselector: string,\n\tcontext: Document | Element = document\n): HTMLElement[] => {\n\treturn Array.from(context.querySelectorAll(selector));\n};\n\n/** Return a Promise that resolves after the next event loop. */\nexport const nextTick = (): Promise<void> => {\n\treturn new Promise((resolve) => {\n\t\trequestAnimationFrame(() => {\n\t\t\trequestAnimationFrame(() => {\n\t\t\t\tresolve();\n\t\t\t});\n\t\t});\n\t});\n};\n\n/** Check if an object is a Promise or a Thenable */\nexport function isPromise<T>(obj: unknown): obj is PromiseLike<T> {\n\treturn (\n\t\t!!obj &&\n\t\t(typeof obj === 'object' || typeof obj === 'function') &&\n\t\ttypeof (obj as Record<string, unknown>).then === 'function'\n\t);\n}\n\n/** Call a function as a Promise. Resolves with the returned Promsise or immediately. */\n// eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/no-explicit-any\nexport function runAsPromise(func: Function, args: unknown[] = []): Promise<unknown> {\n\treturn new Promise((resolve, reject) => {\n\t\tconst result: unknown = func(...args);\n\t\tif (isPromise(result)) {\n\t\t\tresult.then(resolve, reject);\n\t\t} else {\n\t\t\tresolve(result);\n\t\t}\n\t});\n}\n\n/**\n * Force a layout reflow, e.g. after adding classnames\n * @see https://stackoverflow.com/a/21665117/3759615\n */\nexport function forceReflow(element?: HTMLElement): void {\n\telement = element || document.body;\n\telement?.getBoundingClientRect();\n}\n\n/**\n * Read data attribute from closest element with that attribute.\n *\n * Returns `undefined` if no element is found or attribute is missing.\n * Returns `true` if attribute is present without a value.\n */\nexport function getContextualAttr(\n\tel: Element | undefined,\n\tattr: string\n): string | boolean | undefined {\n\tconst target = el?.closest(`[${attr}]`);\n\treturn target?.hasAttribute(attr) ? target?.getAttribute(attr) || true : undefined;\n}\n","import type Swup from '../Swup.js';\nimport { queryAll } from '../utils.js';\n\nexport class Classes {\n\tprotected swup: Swup;\n\tprotected swupClasses = [\n\t\t'to-',\n\t\t'is-changing',\n\t\t'is-rendering',\n\t\t'is-popstate',\n\t\t'is-animating',\n\t\t'is-leaving'\n\t];\n\n\tconstructor(swup: Swup) {\n\t\tthis.swup = swup;\n\t}\n\n\tprotected get selectors(): string[] {\n\t\tconst { scope } = this.swup.visit.animation;\n\t\tif (scope === 'containers') return this.swup.visit.containers;\n\t\tif (scope === 'html') return ['html'];\n\t\tif (Array.isArray(scope)) return scope;\n\t\treturn [];\n\t}\n\n\tprotected get selector(): string {\n\t\treturn this.selectors.join(',');\n\t}\n\n\tprotected get targets(): HTMLElement[] {\n\t\tif (!this.selector.trim()) return [];\n\t\treturn queryAll(this.selector);\n\t}\n\n\tadd(...classes: string[]): void {\n\t\tthis.targets.forEach((target) => target.classList.add(...classes));\n\t}\n\n\tremove(...classes: string[]): void {\n\t\tthis.targets.forEach((target) => target.classList.remove(...classes));\n\t}\n\n\tclear(): void {\n\t\tthis.targets.forEach((target) => {\n\t\t\tconst remove = target.className.split(' ').filter((c) => this.isSwupClass(c));\n\t\t\ttarget.classList.remove(...remove);\n\t\t});\n\t}\n\n\tprotected isSwupClass(className: string): boolean {\n\t\treturn this.swupClasses.some((c) => className.startsWith(c));\n\t}\n}\n","import type Swup from '../Swup.js';\nimport type { Options } from '../Swup.js';\nimport type { HistoryAction, HistoryDirection } from './navigate.js';\n\n/** See below for the class Visit {} definition */\n// export interface Visit {}\n\nexport interface VisitFrom {\n\t/** The URL of the previous page */\n\turl: string;\n\t/** The hash of the previous page */\n\thash?: string;\n}\n\nexport interface VisitTo {\n\t/** The URL of the next page */\n\turl: string;\n\t/** The hash of the next page */\n\thash?: string;\n\t/** The HTML content of the next page */\n\thtml?: string;\n\t/** The parsed document of the next page, available during visit */\n\tdocument?: Document;\n}\n\nexport interface VisitAnimation {\n\t/** Whether this visit is animated. Default: `true` */\n\tanimate: boolean;\n\t/** Whether to wait for the next page to load before starting the animation. Default: `false` */\n\twait: boolean;\n\t/** Name of a custom animation to run. */\n\tname?: string;\n\t/** Whether this animation uses the native browser ViewTransition API. Default: `false` */\n\tnative: boolean;\n\t/** Elements on which to add animation classes. Default: `html` element */\n\tscope: 'html' | 'containers' | string[];\n\t/** Selector for detecting animation timing. Default: `[class*=\"transition-\"]` */\n\tselector: Options['animationSelector'];\n}\n\nexport interface VisitScroll {\n\t/** Whether to reset the scroll position after the visit. Default: `true` */\n\treset: boolean;\n\t/** Anchor element to scroll to on the next page. */\n\ttarget?: string | false;\n}\n\nexport interface VisitTrigger {\n\t/** DOM element that triggered this visit. */\n\tel?: Element;\n\t/** DOM event that triggered this visit. */\n\tevent?: Event;\n}\n\nexport interface VisitCache {\n\t/** Whether this visit will try to load the requested page from cache. */\n\tread: boolean;\n\t/** Whether this visit will save the loaded page in cache. */\n\twrite: boolean;\n}\n\nexport interface VisitHistory {\n\t/** History action to perform: `push` for creating a new history entry, `replace` for replacing the current entry. Default: `push` */\n\taction: HistoryAction;\n\t/** Whether this visit was triggered by a browser history navigation. */\n\tpopstate: boolean;\n\t/** The direction of travel in case of a browser history navigation: backward or forward. */\n\tdirection: HistoryDirection | undefined;\n}\n\nexport interface VisitInitOptions {\n\tto: string;\n\tfrom?: string;\n\thash?: string;\n\tel?: Element;\n\tevent?: Event;\n}\n\n/** @internal */\nexport const VisitState = {\n\tCREATED: 1,\n\tQUEUED: 2,\n\tSTARTED: 3,\n\tLEAVING: 4,\n\tLOADED: 5,\n\tENTERING: 6,\n\tCOMPLETED: 7,\n\tABORTED: 8,\n\tFAILED: 9\n} as const;\n\n/** @internal */\nexport type VisitState = (typeof VisitState)[keyof typeof VisitState];\n\n/** An object holding details about the current visit. */\nexport class Visit {\n\t/** A unique ID to identify this visit */\n\tid: number;\n\t/** The current state of this visit @internal */\n\tstate: VisitState;\n\t/** The previous page, about to leave */\n\tfrom: VisitFrom;\n\t/** The next page, about to enter */\n\tto: VisitTo;\n\t/** The content containers, about to be replaced */\n\tcontainers: Options['containers'];\n\t/** Information about animated page transitions */\n\tanimation: VisitAnimation;\n\t/** What triggered this visit */\n\ttrigger: VisitTrigger;\n\t/** Cache behavior for this visit */\n\tcache: VisitCache;\n\t/** Browser history behavior on this visit */\n\thistory: VisitHistory;\n\t/** Scroll behavior on this visit */\n\tscroll: VisitScroll;\n\t/** User-defined metadata */\n\tmeta: Record<string, unknown>;\n\n\tconstructor(swup: Swup, options: VisitInitOptions) {\n\t\tconst { to, from, hash, el, event } = options;\n\n\t\tthis.id = Math.random();\n\t\tthis.state = VisitState.CREATED;\n\t\tthis.from = { url: from ?? swup.location.url, hash: swup.location.hash };\n\t\tthis.to = { url: to, hash };\n\t\tthis.containers = swup.options.containers;\n\t\tthis.animation = {\n\t\t\tanimate: true,\n\t\t\twait: false,\n\t\t\tname: undefined,\n\t\t\tnative: swup.options.native,\n\t\t\tscope: swup.options.animationScope,\n\t\t\tselector: swup.options.animationSelector\n\t\t};\n\t\tthis.trigger = { el, event };\n\t\tthis.cache = {\n\t\t\tread: swup.options.cache,\n\t\t\twrite: swup.options.cache\n\t\t};\n\t\tthis.history = {\n\t\t\taction: 'push',\n\t\t\tpopstate: false,\n\t\t\tdirection: undefined\n\t\t};\n\t\tthis.scroll = {\n\t\t\treset: true,\n\t\t\ttarget: undefined\n\t\t};\n\t\tthis.meta = {};\n\t}\n\n\t/** @internal */\n\tadvance(state: VisitState) {\n\t\tif (this.state < state) {\n\t\t\tthis.state = state;\n\t\t}\n\t}\n\n\t/** @internal */\n\tabort() {\n\t\tthis.state = VisitState.ABORTED;\n\t}\n\n\t/** Is this visit done, i.e. completed, failed, or aborted? */\n\tget done(): boolean {\n\t\treturn this.state >= VisitState.COMPLETED;\n\t}\n}\n\n/** Create a new visit object. */\nexport function createVisit(this: Swup, options: VisitInitOptions): Visit {\n\treturn new Visit(this, options);\n}\n","import type { DelegateEvent } from 'delegate-it';\n\nimport type Swup from '../Swup.js';\nimport { isPromise, runAsPromise } from '../utils.js';\nimport { Visit } from './Visit.js';\nimport type { FetchOptions, PageData } from './fetchPage.js';\n\nexport interface HookDefinitions {\n\t'animation:out:start': undefined;\n\t'animation:out:await': { skip: boolean };\n\t'animation:out:end': undefined;\n\t'animation:in:start': undefined;\n\t'animation:in:await': { skip: boolean };\n\t'animation:in:end': undefined;\n\t'animation:skip': undefined;\n\t'cache:clear': undefined;\n\t'cache:set': { page: PageData };\n\t'content:replace': { page: PageData };\n\t'content:scroll': undefined;\n\t'enable': undefined;\n\t'disable': undefined;\n\t'fetch:request': { url: string; options: FetchOptions };\n\t'fetch:error': { url: string; status: number; response: Response };\n\t'fetch:timeout': { url: string };\n\t'history:popstate': { event: PopStateEvent };\n\t'link:click': { el: HTMLAnchorElement; event: DelegateEvent<MouseEvent> };\n\t'link:self': undefined;\n\t'link:anchor': { hash: string };\n\t'link:newtab': { href: string };\n\t'page:load': { page?: PageData; cache?: boolean; options: FetchOptions };\n\t'page:view': { url: string; title: string };\n\t'scroll:top': { options: ScrollIntoViewOptions };\n\t'scroll:anchor': { hash: string; options: ScrollIntoViewOptions };\n\t'visit:start': undefined;\n\t'visit:transition': undefined;\n\t'visit:abort': undefined;\n\t'visit:end': undefined;\n}\n\nexport interface HookReturnValues {\n\t'content:scroll': Promise<boolean> | boolean;\n\t'fetch:request': Promise<Response>;\n\t'page:load': Promise<PageData>;\n\t'scroll:top': boolean;\n\t'scroll:anchor': boolean;\n}\n\nexport type HookArguments<T extends HookName> = HookDefinitions[T];\n\nexport type HookName = keyof HookDefinitions;\n\nexport type HookNameWithModifier = `${HookName}.${HookModifier}`;\n\ntype HookModifier = 'once' | 'before' | 'replace';\n\n/** A generic hook handler. */\nexport type HookHandler<T extends HookName> = (\n\t/** Context about the current visit. */\n\tvisit: Visit,\n\t/** Local arguments passed into the handler. */\n\targs: HookArguments<T>\n) => Promise<unknown> | unknown;\n\n/** A default hook handler with an expected return type. */\nexport type HookDefaultHandler<T extends HookName> = (\n\t/** Context about the current visit. */\n\tvisit: Visit,\n\t/** Local arguments passed into the handler. */\n\targs: HookArguments<T>,\n\t/** Default handler to be executed. Available if replacing an internal hook handler. */\n\tdefaultHandler?: HookDefaultHandler<T>\n) => T extends keyof HookReturnValues ? HookReturnValues[T] : Promise<unknown> | unknown;\n\nexport type Handlers = {\n\t[K in HookName]: HookHandler<K>[];\n};\n\nexport type HookInitOptions = {\n\t[K in HookName as K | `${K}.${HookModifier}`]: HookHandler<K>;\n} & {\n\t[K in HookName as K | `${K}.${HookModifier}.${HookModifier}`]: HookHandler<K>;\n};\n\n/** Unregister a previously registered hook handler. */\nexport type HookUnregister = () => void;\n\n/** Define when and how a hook handler is executed. */\nexport type HookOptions = {\n\t/** Execute the hook once, then remove the handler */\n\tonce?: boolean;\n\t/** Execute the hook before the internal default handler */\n\tbefore?: boolean;\n\t/** Set a priority for when to execute this hook. Lower numbers execute first. Default: `0` */\n\tpriority?: number;\n\t/** Replace the internal default handler with this hook handler */\n\treplace?: boolean;\n};\n\nexport type HookRegistration<\n\tT extends HookName,\n\tH extends HookHandler<T> | HookDefaultHandler<T> = HookHandler<T>\n> = {\n\tid: number;\n\thook: T;\n\thandler: H;\n\tdefaultHandler?: HookDefaultHandler<T>;\n} & HookOptions;\n\ntype HookEventDetail = {\n\thook: HookName;\n\targs: unknown;\n\tvisit: Visit;\n};\n\nexport type HookEvent = CustomEvent<HookEventDetail>;\n\ntype HookLedger<T extends HookName> = Map<HookHandler<T>, HookRegistration<T>>;\n\ninterface HookRegistry extends Map<HookName, HookLedger<HookName>> {\n\tget<K extends HookName>(key: K): HookLedger<K> | undefined;\n\tset<K extends HookName>(key: K, value: HookLedger<K>): this;\n}\n\n/**\n * Hook registry.\n *\n * Create, trigger and handle hooks.\n *\n */\nexport class Hooks {\n\t/** Swup instance this registry belongs to */\n\tprotected swup: Swup;\n\n\t/** Map of all registered hook handlers. */\n\tprotected registry: HookRegistry = new Map();\n\n\t// Can we deduplicate this somehow? Or make it error when not in sync with HookDefinitions?\n\t// https://stackoverflow.com/questions/53387838/how-to-ensure-an-arrays-values-the-keys-of-a-typescript-interface/53395649\n\tprotected readonly hooks: HookName[] = [\n\t\t'animation:out:start',\n\t\t'animation:out:await',\n\t\t'animation:out:end',\n\t\t'animation:in:start',\n\t\t'animation:in:await',\n\t\t'animation:in:end',\n\t\t'animation:skip',\n\t\t'cache:clear',\n\t\t'cache:set',\n\t\t'content:replace',\n\t\t'content:scroll',\n\t\t'enable',\n\t\t'disable',\n\t\t'fetch:request',\n\t\t'fetch:error',\n\t\t'fetch:timeout',\n\t\t'history:popstate',\n\t\t'link:click',\n\t\t'link:self',\n\t\t'link:anchor',\n\t\t'link:newtab',\n\t\t'page:load',\n\t\t'page:view',\n\t\t'scroll:top',\n\t\t'scroll:anchor',\n\t\t'visit:start',\n\t\t'visit:transition',\n\t\t'visit:abort',\n\t\t'visit:end'\n\t];\n\n\tconstructor(swup: Swup) {\n\t\tthis.swup = swup;\n\t\tthis.init();\n\t}\n\n\t/**\n\t * Create ledgers for all core hooks.\n\t */\n\tprotected init() {\n\t\tthis.hooks.forEach((hook) => this.create(hook));\n\t}\n\n\t/**\n\t * Create a new hook type.\n\t */\n\tcreate(hook: string) {\n\t\tif (!this.registry.has(hook as HookName)) {\n\t\t\tthis.registry.set(hook as HookName, new Map());\n\t\t}\n\t}\n\n\t/**\n\t * Check if a hook type exists.\n\t */\n\texists(hook: HookName): boolean {\n\t\treturn this.registry.has(hook);\n\t}\n\n\t/**\n\t * Get the ledger with all registrations for a hook.\n\t */\n\tprotected get<T extends HookName>(hook: T): HookLedger<T> | undefined {\n\t\tconst ledger = this.registry.get(hook);\n\t\tif (ledger) {\n\t\t\treturn ledger;\n\t\t}\n\t\tconsole.error(`Unknown hook '${hook}'`);\n\t}\n\n\t/**\n\t * Remove all handlers of all hooks.\n\t */\n\tclear() {\n\t\tthis.registry.forEach((ledger) => ledger.clear());\n\t}\n\n\t/**\n\t * Register a new hook handler.\n\t * @param hook Name of the hook to listen for\n\t * @param handler The handler function to execute\n\t * @param options Object to specify how and when the handler is executed\n\t *                Available options:\n\t *                - `once`: Only execute the handler once\n\t *                - `before`: Execute the handler before the default handler\n\t *                - `priority`: Specify the order in which the handlers are executed\n\t *                - `replace`: Replace the default handler with this handler\n\t * @returns A function to unregister the handler\n\t */\n\n\t// Overload: replacing default handler\n\ton<T extends HookName, O extends HookOptions>(hook: T, handler: HookDefaultHandler<T>, options: O & { replace: true }): HookUnregister; // prettier-ignore\n\t// Overload: passed in handler options\n\ton<T extends HookName, O extends HookOptions>(hook: T, handler: HookHandler<T>, options: O): HookUnregister; // prettier-ignore\n\t// Overload: no handler options\n\ton<T extends HookName>(hook: T, handler: HookHandler<T>): HookUnregister; // prettier-ignore\n\t// Implementation\n\ton<T extends HookName, O extends HookOptions>(\n\t\thook: T,\n\t\thandler: O['replace'] extends true ? HookDefaultHandler<T> : HookHandler<T>,\n\t\toptions: Partial<O> = {}\n\t): HookUnregister {\n\t\tconst ledger = this.get(hook);\n\t\tif (!ledger) {\n\t\t\tconsole.warn(`Hook '${hook}' not found.`);\n\t\t\treturn () => {};\n\t\t}\n\n\t\tconst id = ledger.size + 1;\n\t\tconst registration: HookRegistration<T> = { ...options, id, hook, handler };\n\t\tledger.set(handler, registration);\n\n\t\treturn () => this.off(hook, handler);\n\t}\n\n\t/**\n\t * Register a new hook handler to run before the default handler.\n\t * Shortcut for `hooks.on(hook, handler, { before: true })`.\n\t * @param hook Name of the hook to listen for\n\t * @param handler The handler function to execute\n\t * @param options Any other event options (see `hooks.on()` for details)\n\t * @returns A function to unregister the handler\n\t * @see on\n\t */\n\t// Overload: passed in handler options\n\tbefore<T extends HookName>(hook: T, handler: HookHandler<T>, options: HookOptions): HookUnregister; // prettier-ignore\n\t// Overload: no handler options\n\tbefore<T extends HookName>(hook: T, handler: HookHandler<T>): HookUnregister;\n\t// Implementation\n\tbefore<T extends HookName>(\n\t\thook: T,\n\t\thandler: HookHandler<T>,\n\t\toptions: HookOptions = {}\n\t): HookUnregister {\n\t\treturn this.on(hook, handler, { ...options, before: true });\n\t}\n\n\t/**\n\t * Register a new hook handler to replace the default handler.\n\t * Shortcut for `hooks.on(hook, handler, { replace: true })`.\n\t * @param hook Name of the hook to listen for\n\t * @param handler The handler function to execute instead of the default handler\n\t * @param options Any other event options (see `hooks.on()` for details)\n\t * @returns A function to unregister the handler\n\t * @see on\n\t */\n\t// Overload: passed in handler options\n\treplace<T extends HookName>(hook: T, handler: HookDefaultHandler<T>, options: HookOptions): HookUnregister; // prettier-ignore\n\t// Overload: no handler options\n\treplace<T extends HookName>(hook: T, handler: HookDefaultHandler<T>): HookUnregister; // prettier-ignore\n\t// Implementation\n\treplace<T extends HookName>(\n\t\thook: T,\n\t\thandler: HookDefaultHandler<T>,\n\t\toptions: HookOptions = {}\n\t): HookUnregister {\n\t\treturn this.on(hook, handler, { ...options, replace: true });\n\t}\n\n\t/**\n\t * Register a new hook handler to run once.\n\t * Shortcut for `hooks.on(hook, handler, { once: true })`.\n\t * @param hook Name of the hook to listen for\n\t * @param handler The handler function to execute\n\t * @param options Any other event options (see `hooks.on()` for details)\n\t * @see on\n\t */\n\t// Overload: passed in handler options\n\tonce<T extends HookName>(hook: T, handler: HookHandler<T>, options: HookOptions): HookUnregister; // prettier-ignore\n\t// Overload: no handler options\n\tonce<T extends HookName>(hook: T, handler: HookHandler<T>): HookUnregister;\n\t// Implementation\n\tonce<T extends HookName>(\n\t\thook: T,\n\t\thandler: HookHandler<T>,\n\t\toptions: HookOptions = {}\n\t): HookUnregister {\n\t\treturn this.on(hook, handler, { ...options, once: true });\n\t}\n\n\t/**\n\t * Unregister a hook handler.\n\t * @param hook Name of the hook the handler is registered for\n\t * @param handler The handler function that was registered.\n\t *                If omitted, all handlers for the hook will be removed.\n\t */\n\t// Overload: unregister a specific handler\n\toff<T extends HookName>(hook: T, handler: HookHandler<T> | HookDefaultHandler<T>): void;\n\t// Overload: unregister all handlers\n\toff<T extends HookName>(hook: T): void;\n\t// Implementation\n\toff<T extends HookName>(hook: T, handler?: HookHandler<T> | HookDefaultHandler<T>): void {\n\t\tconst ledger = this.get(hook);\n\t\tif (ledger && handler) {\n\t\t\tconst deleted = ledger.delete(handler);\n\t\t\tif (!deleted) {\n\t\t\t\tconsole.warn(`Handler for hook '${hook}' not found.`);\n\t\t\t}\n\t\t} else if (ledger) {\n\t\t\tledger.clear();\n\t\t}\n\t}\n\n\t/**\n\t * Trigger a hook asynchronously, executing its default handler and all registered handlers.\n\t * Will execute all handlers in order and `await` any `Promise`s they return.\n\t * @param hook Name of the hook to trigger\n\t * @param visit The visit object this hook belongs to\n\t * @param args Arguments to pass to the handler\n\t * @param defaultHandler A default implementation of this hook to execute\n\t * @returns The resolved return value of the executed default handler\n\t */\n\t// Overload: default order of arguments\n\tasync call<T extends HookName>(hook: T, visit: Visit | undefined, args: HookArguments<T>, defaultHandler?: HookDefaultHandler<T>): Promise<Awaited<ReturnType<HookDefaultHandler<T>>>>; // prettier-ignore\n\t// Overload: legacy order of arguments, with visit missing\n\tasync call<T extends HookName>(hook: T, args: HookArguments<T>, defaultHandler?: HookDefaultHandler<T>): Promise<Awaited<ReturnType<HookDefaultHandler<T>>>>; // prettier-ignore\n\t// Implementation\n\tasync call<T extends HookName>(\n\t\thook: T,\n\t\targ1: Visit | HookArguments<T>,\n\t\targ2: HookArguments<T> | HookDefaultHandler<T>,\n\t\targ3?: HookDefaultHandler<T>\n\t): Promise<Awaited<ReturnType<HookDefaultHandler<T>>>> {\n\t\tconst [visit, args, defaultHandler] = this.parseCallArgs(hook, arg1, arg2, arg3);\n\n\t\tconst { before, handler, after } = this.getHandlers(hook, defaultHandler);\n\t\tawait this.run(before, visit, args);\n\t\tconst [result] = await this.run(handler, visit, args, true);\n\t\tawait this.run(after, visit, args);\n\t\tthis.dispatchDomEvent(hook, visit, args);\n\t\treturn result;\n\t}\n\n\t/**\n\t * Trigger a hook synchronously, executing its default handler and all registered handlers.\n\t * Will execute all handlers in order, but will **not** `await` any `Promise`s they return.\n\t * @param hook Name of the hook to trigger\n\t * @param visit The visit object this hook belongs to\n\t * @param args Arguments to pass to the handler\n\t * @param defaultHandler A default implementation of this hook to execute\n\t * @returns The (possibly unresolved) return value of the executed default handler\n\t */\n\t// Overload: default order of arguments\n\tcallSync<T extends HookName>(hook: T, visit: Visit | undefined, args: HookArguments<T>, defaultHandler?: HookDefaultHandler<T>): ReturnType<HookDefaultHandler<T>>; // prettier-ignore\n\t// Overload: legacy order of arguments, with visit missing\n\tcallSync<T extends HookName>(hook: T, args: HookArguments<T>, defaultHandler?: HookDefaultHandler<T>): ReturnType<HookDefaultHandler<T>>; // prettier-ignore\n\t// Implementation\n\tcallSync<T extends HookName>(\n\t\thook: T,\n\t\targ1: Visit | HookArguments<T>,\n\t\targ2: HookArguments<T> | HookDefaultHandler<T>,\n\t\targ3?: HookDefaultHandler<T>\n\t): ReturnType<HookDefaultHandler<T>> {\n\t\tconst [visit, args, defaultHandler] = this.parseCallArgs(hook, arg1, arg2, arg3);\n\t\tconst { before, handler, after } = this.getHandlers(hook, defaultHandler);\n\t\tthis.runSync(before, visit, args);\n\t\tconst [result] = this.runSync(handler, visit, args, true);\n\t\tthis.runSync(after, visit, args);\n\t\tthis.dispatchDomEvent(hook, visit, args);\n\t\treturn result;\n\t}\n\n\t/**\n\t * Parse the call arguments for call() and callSync() to allow legacy argument order.\n\t */\n\tprotected parseCallArgs<T extends HookName>(\n\t\thook: T,\n\t\targ1: Visit | HookArguments<T> | undefined,\n\t\targ2: HookArguments<T> | HookDefaultHandler<T>,\n\t\targ3?: HookDefaultHandler<T>\n\t): [Visit | undefined, HookArguments<T>, HookDefaultHandler<T> | undefined] {\n\t\tconst isLegacyOrder =\n\t\t\t!(arg1 instanceof Visit) && (typeof arg1 === 'object' || typeof arg2 === 'function');\n\t\tif (isLegacyOrder) {\n\t\t\t// Legacy positioning: arguments in second or handler passed in third place\n\t\t\treturn [undefined, arg1 as HookArguments<T>, arg2 as HookDefaultHandler<T>];\n\t\t} else {\n\t\t\t// Default positioning: visit passed in as first argument\n\t\t\treturn [arg1, arg2 as HookArguments<T>, arg3];\n\t\t}\n\t}\n\n\t/**\n\t * Execute the handlers for a hook, in order, as `Promise`s that will be `await`ed.\n\t * @param registrations The registrations (handler + options) to execute\n\t * @param args Arguments to pass to the handler\n\t */\n\n\t// Overload: running HookDefaultHandler: expect HookDefaultHandler return type\n\tprotected async run<T extends HookName>(registrations: HookRegistration<T, HookDefaultHandler<T>>[], visit: Visit | undefined, args: HookArguments<T>, rethrow: true): Promise<Awaited<ReturnType<HookDefaultHandler<T>>>[]>; // prettier-ignore\n\t// Overload:  running user handler: expect no specific type\n\tprotected async run<T extends HookName>(registrations: HookRegistration<T>[], visit: Visit | undefined, args: HookArguments<T>): Promise<unknown[]>; // prettier-ignore\n\t// Implementation\n\tprotected async run<T extends HookName, R extends HookRegistration<T>[]>(\n\t\tregistrations: R,\n\t\tvisit: Visit | undefined = this.swup.visit,\n\t\targs: HookArguments<T>,\n\t\trethrow: boolean = false\n\t): Promise<Awaited<ReturnType<HookDefaultHandler<T>>> | unknown[]> {\n\t\tconst results = [];\n\t\tfor (const { hook, handler, defaultHandler, once } of registrations) {\n\t\t\tif (visit?.done) continue;\n\t\t\tif (once) this.off(hook, handler);\n\t\t\ttry {\n\t\t\t\tconst result = await runAsPromise(handler, [visit, args, defaultHandler]);\n\t\t\t\tresults.push(result);\n\t\t\t} catch (error) {\n\t\t\t\tif (rethrow) {\n\t\t\t\t\tthrow error;\n\t\t\t\t} else {\n\t\t\t\t\tconsole.error(`Error in hook '${hook}':`, error);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn results;\n\t}\n\n\t/**\n\t * Execute the handlers for a hook, in order, without `await`ing any returned `Promise`s.\n\t * @param registrations The registrations (handler + options) to execute\n\t * @param args Arguments to pass to the handler\n\t */\n\n\t// Overload: running HookDefaultHandler: expect HookDefaultHandler return type\n\tprotected runSync<T extends HookName>(registrations: HookRegistration<T, HookDefaultHandler<T>>[], visit: Visit | undefined, args: HookArguments<T>, rethrow: true): ReturnType<HookDefaultHandler<T>>[]; // prettier-ignore\n\t// Overload: running user handler: expect no specific type\n\tprotected runSync<T extends HookName>(registrations: HookRegistration<T>[], visit: Visit | undefined, args: HookArguments<T>): unknown[]; // prettier-ignore\n\t// Implementation\n\tprotected runSync<T extends HookName, R extends HookRegistration<T>[]>(\n\t\tregistrations: R,\n\t\tvisit: Visit | undefined = this.swup.visit,\n\t\targs: HookArguments<T>,\n\t\trethrow: boolean = false\n\t): (ReturnType<HookDefaultHandler<T>> | unknown)[] {\n\t\tconst results = [];\n\t\tfor (const { hook, handler, defaultHandler, once } of registrations) {\n\t\t\tif (visit?.done) continue;\n\t\t\tif (once) this.off(hook, handler);\n\t\t\ttry {\n\t\t\t\tconst result = (handler as HookDefaultHandler<T>)(visit, args, defaultHandler);\n\t\t\t\tresults.push(result);\n\t\t\t\tif (isPromise(result)) {\n\t\t\t\t\tconsole.warn(\n\t\t\t\t\t\t`Swup will not await Promises in handler for synchronous hook '${hook}'.`\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tif (rethrow) {\n\t\t\t\t\tthrow error;\n\t\t\t\t} else {\n\t\t\t\t\tconsole.error(`Error in hook '${hook}':`, error);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn results;\n\t}\n\n\t/**\n\t * Get all registered handlers for a hook, sorted by priority and registration order.\n\t * @param hook Name of the hook\n\t * @param defaultHandler The optional default handler of this hook\n\t * @returns An object with the handlers sorted into `before` and `after` arrays,\n\t *          as well as a flag indicating if the original handler was replaced\n\t */\n\tprotected getHandlers<T extends HookName>(hook: T, defaultHandler?: HookDefaultHandler<T>) {\n\t\tconst ledger = this.get(hook);\n\t\tif (!ledger) {\n\t\t\treturn { found: false, before: [], handler: [], after: [], replaced: false };\n\t\t}\n\n\t\tconst registrations = Array.from(ledger.values());\n\n\t\t// Let TypeScript know that replaced handlers are default handlers by filtering to true\n\t\tconst def = (T: HookRegistration<T>): T is HookRegistration<T, HookDefaultHandler<T>> => true; // prettier-ignore\n\t\tconst sort = this.sortRegistrations;\n\n\t\t// Filter into before, after, and replace handlers\n\t\tconst before = registrations.filter(({ before, replace }) => before && !replace).sort(sort);\n\t\tconst replace = registrations.filter(({ replace }) => replace).filter(def).sort(sort); // prettier-ignore\n\t\tconst after = registrations.filter(({ before, replace }) => !before && !replace).sort(sort);\n\t\tconst replaced = replace.length > 0;\n\n\t\t// Define main handler registration\n\t\t// Created as HookRegistration[] array to allow passing it into hooks.run() directly\n\t\tlet handler: HookRegistration<T, HookDefaultHandler<T>>[] = [];\n\t\tif (defaultHandler) {\n\t\t\thandler = [{ id: 0, hook, handler: defaultHandler }];\n\t\t\tif (replaced) {\n\t\t\t\tconst index = replace.length - 1;\n\t\t\t\tconst { handler: replacingHandler, once } = replace[index];\n\t\t\t\tconst createDefaultHandler = (index: number): HookDefaultHandler<T> | undefined => {\n\t\t\t\t\tconst next = replace[index - 1];\n\t\t\t\t\tif (next) {\n\t\t\t\t\t\treturn (visit, args) =>\n\t\t\t\t\t\t\tnext.handler(visit, args, createDefaultHandler(index - 1));\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn defaultHandler;\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t\tconst nestedDefaultHandler = createDefaultHandler(index);\n\t\t\t\thandler = [{ id: 0, hook, once, handler: replacingHandler, defaultHandler: nestedDefaultHandler }]; // prettier-ignore\n\t\t\t}\n\t\t}\n\n\t\treturn { found: true, before, handler, after, replaced };\n\t}\n\n\t/**\n\t * Sort two hook registrations by priority and registration order.\n\t * @param a The registration object to compare\n\t * @param b The other registration object to compare with\n\t * @returns The sort direction\n\t */\n\tprotected sortRegistrations<T extends HookName>(\n\t\ta: HookRegistration<T>,\n\t\tb: HookRegistration<T>\n\t): number {\n\t\tconst priority = (a.priority ?? 0) - (b.priority ?? 0);\n\t\tconst id = a.id - b.id;\n\t\treturn priority || id || 0;\n\t}\n\n\t/**\n\t * Dispatch a custom event on the `document` for a hook. Prefixed with `swup:`\n\t * @param hook Name of the hook.\n\t */\n\tprotected dispatchDomEvent<T extends HookName>(\n\t\thook: T,\n\t\tvisit: Visit | undefined,\n\t\targs?: HookArguments<T>\n\t): void {\n\t\tif (visit?.done) return;\n\n\t\tconst detail: HookEventDetail = { hook, args, visit: visit || this.swup.visit };\n\t\tdocument.dispatchEvent(\n\t\t\tnew CustomEvent<HookEventDetail>(`swup:any`, { detail, bubbles: true })\n\t\t);\n\t\tdocument.dispatchEvent(\n\t\t\tnew CustomEvent<HookEventDetail>(`swup:${hook}`, { detail, bubbles: true })\n\t\t);\n\t}\n\n\t/**\n\t * Parse a hook name into the name and any modifiers.\n\t * @param hook Name of the hook.\n\t */\n\tparseName(hook: HookName | HookNameWithModifier): [HookName, Partial<HookOptions>] {\n\t\tconst [name, ...modifiers] = hook.split('.');\n\t\tconst options = modifiers.reduce((acc, mod) => ({ ...acc, [mod]: true }), {});\n\t\treturn [name as HookName, options];\n\t}\n}\n","import { query } from '../utils.js';\n\n/**\n * Find the anchor element for a given hash.\n *\n * @param hash Hash with or without leading '#'\n * @returns The element, if found, or null.\n *\n * @see https://html.spec.whatwg.org/#find-a-potential-indicated-element\n */\nexport const getAnchorElement = (hash?: string): Element | null => {\n\tif (hash && hash.charAt(0) === '#') {\n\t\thash = hash.substring(1);\n\t}\n\n\tif (!hash) {\n\t\treturn null;\n\t}\n\n\tconst decoded = decodeURIComponent(hash);\n\tlet element =\n\t\tdocument.getElementById(hash) ||\n\t\tdocument.getElementById(decoded) ||\n\t\tquery(`a[name='${CSS.escape(hash)}']`) ||\n\t\tquery(`a[name='${CSS.escape(decoded)}']`);\n\n\tif (!element && hash === 'top') {\n\t\telement = document.body;\n\t}\n\n\treturn element;\n};\n","import { queryAll } from '../utils.js';\nimport type Swup from '../Swup.js';\nimport type { Options } from '../Swup.js';\n\nconst TRANSITION = 'transition';\nconst ANIMATION = 'animation';\n\ntype AnimationType = typeof TRANSITION | typeof ANIMATION;\ntype AnimationEndEvent = `${AnimationType}end`;\ntype AnimationProperty = 'Delay' | 'Duration';\ntype AnimationStyleKey = `${AnimationType}${AnimationProperty}` | 'transitionProperty';\n\nexport type AnimationDirection = 'in' | 'out';\n\n/**\n * Return a Promise that resolves when all CSS animations and transitions\n * are done on the page. Filters by selector or takes elements directly.\n */\nexport async function awaitAnimations(\n\tthis: Swup,\n\t{\n\t\tselector,\n\t\telements\n\t}: {\n\t\tselector: Options['animationSelector'];\n\t\telements?: NodeListOf<HTMLElement> | HTMLElement[];\n\t}\n): Promise<void> {\n\t// Allow usage of swup without animations: { animationSelector: false }\n\tif (selector === false && !elements) {\n\t\treturn;\n\t}\n\n\t// Allow passing in elements\n\tlet animatedElements: HTMLElement[] = [];\n\tif (elements) {\n\t\tanimatedElements = Array.from(elements);\n\t} else if (selector) {\n\t\tanimatedElements = queryAll(selector, document.body);\n\t\t// Warn if no elements match the selector, but keep things going\n\t\tif (!animatedElements.length) {\n\t\t\tconsole.warn(`[swup] No elements found matching animationSelector \\`${selector}\\``);\n\t\t\treturn;\n\t\t}\n\t}\n\n\tconst awaitedAnimations = animatedElements.map((el) => awaitAnimationsOnElement(el));\n\tconst hasAnimations = awaitedAnimations.filter(Boolean).length > 0;\n\tif (!hasAnimations) {\n\t\tif (selector) {\n\t\t\tconsole.warn(\n\t\t\t\t`[swup] No CSS animation duration defined on elements matching \\`${selector}\\``\n\t\t\t);\n\t\t}\n\t\treturn;\n\t}\n\n\tawait Promise.all(awaitedAnimations);\n}\n\nfunction awaitAnimationsOnElement(element: HTMLElement): Promise<void> | false {\n\tconst { type, timeout, propCount } = getTransitionInfo(element);\n\n\t// Resolve immediately if no transition defined\n\tif (!type || !timeout) {\n\t\treturn false;\n\t}\n\n\treturn new Promise((resolve) => {\n\t\tconst endEvent: AnimationEndEvent = `${type}end`;\n\t\tconst startTime = performance.now();\n\t\tlet propsTransitioned = 0;\n\n\t\tconst end = () => {\n\t\t\telement.removeEventListener(endEvent, onEnd);\n\t\t\tresolve();\n\t\t};\n\n\t\tconst onEnd = (event: TransitionEvent | AnimationEvent) => {\n\t\t\t// Skip transitions on child elements\n\t\t\tif (event.target !== element) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Skip transitions that happened before we started listening\n\t\t\tconst elapsedTime = (performance.now() - startTime) / 1000;\n\t\t\tif (elapsedTime < event.elapsedTime) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// End if all properties have transitioned\n\t\t\tif (++propsTransitioned >= propCount) {\n\t\t\t\tend();\n\t\t\t}\n\t\t};\n\n\t\tsetTimeout(() => {\n\t\t\tif (propsTransitioned < propCount) {\n\t\t\t\tend();\n\t\t\t}\n\t\t}, timeout + 1);\n\n\t\telement.addEventListener(endEvent, onEnd);\n\t});\n}\n\nfunction getTransitionInfo(element: Element) {\n\tconst styles = window.getComputedStyle(element);\n\n\tconst transitionDelays = getStyleProperties(styles, `${TRANSITION}Delay`);\n\tconst transitionDurations = getStyleProperties(styles, `${TRANSITION}Duration`);\n\tconst transitionTimeout = calculateTimeout(transitionDelays, transitionDurations);\n\n\tconst animationDelays = getStyleProperties(styles, `${ANIMATION}Delay`);\n\tconst animationDurations = getStyleProperties(styles, `${ANIMATION}Duration`);\n\tconst animationTimeout = calculateTimeout(animationDelays, animationDurations);\n\n\tconst timeout = Math.max(transitionTimeout, animationTimeout);\n\tconst type: AnimationType | null =\n\t\ttimeout > 0 ? (transitionTimeout > animationTimeout ? TRANSITION : ANIMATION) : null;\n\tconst propCount = type\n\t\t? type === TRANSITION\n\t\t\t? transitionDurations.length\n\t\t\t: animationDurations.length\n\t\t: 0;\n\n\treturn {\n\t\ttype,\n\t\ttimeout,\n\t\tpropCount\n\t};\n}\n\nexport function getStyleProperties(styles: CSSStyleDeclaration, key: AnimationStyleKey): string[] {\n\treturn (styles[key] || '').split(', ');\n}\n\nexport function calculateTimeout(delays: string[], durations: string[]): number {\n\twhile (delays.length < durations.length) {\n\t\tdelays = delays.concat(delays);\n\t}\n\n\treturn Math.max(...durations.map((duration, i) => toMs(duration) + toMs(delays[i])));\n}\n\nexport function toMs(time: string): number {\n\treturn parseFloat(time) * 1000;\n}\n","import type Swup from '../Swup.js';\nimport { FetchError, type FetchOptions, type PageData } from './fetchPage.js';\nimport { type VisitInitOptions, type Visit, VisitState } from './Visit.js';\nimport { createHistoryRecord, updateHistoryRecord, Location, classify } from '../helpers.js';\nimport { getContextualAttr } from '../utils.js';\n\nexport type HistoryAction = 'push' | 'replace';\nexport type HistoryDirection = 'forwards' | 'backwards';\nexport type NavigationToSelfAction = 'scroll' | 'navigate';\nexport type CacheControl = Partial<{ read: boolean; write: boolean }>;\n\n/** Define how to navigate to a page. */\ntype NavigationOptions = {\n\t/** Whether this visit is animated. Default: `true` */\n\tanimate?: boolean;\n\t/** Name of a custom animation to run. */\n\tanimation?: string;\n\t/** History action to perform: `push` for creating a new history entry, `replace` for replacing the current entry. Default: `push` */\n\thistory?: HistoryAction;\n\t/** Whether this visit should read from or write to the cache. */\n\tcache?: CacheControl;\n\t/** Custom metadata associated with this visit. */\n\tmeta?: Record<string, unknown>;\n};\n\n/**\n * Navigate to a new URL.\n * @param url The URL to navigate to.\n * @param options Options for how to perform this visit.\n * @returns Promise<void>\n */\nexport function navigate(\n\tthis: Swup,\n\turl: string,\n\toptions: NavigationOptions & FetchOptions = {},\n\tinit: Omit<VisitInitOptions, 'to'> = {}\n) {\n\tif (typeof url !== 'string') {\n\t\tthrow new Error(`swup.navigate() requires a URL parameter`);\n\t}\n\n\t// Check if the visit should be ignored\n\tif (this.shouldIgnoreVisit(url, { el: init.el, event: init.event })) {\n\t\twindow.location.assign(url);\n\t\treturn;\n\t}\n\n\tconst { url: to, hash } = Location.fromUrl(url);\n\n\tconst visit = this.createVisit({ ...init, to, hash });\n\tthis.performNavigation(visit, options);\n}\n\n/**\n * Start a visit to a new URL.\n *\n * Internal method that assumes the visit context has already been created.\n *\n * As a user, you should call `swup.navigate(url)` instead.\n *\n * @param url The URL to navigate to.\n * @param options Options for how to perform this visit.\n * @returns Promise<void>\n */\nexport async function performNavigation(\n\tthis: Swup,\n\tvisit: Visit,\n\toptions: NavigationOptions & FetchOptions = {}\n): Promise<void> {\n\tif (this.navigating) {\n\t\tif (this.visit.state >= VisitState.ENTERING) {\n\t\t\t// Currently navigating and content already loaded? Finish and queue\n\t\t\tvisit.state = VisitState.QUEUED;\n\t\t\tthis.onVisitEnd = () => this.performNavigation(visit, options);\n\t\t\treturn;\n\t\t} else {\n\t\t\t// Currently navigating and content not loaded? Abort running visit\n\t\t\tawait this.hooks.call('visit:abort', this.visit, undefined);\n\t\t\tdelete this.visit.to.document;\n\t\t\tthis.visit.state = VisitState.ABORTED;\n\t\t}\n\t}\n\n\tthis.navigating = true;\n\tthis.visit = visit;\n\n\tconst { el } = visit.trigger;\n\toptions.referrer = options.referrer || this.location.url;\n\n\tif (options.animate === false) {\n\t\tvisit.animation.animate = false;\n\t}\n\n\t// Clean up old animation classes\n\tif (!visit.animation.animate) {\n\t\tthis.classes.clear();\n\t}\n\n\t// Get history action from option or attribute on trigger element\n\tconst history = options.history || getContextualAttr(el, 'data-swup-history');\n\tif (typeof history === 'string' && ['push', 'replace'].includes(history)) {\n\t\tvisit.history.action = history as HistoryAction;\n\t}\n\n\t// Get custom animation name from option or attribute on trigger element\n\tconst animation = options.animation || getContextualAttr(el, 'data-swup-animation');\n\tif (typeof animation === 'string') {\n\t\tvisit.animation.name = animation;\n\t}\n\n\t// Get custom metadata from option\n\tvisit.meta = options.meta || {};\n\n\t// Sanitize cache option\n\tif (typeof options.cache === 'object') {\n\t\tvisit.cache.read = options.cache.read ?? visit.cache.read;\n\t\tvisit.cache.write = options.cache.write ?? visit.cache.write;\n\t} else if (options.cache !== undefined) {\n\t\tvisit.cache = { read: !!options.cache, write: !!options.cache };\n\t}\n\t// Delete this so that window.fetch doesn't misinterpret it\n\tdelete options.cache;\n\n\ttry {\n\t\tawait this.hooks.call('visit:start', visit, undefined);\n\n\t\tvisit.state = VisitState.STARTED;\n\n\t\t// Begin loading page\n\t\tconst page = this.hooks.call('page:load', visit, { options }, async (visit, args) => {\n\t\t\t// Read from cache\n\t\t\tlet cachedPage: PageData | undefined;\n\t\t\tif (visit.cache.read) {\n\t\t\t\tcachedPage = this.cache.get(visit.to.url);\n\t\t\t}\n\n\t\t\targs.page = cachedPage || (await this.fetchPage(visit.to.url, args.options));\n\t\t\targs.cache = !!cachedPage;\n\n\t\t\treturn args.page;\n\t\t});\n\n\t\t/**\n\t\t * When the page is loaded: mark the visit as loaded and save\n\t\t * the raw html and a parsed document of the received page in the visit object\n\t\t */\n\t\tpage.then(({ html }) => {\n\t\t\tvisit.advance(VisitState.LOADED);\n\t\t\tvisit.to.html = html;\n\t\t\tvisit.to.document = new DOMParser().parseFromString(html, 'text/html');\n\t\t});\n\n\t\t// Create/update history record if this is not a popstate call or leads to the same URL\n\t\tconst newUrl = visit.to.url + visit.to.hash;\n\t\tif (!visit.history.popstate) {\n\t\t\tif (visit.history.action === 'replace' || visit.to.url === this.location.url) {\n\t\t\t\tupdateHistoryRecord(newUrl);\n\t\t\t} else {\n\t\t\t\tthis.currentHistoryIndex++;\n\t\t\t\tcreateHistoryRecord(newUrl, { index: this.currentHistoryIndex });\n\t\t\t}\n\t\t}\n\t\tthis.location = Location.fromUrl(newUrl);\n\n\t\t// Mark visit type with classes\n\t\tif (visit.history.popstate) {\n\t\t\tthis.classes.add('is-popstate');\n\t\t}\n\t\tif (visit.animation.name) {\n\t\t\tthis.classes.add(`to-${classify(visit.animation.name)}`);\n\t\t}\n\n\t\t// Wait for page before starting to animate out?\n\t\tif (visit.animation.wait) {\n\t\t\tawait page;\n\t\t}\n\n\t\t// Check if failed/aborted in the meantime\n\t\tif (visit.done) return;\n\n\t\t// Perform the actual transition: animate and replace content\n\t\tawait this.hooks.call('visit:transition', visit, undefined, async () => {\n\t\t\t// No animation? Just await page and render\n\t\t\tif (!visit.animation.animate) {\n\t\t\t\tawait this.hooks.call('animation:skip', undefined);\n\t\t\t\tawait this.renderPage(visit, await page);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Animate page out, render page, animate page in\n\t\t\tvisit.advance(VisitState.LEAVING);\n\t\t\tawait this.animatePageOut(visit);\n\t\t\tif (visit.animation.native && document.startViewTransition) {\n\t\t\t\tawait document.startViewTransition(\n\t\t\t\t\tasync () => await this.renderPage(visit, await page)\n\t\t\t\t).finished;\n\t\t\t} else {\n\t\t\t\tawait this.renderPage(visit, await page);\n\t\t\t}\n\t\t\tawait this.animatePageIn(visit);\n\t\t});\n\n\t\t// Check if failed/aborted in the meantime\n\t\tif (visit.done) return;\n\n\t\t// Finalize visit\n\t\tawait this.hooks.call('visit:end', visit, undefined, () => this.classes.clear());\n\t\tvisit.state = VisitState.COMPLETED;\n\t\tthis.navigating = false;\n\n\t\t/** Run eventually queued function */\n\t\tif (this.onVisitEnd) {\n\t\t\tthis.onVisitEnd();\n\t\t\tthis.onVisitEnd = undefined;\n\t\t}\n\t} catch (error) {\n\t\t// Return early if error is undefined or signals an aborted request\n\t\tif (!error || (error as FetchError)?.aborted) {\n\t\t\tvisit.state = VisitState.ABORTED;\n\t\t\treturn;\n\t\t}\n\n\t\tvisit.state = VisitState.FAILED;\n\n\t\t// Log to console\n\t\tconsole.error(error);\n\n\t\t// Remove current history entry, then load requested url in browser\n\t\tthis.options.skipPopStateHandling = () => {\n\t\t\twindow.location.assign(visit.to.url + visit.to.hash);\n\t\t\treturn true;\n\t\t};\n\n\t\t// Go back to the actual page we're still at\n\t\twindow.history.back();\n\t} finally {\n\t\tdelete visit.to.document;\n\t}\n}\n","import type Swup from '../Swup.js';\nimport type { Visit } from './Visit.js';\n\n/**\n * Perform the out/leave animation of the current page.\n * @returns Promise<void>\n */\nexport const animatePageOut = async function (this: Swup, visit: Visit) {\n\tawait this.hooks.call('animation:out:start', visit, undefined, () => {\n\t\tthis.classes.add('is-changing', 'is-animating', 'is-leaving');\n\t});\n\n\tawait this.hooks.call('animation:out:await', visit, { skip: false }, (visit, { skip }) => {\n\t\tif (skip) return;\n\t\treturn this.awaitAnimations({ selector: visit.animation.selector });\n\t});\n\n\tawait this.hooks.call('animation:out:end', visit, undefined);\n};\n","import type Swup from '../Swup.js';\nimport { query, queryAll } from '../utils.js';\nimport type { Visit } from './Visit.js';\n\n/**\n * Perform the replacement of content after loading a page.\n *\n * @returns Whether all containers were replaced.\n */\nexport const replaceContent = function (this: Swup, visit: Visit): boolean {\n\tconst incomingDocument = visit.to.document;\n\tif (!incomingDocument) return false;\n\n\t// Update browser title\n\tconst title = incomingDocument.querySelector('title')?.innerText || '';\n\tdocument.title = title;\n\n\t// Save persisted elements\n\tconst persistedElements = queryAll('[data-swup-persist]:not([data-swup-persist=\"\"])');\n\n\t// Update content containers\n\tconst replaced = visit.containers\n\t\t.map((selector) => {\n\t\t\tconst currentEl = document.querySelector(selector);\n\t\t\tconst incomingEl = incomingDocument.querySelector(selector);\n\t\t\tif (currentEl && incomingEl) {\n\t\t\t\tcurrentEl.replaceWith(incomingEl.cloneNode(true));\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tif (!currentEl) {\n\t\t\t\tconsole.warn(`[swup] Container missing in current document: ${selector}`);\n\t\t\t}\n\t\t\tif (!incomingEl) {\n\t\t\t\tconsole.warn(`[swup] Container missing in incoming document: ${selector}`);\n\t\t\t}\n\t\t\treturn false;\n\t\t})\n\t\t.filter(Boolean);\n\n\t// Restore persisted elements\n\tpersistedElements.forEach((existing) => {\n\t\tconst key = existing.getAttribute('data-swup-persist');\n\t\tconst replacement = query(`[data-swup-persist=\"${key}\"]`);\n\t\tif (replacement && replacement !== existing) {\n\t\t\treplacement.replaceWith(existing);\n\t\t}\n\t});\n\n\t// Return true if all containers were replaced\n\treturn replaced.length === visit.containers.length;\n};\n","import type Swup from '../Swup.js';\nimport type { Visit } from './Visit.js';\n\n/**\n * Update the scroll position after page render.\n * @returns Promise<boolean>\n */\nexport const scrollToContent = function (this: Swup, visit: Visit): boolean {\n\tconst options: ScrollIntoViewOptions = { behavior: 'auto' };\n\tconst { target, reset } = visit.scroll;\n\tconst scrollTarget = target ?? visit.to.hash;\n\n\tlet scrolled = false;\n\n\tif (scrollTarget) {\n\t\tscrolled = this.hooks.callSync(\n\t\t\t'scroll:anchor',\n\t\t\tvisit,\n\t\t\t{ hash: scrollTarget, options },\n\t\t\t(visit, { hash, options }) => {\n\t\t\t\tconst anchor = this.getAnchorElement(hash);\n\t\t\t\tif (anchor) {\n\t\t\t\t\tanchor.scrollIntoView(options);\n\t\t\t\t}\n\t\t\t\treturn !!anchor;\n\t\t\t}\n\t\t);\n\t}\n\n\tif (reset && !scrolled) {\n\t\tscrolled = this.hooks.callSync('scroll:top', visit, { options }, (visit, { options }) => {\n\t\t\twindow.scrollTo({ top: 0, left: 0, ...options });\n\t\t\treturn true;\n\t\t});\n\t}\n\n\treturn scrolled;\n};\n","import type Swup from '../Swup.js';\nimport { nextTick } from '../utils.js';\nimport type { Visit } from './Visit.js';\n\n/**\n * Perform the in/enter animation of the next page.\n * @returns Promise<void>\n */\nexport const animatePageIn = async function (this: Swup, visit: Visit) {\n\t// Check if failed/aborted in the meantime\n\tif (visit.done) return;\n\n\tconst animation = this.hooks.call(\n\t\t'animation:in:await',\n\t\tvisit,\n\t\t{ skip: false },\n\t\t(visit, { skip }) => {\n\t\t\tif (skip) return;\n\t\t\treturn this.awaitAnimations({ selector: visit.animation.selector });\n\t\t}\n\t);\n\n\tawait nextTick();\n\n\tawait this.hooks.call('animation:in:start', visit, undefined, () => {\n\t\tthis.classes.remove('is-animating');\n\t});\n\n\tawait animation;\n\n\tawait this.hooks.call('animation:in:end', visit, undefined);\n};\n","import { updateHistoryRecord, getCurrentUrl, classify, Location } from '../helpers.js';\nimport type Swup from '../Swup.js';\nimport type { PageData } from './fetchPage.js';\nimport { VisitState, type Visit } from './Visit.js';\n\n/**\n * Render the next page: replace the content and update scroll position.\n */\nexport const renderPage = async function (this: Swup, visit: Visit, page: PageData): Promise<void> {\n\t// Check if failed/aborted in the meantime\n\tif (visit.done) return;\n\n\tvisit.advance(VisitState.ENTERING);\n\n\tconst { url } = page;\n\n\t// update state if the url was redirected\n\tif (!this.isSameResolvedUrl(getCurrentUrl(), url)) {\n\t\tupdateHistoryRecord(url);\n\t\tthis.location = Location.fromUrl(url);\n\t\tvisit.to.url = this.location.url;\n\t\tvisit.to.hash = this.location.hash;\n\t}\n\n\t// replace content: allow handlers and plugins to overwrite paga data and containers\n\tawait this.hooks.call('content:replace', visit, { page }, (visit, { page }) => {\n\t\tthis.classes.remove('is-leaving');\n\t\t// only add for animated page loads\n\t\tif (visit.animation.animate) {\n\t\t\tthis.classes.add('is-rendering');\n\t\t}\n\t\tconst success = this.replaceContent(visit);\n\t\tif (!success) {\n\t\t\tthrow new Error('[swup] Container mismatch, aborting');\n\t\t}\n\t\tif (visit.animation.animate) {\n\t\t\t// Make sure to add these classes to new containers as well\n\t\t\tthis.classes.add('is-changing', 'is-animating', 'is-rendering');\n\t\t\tif (visit.animation.name) {\n\t\t\t\tthis.classes.add(`to-${classify(visit.animation.name)}`);\n\t\t\t}\n\t\t}\n\t});\n\n\t// scroll into view: either anchor or top of page\n\tawait this.hooks.call('content:scroll', visit, undefined, () => {\n\t\treturn this.scrollToContent(visit);\n\t});\n\n\tawait this.hooks.call('page:view', visit, { url: this.location.url, title: document.title });\n};\n","import type Swup from '../Swup.js';\n\nexport type Plugin = {\n\t/** Identify as a swup plugin */\n\tisSwupPlugin: true;\n\t/** Name of this plugin */\n\tname: string;\n\t/** Version of this plugin. Currently not in use, defined here for backward compatibility. */\n\tversion?: string;\n\t/** The swup instance that mounted this plugin */\n\tswup?: Swup;\n\t/** Version requirements of this plugin. Example: `{ swup: '>=4' }` */\n\trequires?: Record<string, string | string[]>;\n\t/** Run on mount */\n\tmount: () => void;\n\t/** Run on unmount */\n\tunmount: () => void;\n\t_beforeMount?: () => void;\n\t_afterUnmount?: () => void;\n\t_checkRequirements?: () => boolean;\n};\n\nconst isSwupPlugin = (maybeInvalidPlugin: unknown): maybeInvalidPlugin is Plugin => {\n\t// @ts-ignore: this might be anything, object or no\n\treturn Boolean(maybeInvalidPlugin?.isSwupPlugin);\n};\n\n/** Install a plugin. */\nexport const use = function (this: Swup, plugin: unknown) {\n\tif (!isSwupPlugin(plugin)) {\n\t\tconsole.error('Not a swup plugin instance', plugin);\n\t\treturn;\n\t}\n\n\tplugin.swup = this;\n\tif (plugin._checkRequirements) {\n\t\tif (!plugin._checkRequirements()) {\n\t\t\treturn;\n\t\t}\n\t}\n\tif (plugin._beforeMount) {\n\t\tplugin._beforeMount();\n\t}\n\tplugin.mount();\n\n\tthis.plugins.push(plugin);\n\n\treturn this.plugins;\n};\n\n/** Uninstall a plugin. */\nexport function unuse(this: Swup, pluginOrName: Plugin | string) {\n\tconst plugin = this.findPlugin(pluginOrName);\n\tif (!plugin) {\n\t\tconsole.error('No such plugin', plugin);\n\t\treturn;\n\t}\n\n\tplugin.unmount();\n\tif (plugin._afterUnmount) {\n\t\tplugin._afterUnmount();\n\t}\n\n\tthis.plugins = this.plugins.filter((p) => p !== plugin);\n\n\treturn this.plugins;\n}\n\n/** Find a plugin by name or reference. */\nexport function findPlugin(this: Swup, pluginOrName: Plugin | string) {\n\treturn this.plugins.find(\n\t\t(plugin) =>\n\t\t\tplugin === pluginOrName ||\n\t\t\tplugin.name === pluginOrName ||\n\t\t\tplugin.name === `Swup${String(pluginOrName)}`\n\t);\n}\n","import type Swup from '../Swup.js';\n\n/**\n * Utility function to validate and run the global option 'resolveUrl'\n * @param {string} url\n * @returns {string} the resolved url\n */\nexport function resolveUrl(this: Swup, url: string): string {\n\tif (typeof this.options.resolveUrl !== 'function') {\n\t\tconsole.warn(`[swup] options.resolveUrl expects a callback function.`);\n\t\treturn url;\n\t}\n\tconst result = this.options.resolveUrl(url);\n\tif (!result || typeof result !== 'string') {\n\t\tconsole.warn(`[swup] options.resolveUrl needs to return a url`);\n\t\treturn url;\n\t}\n\tif (result.startsWith('//') || result.startsWith('http')) {\n\t\tconsole.warn(`[swup] options.resolveUrl needs to return a relative url`);\n\t\treturn url;\n\t}\n\treturn result;\n}\n\n/**\n * Compares the resolved version of two paths and returns true if they are the same\n * @param {string} url1\n * @param {string} url2\n * @returns {boolean}\n */\nexport function isSameResolvedUrl(this: Swup, url1: string, url2: string): boolean {\n\treturn this.resolveUrl(url1) === this.resolveUrl(url2);\n}\n","import { type DelegateEvent } from 'delegate-it';\n\nimport version from './config/version.js';\n\nimport { delegateEvent, getCurrentUrl, Location, updateHistoryRecord } from './helpers.js';\nimport { type DelegateEventUnsubscribe } from './helpers/delegateEvent.js';\n\nimport { Cache } from './modules/Cache.js';\nimport { Classes } from './modules/Classes.js';\nimport { type Visit, createVisit } from './modules/Visit.js';\nimport { Hooks, type HookName, type HookInitOptions } from './modules/Hooks.js';\nimport { getAnchorElement } from './modules/getAnchorElement.js';\nimport { awaitAnimations } from './modules/awaitAnimations.js';\nimport { navigate, performNavigation, type NavigationToSelfAction } from './modules/navigate.js';\nimport { fetchPage } from './modules/fetchPage.js';\nimport { animatePageOut } from './modules/animatePageOut.js';\nimport { replaceContent } from './modules/replaceContent.js';\nimport { scrollToContent } from './modules/scrollToContent.js';\nimport { animatePageIn } from './modules/animatePageIn.js';\nimport { renderPage } from './modules/renderPage.js';\nimport { use, unuse, findPlugin, type Plugin } from './modules/plugins.js';\nimport { isSameResolvedUrl, resolveUrl } from './modules/resolveUrl.js';\nimport { nextTick } from './utils.js';\nimport { type HistoryState } from './helpers/history.js';\n\n/** Options for customizing swup's behavior. */\nexport type Options = {\n\t/** Whether history visits are animated. Default: `false` */\n\tanimateHistoryBrowsing: boolean;\n\t/** Selector for detecting animation timing. Default: `[class*=\"transition-\"]` */\n\tanimationSelector: string | false;\n\t/** Elements on which to add animation classes. Default: `html` element */\n\tanimationScope: 'html' | 'containers';\n\t/** Enable in-memory page cache. Default: `true` */\n\tcache: boolean;\n\t/** Content containers to be replaced on page visits. Default: `['#swup']` */\n\tcontainers: string[];\n\t/** Callback for ignoring visits. Receives the element and event that triggered the visit. */\n\tignoreVisit: (url: string, { el, event }: { el?: Element; event?: Event }) => boolean;\n\t/** Selector for links that trigger visits. Default: `'a[href]'` */\n\tlinkSelector: string;\n\t/** How swup handles links to the same page. Default: `scroll` */\n\tlinkToSelf: NavigationToSelfAction;\n\t/** Enable native animations using the View Transitions API. */\n\tnative: boolean;\n\t/** Hook handlers to register. */\n\thooks: Partial<HookInitOptions>;\n\t/** Plugins to register on startup. */\n\tplugins: Plugin[];\n\t/** Custom headers sent along with fetch requests. */\n\trequestHeaders: Record<string, string>;\n\t/** Rewrite URLs before loading them. */\n\tresolveUrl: (url: string) => string;\n\t/** Callback for telling swup to ignore certain popstate events.  */\n\tskipPopStateHandling: (event: PopStateEvent) => boolean;\n\t/** Request timeout in milliseconds. */\n\ttimeout: number;\n};\n\nconst defaults: Options = {\n\tanimateHistoryBrowsing: false,\n\tanimationSelector: '[class*=\"transition-\"]',\n\tanimationScope: 'html',\n\tcache: true,\n\tcontainers: ['#swup'],\n\thooks: {},\n\tignoreVisit: (url, { el } = {}) => !!el?.closest('[data-no-swup]'),\n\tlinkSelector: 'a[href]',\n\tlinkToSelf: 'scroll',\n\tnative: false,\n\tplugins: [],\n\tresolveUrl: (url) => url,\n\trequestHeaders: {\n\t\t'X-Requested-With': 'swup',\n\t\t'Accept': 'text/html, application/xhtml+xml'\n\t},\n\tskipPopStateHandling: (event) => (event.state as HistoryState)?.source !== 'swup',\n\ttimeout: 0\n};\n\n/** Swup page transition library. */\nexport default class Swup {\n\t/** Library version */\n\treadonly version: string = version;\n\t/** Options passed into the instance */\n\toptions: Options;\n\t/** Default options before merging user options */\n\treadonly defaults: Options = defaults;\n\t/** Registered plugin instances */\n\tplugins: Plugin[] = [];\n\t/** Data about the current visit */\n\tvisit: Visit;\n\t/** Cache instance */\n\treadonly cache: Cache;\n\t/** Hook registry */\n\treadonly hooks: Hooks;\n\t/** Animation class manager */\n\treadonly classes: Classes;\n\t/** Location of the currently visible page */\n\tlocation: Location = Location.fromUrl(window.location.href);\n\t/** URL of the currently visible page @deprecated Use swup.location.url instead */\n\tget currentPageUrl(): string {\n\t\treturn this.location.url;\n\t}\n\t/** Index of the current history entry */\n\tprotected currentHistoryIndex: number;\n\t/** Delegated event subscription handle */\n\tprotected clickDelegate?: DelegateEventUnsubscribe;\n\t/** Navigation status */\n\tprotected navigating: boolean = false;\n\t/** Run anytime a visit ends */\n\tprotected onVisitEnd?: () => Promise<unknown>;\n\n\t/** Install a plugin */\n\tuse = use;\n\t/** Uninstall a plugin */\n\tunuse = unuse;\n\t/** Find a plugin by name or instance */\n\tfindPlugin = findPlugin;\n\n\t/** Log a message. Has no effect unless debug plugin is installed */\n\tlog: (message: string, context?: unknown) => void = () => {};\n\n\t/** Navigate to a new URL */\n\tnavigate = navigate;\n\t/** Actually perform a navigation */\n\tprotected performNavigation = performNavigation;\n\t/** Create a new context for this visit */\n\tprotected createVisit = createVisit;\n\t/** Register a delegated event listener */\n\tdelegateEvent = delegateEvent;\n\t/** Fetch a page from the server */\n\tfetchPage = fetchPage;\n\t/** Resolve when animations on the page finish */\n\tawaitAnimations = awaitAnimations;\n\tprotected renderPage = renderPage;\n\t/** Replace the content after page load */\n\treplaceContent = replaceContent;\n\tprotected animatePageIn = animatePageIn;\n\tprotected animatePageOut = animatePageOut;\n\tprotected scrollToContent = scrollToContent;\n\t/** Find the anchor element for a given hash */\n\tgetAnchorElement = getAnchorElement;\n\n\t/** Get the current page URL */\n\tgetCurrentUrl = getCurrentUrl;\n\t/** Resolve a URL to its final location */\n\tresolveUrl = resolveUrl;\n\t/** Check if two URLs resolve to the same location */\n\tprotected isSameResolvedUrl = isSameResolvedUrl;\n\n\tconstructor(options: Partial<Options> = {}) {\n\t\t// Merge defaults and options\n\t\tthis.options = { ...this.defaults, ...options };\n\n\t\tthis.handleLinkClick = this.handleLinkClick.bind(this);\n\t\tthis.handlePopState = this.handlePopState.bind(this);\n\n\t\tthis.cache = new Cache(this);\n\t\tthis.classes = new Classes(this);\n\t\tthis.hooks = new Hooks(this);\n\t\tthis.visit = this.createVisit({ to: '' });\n\n\t\tthis.currentHistoryIndex = (window.history.state as HistoryState)?.index ?? 1;\n\n\t\tthis.enable();\n\t}\n\n\t/** Enable this instance, adding listeners and classnames. */\n\tasync enable() {\n\t\t// Add event listener\n\t\tconst { linkSelector } = this.options;\n\t\tthis.clickDelegate = this.delegateEvent(linkSelector, 'click', this.handleLinkClick);\n\n\t\twindow.addEventListener('popstate', this.handlePopState);\n\n\t\t// Set scroll restoration to manual if animating history visits\n\t\tif (this.options.animateHistoryBrowsing) {\n\t\t\twindow.history.scrollRestoration = 'manual';\n\t\t}\n\n\t\t// Initial save to cache\n\t\tif (this.options.cache) {\n\t\t\t// Disabled to avoid caching modified dom state: logic moved to preload plugin\n\t\t\t// https://github.com/swup/swup/issues/475\n\t\t}\n\n\t\t// Sanitize/check native option\n\t\tthis.options.native = this.options.native && !!document.startViewTransition;\n\n\t\t// Mount plugins\n\t\tthis.options.plugins.forEach((plugin) => this.use(plugin));\n\n\t\t// Install user hooks\n\t\tfor (const [key, handler] of Object.entries(this.options.hooks)) {\n\t\t\t// Build hook options from modifier suffix: 'content:replace.before' => { before: true }\n\t\t\tconst [hook, modifiers] = this.hooks.parseName(key as HookName);\n\t\t\t// @ts-expect-error: object.entries() does not preserve key/value types\n\t\t\tthis.hooks.on(hook, handler, modifiers);\n\t\t}\n\n\t\t// Create initial history record\n\t\tif ((window.history.state as HistoryState)?.source !== 'swup') {\n\t\t\tupdateHistoryRecord(null, { index: this.currentHistoryIndex });\n\t\t}\n\n\t\t// Give consumers a chance to hook into enable\n\t\tawait nextTick();\n\n\t\t// Trigger enable hook\n\t\tawait this.hooks.call('enable', undefined, undefined, () => {\n\t\t\tconst html = document.documentElement;\n\t\t\thtml.classList.add('swup-enabled');\n\t\t\thtml.classList.toggle('swup-native', this.options.native);\n\t\t});\n\t}\n\n\t/** Disable this instance, removing listeners and classnames. */\n\tasync destroy() {\n\t\t// remove delegated listener\n\t\tthis.clickDelegate!.destroy();\n\n\t\t// remove popstate listener\n\t\twindow.removeEventListener('popstate', this.handlePopState);\n\n\t\t// empty cache\n\t\tthis.cache.clear();\n\n\t\t// unmount plugins\n\t\tthis.options.plugins.forEach((plugin) => this.unuse(plugin));\n\n\t\t// trigger disable hook\n\t\tawait this.hooks.call('disable', undefined, undefined, () => {\n\t\t\tconst html = document.documentElement;\n\t\t\thtml.classList.remove('swup-enabled');\n\t\t\thtml.classList.remove('swup-native');\n\t\t});\n\n\t\t// remove handlers\n\t\tthis.hooks.clear();\n\t}\n\n\t/** Determine if a visit should be ignored by swup, based on URL or trigger element. */\n\tshouldIgnoreVisit(href: string, { el, event }: { el?: Element; event?: Event } = {}) {\n\t\tconst { origin, url, hash } = Location.fromUrl(href);\n\n\t\t// Ignore if the new origin doesn't match the current one\n\t\tif (origin !== window.location.origin) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Ignore if the link/form would open a new window (or none at all)\n\t\tif (el && this.triggerWillOpenNewWindow(el)) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Ignore if the visit should be ignored as per user options\n\t\tif (this.options.ignoreVisit(url + hash, { el, event })) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Finally, allow the visit\n\t\treturn false;\n\t}\n\n\tprotected handleLinkClick(event: DelegateEvent<MouseEvent>) {\n\t\tconst el = event.delegateTarget as HTMLAnchorElement;\n\t\tconst { href, url, hash } = Location.fromElement(el);\n\n\t\t// Exit early if the link should be ignored\n\t\tif (this.shouldIgnoreVisit(href, { el, event })) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Ignore if swup is currently navigating towards the link's URL\n\t\tif (this.navigating && url === this.visit.to.url) {\n\t\t\tevent.preventDefault();\n\t\t\treturn;\n\t\t}\n\n\t\tconst visit = this.createVisit({ to: url, hash, el, event });\n\n\t\t// Exit early if control key pressed\n\t\tif (event.metaKey || event.ctrlKey || event.shiftKey || event.altKey) {\n\t\t\tthis.hooks.callSync('link:newtab', visit, { href });\n\t\t\treturn;\n\t\t}\n\n\t\t// Exit early if other than left mouse button\n\t\tif (event.button !== 0) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.hooks.callSync('link:click', visit, { el, event }, () => {\n\t\t\tconst from = visit.from.url ?? '';\n\n\t\t\tevent.preventDefault();\n\n\t\t\t// Handle links to the same page\n\t\t\tif (!url || url === from) {\n\t\t\t\tif (hash) {\n\t\t\t\t\t// With hash: scroll to anchor\n\t\t\t\t\tthis.hooks.callSync('link:anchor', visit, { hash }, () => {\n\t\t\t\t\t\tupdateHistoryRecord(url + hash);\n\t\t\t\t\t\tthis.scrollToContent(visit);\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t// Without hash: scroll to top or load/reload page\n\t\t\t\t\tthis.hooks.callSync('link:self', visit, undefined, () => {\n\t\t\t\t\t\tif (this.options.linkToSelf === 'navigate') {\n\t\t\t\t\t\t\tthis.performNavigation(visit);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tupdateHistoryRecord(url);\n\t\t\t\t\t\t\tthis.scrollToContent(visit);\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Exit early if the resolved path hasn't changed\n\t\t\tif (this.isSameResolvedUrl(url, from)) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Finally, proceed with loading the page\n\t\t\tthis.performNavigation(visit);\n\t\t});\n\t}\n\n\tprotected handlePopState(event: PopStateEvent) {\n\t\tconst href: string = (event.state as HistoryState)?.url ?? window.location.href;\n\n\t\t// Exit early if this event should be ignored\n\t\tif (this.options.skipPopStateHandling(event)) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Exit early if the resolved path hasn't changed\n\t\tif (this.isSameResolvedUrl(getCurrentUrl(), this.location.url)) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst { url, hash } = Location.fromUrl(href);\n\n\t\tconst visit = this.createVisit({ to: url, hash, event });\n\n\t\t// Mark as history visit\n\t\tvisit.history.popstate = true;\n\n\t\t// Determine direction of history visit\n\t\tconst index = (event.state as HistoryState)?.index ?? 0;\n\t\tif (index && index !== this.currentHistoryIndex) {\n\t\t\tconst direction = index - this.currentHistoryIndex > 0 ? 'forwards' : 'backwards';\n\t\t\tvisit.history.direction = direction;\n\t\t\tthis.currentHistoryIndex = index;\n\t\t}\n\n\t\t// Disable animation & scrolling for history visits\n\t\tvisit.animation.animate = false;\n\t\tvisit.scroll.reset = false;\n\t\tvisit.scroll.target = false;\n\n\t\t// Animated history visit: re-enable animation & scroll reset\n\t\tif (this.options.animateHistoryBrowsing) {\n\t\t\tvisit.animation.animate = true;\n\t\t\tvisit.scroll.reset = true;\n\t\t}\n\n\t\tthis.hooks.callSync('history:popstate', visit, { event }, () => {\n\t\t\tthis.performNavigation(visit);\n\t\t});\n\t}\n\n\t/** Determine whether an element will open a new tab when clicking/activating. */\n\tprotected triggerWillOpenNewWindow(triggerEl: Element) {\n\t\tif (triggerEl.matches('[download], [target=\"_blank\"]')) {\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n}\n","import { match } from 'path-to-regexp';\n\nimport type { Path, MatchFunction } from 'path-to-regexp';\n\nexport { type Path };\n\ntype Params = Parameters<typeof match>;\n\n/** Create a match function from a path pattern that checks if a URLs matches it. */\nexport const matchPath = <P extends object = object>(\n\tpath: Params[0],\n\toptions?: Params[1]\n): MatchFunction<P> => {\n\tif (Array.isArray(path) && !path.length) {\n\t\tpath = '';\n\t}\n\n\ttry {\n\t\treturn match<P>(path, options);\n\t} catch (error) {\n\t\tthrow new Error(`[swup] Error parsing path \"${String(path)}\":\\n${String(error)}`);\n\t}\n};\n"],"names":["classify","text","fallback","String","toLowerCase","replace","getCurrentUrl","hash","window","location","pathname","search","createHistoryRecord","url","data","state","random","Math","source","history","pushState","updateHistoryRecord","replaceState","delegateEvent","selector","type","callback","options","controller","AbortController","signal","delegate","destroy","abort","Location","URL","constructor","base","document","baseURI","super","toString","Object","setPrototypeOf","this","prototype","fromElement","el","href","getAttribute","fromUrl","fetchPage","_this","_temp2","_result","status","responseUrl","response","Promise","resolve","then","html","hooks","call","visit","FetchError","finalUrl","page","cache","write","method","set","headers","requestHeaders","timeout","timedOut","timeoutId","setTimeout","_temp","fetch","_this$hooks$call","clearTimeout","_catch","error","name","aborted","e","reject","Error","message","details","Cache","swup","pages","Map","size","all","copy","forEach","key","has","get","result","callSync","undefined","update","payload","delete","clear","prune","predicate","urlToResolve","resolveUrl","query","context","querySelector","queryAll","Array","from","querySelectorAll","nextTick","requestAnimationFrame","isPromise","obj","runAsPromise","func","args","getContextualAttr","attr","target","closest","hasAttribute","Classes","swupClasses","selectors","scope","animation","containers","isArray","join","targets","trim","add","classList","slice","arguments","remove","className","split","filter","c","isSwupClass","some","startsWith","Visit","id","to","trigger","scroll","meta","event","animate","wait","native","animationScope","animationSelector","read","action","popstate","direction","reset","advance","done","createVisit","_iteratorSymbol","Symbol","iterator","pact","value","s","_Pact","o","_settle","bind","v","observer","onFulfilled","onRejected","thenable","Hooks","registry","init","hook","create","exists","ledger","console","on","handler","warn","registration","off","before","once","arg1","arg2","arg3","defaultHandler","parseCallArgs","after","getHandlers","run","dispatchDomEvent","runSync","registrations","rethrow","_exit","_this2","results","body","check","step","_cycle","next","return","_fixup","TypeError","i","length","push","array","_isSettledPact","_forTo","values","_forOf","_result2","found","replaced","sort","sortRegistrations","T","index","replacingHandler","createDefaultHandler","a","b","priority","detail","dispatchEvent","CustomEvent","bubbles","parseName","modifiers","reduce","acc","mod","getAnchorElement","charAt","substring","decoded","decodeURIComponent","element","getElementById","CSS","escape","awaitAnimations","elements","animatedElements","awaitedAnimations","map","propCount","styles","getComputedStyle","transitionDelays","getStyleProperties","TRANSITION","transitionDurations","transitionTimeout","calculateTimeout","animationDelays","ANIMATION","animationDurations","animationTimeout","max","getTransitionInfo","endEvent","startTime","performance","now","propsTransitioned","end","removeEventListener","onEnd","elapsedTime","addEventListener","awaitAnimationsOnElement","Boolean","delays","durations","concat","duration","toMs","time","parseFloat","performNavigation","_temp4","navigating","referrer","classes","includes","_exit2","_temp8","_result4","animatePageOut","_temp6","animatePageIn","_temp5","startViewTransition","_renderPage3","renderPage","_page3","finished","_renderPage2","_page2","_temp7","_renderPage","_page","onVisitEnd","_temp9","_this$fetchPage","cachedPage","DOMParser","parseFromString","newUrl","currentHistoryIndex","skipPopStateHandling","assign","back","_finallyRethrows","_wasThrown","_result3","_temp3","navigate","shouldIgnoreVisit","skip","replaceContent","incomingDocument","title","innerText","persistedElements","currentEl","incomingEl","replaceWith","cloneNode","existing","replacement","scrollToContent","behavior","scrollTarget","scrolled","anchor","scrollIntoView","scrollTo","top","left","isSameResolvedUrl","use","plugin","maybeInvalidPlugin","isSwupPlugin","_checkRequirements","_beforeMount","mount","plugins","unuse","pluginOrName","findPlugin","unmount","_afterUnmount","p","find","url1","url2","defaults","animateHistoryBrowsing","ignoreVisit","linkSelector","linkToSelf","Accept","currentPageUrl","version","clickDelegate","log","handleLinkClick","handlePopState","enable","scrollRestoration","entries","documentElement","toggle","origin","triggerWillOpenNewWindow","delegateTarget","preventDefault","metaKey","ctrlKey","shiftKey","altKey","button","triggerEl","matches","getBoundingClientRect","matchPath","path","match"],"mappings":"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"}