@react-motion-router/core 2.0.0-beta.sha-c1cce91 → 2.0.0-beta.sha-6f2a71f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,6 +22,7 @@ export declare abstract class RouterBase<P extends RouterBaseProps = RouterBaseP
22
22
  abstract readonly navigation: NavigationBase;
23
23
  readonly parent: RouterBase | null;
24
24
  private loadDispatched;
25
+ private hasUAVisualTransition;
25
26
  readonly parentScreen: ScreenBase | null;
26
27
  private static rootRouterRef;
27
28
  static readonly contextType: import("react").Context<{
@@ -7,6 +7,7 @@ import { ScreenBase } from './ScreenBase';
7
7
  interface ScreenTransitionLayerProps {
8
8
  children: ScreenChild | ScreenChild[];
9
9
  navigation: NavigationBase;
10
+ hasUAVisualTransition: boolean;
10
11
  }
11
12
  interface ScreenTransitionLayerState {
12
13
  gestureNavigating: boolean;
@@ -26,6 +27,7 @@ export declare class ScreenTransitionLayer extends Component<ScreenTransitionLay
26
27
  set screens(screens: RefObject<ScreenBase>[]);
27
28
  set direction(direction: PlaybackDirection);
28
29
  get direction(): PlaybackDirection;
30
+ get hasUAVisualTransition(): boolean;
29
31
  transition(): Animation;
30
32
  render(): JSX.Element;
31
33
  }
@@ -20,6 +20,7 @@ export declare class MotionProgressEndEvent extends Event {
20
20
  }
21
21
  export declare class LoadEvent extends Event implements Omit<NavigateEvent, 'navigationType' | 'commit'> {
22
22
  #private;
23
+ readonly hasUAVisualTransition = false;
23
24
  constructor();
24
25
  intercept(options?: NavigationInterceptOptions | undefined): void;
25
26
  scroll(): void;
@@ -10,6 +10,7 @@ export interface AnimationEffectFactoryProps<R extends HTMLElement = HTMLElement
10
10
  timeline: AnimationTimeline | null;
11
11
  playbackRate: number;
12
12
  direction: PlaybackDirection;
13
+ hasUAVisualTransition: boolean;
13
14
  }
14
15
  export type AnimationEffectFactory<R extends HTMLElement = HTMLElement> = (props: AnimationEffectFactoryProps<R>) => AnimationEffect;
15
16
  export type MetaTypeKey = 'http-equiv' | 'name' | 'itemprop' | 'property' | 'charset';
@@ -79,15 +80,13 @@ export type StylableElement = Element & {
79
80
  style: CSSStyleDeclaration;
80
81
  };
81
82
  export declare function isStylableElement(element: any): element is StylableElement;
82
- export interface ScreenBaseFocusOptions {
83
- signal?: AbortSignal;
84
- }
85
83
  export interface LoadNavigationTransition extends Omit<NavigationTransition, "navigationType"> {
86
84
  navigationType: "load";
87
85
  }
88
86
  declare global {
89
87
  interface NavigateEvent extends Event {
90
88
  commit?(): void;
89
+ readonly hasUAVisualTransition: boolean;
91
90
  }
92
91
  }
93
92
  export type ElementPropType<C> = C extends React.CElement<infer P, infer T> ? P & React.ClassAttributes<T> : never;
package/build/index.js CHANGED
@@ -354,6 +354,7 @@ class LoadEvent extends Event {
354
354
  #intercepted = false;
355
355
  #thenables = [];
356
356
  #transition = null;
357
+ hasUAVisualTransition = false;
357
358
  constructor() {
358
359
  super('navigate', { cancelable: false, bubbles: false, composed: false });
359
360
  const currentEntry = window.navigation.currentEntry;
@@ -474,7 +475,7 @@ class ScreenTransitionProvider extends external_react_.Component {
474
475
  }
475
476
  get animationEffect() {
476
477
  const animationEffectFactory = this.props.animation;
477
- const { animation, direction } = this.context;
478
+ const { animation, direction, hasUAVisualTransition } = this.context;
478
479
  const { timeline, playbackRate } = animation;
479
480
  const { index, exiting, ref } = this;
480
481
  return animationEffectFactory?.({
@@ -483,7 +484,8 @@ class ScreenTransitionProvider extends external_react_.Component {
483
484
  exiting,
484
485
  timeline,
485
486
  direction,
486
- playbackRate
487
+ playbackRate,
488
+ hasUAVisualTransition
487
489
  }) ?? null;
488
490
  }
489
491
  setZIndex(zIndex) {
@@ -659,7 +661,7 @@ class ScreenBase extends external_react_.Component {
659
661
  const Component = this.props.component;
660
662
  const HeaderComponent = routeProp.config.header?.component;
661
663
  const FooterComponent = routeProp.config.footer?.component;
662
- return ((0,jsx_runtime.jsx)(ScreenTransitionProvider, { ref: this.#transitionProvider, renderAs: this.state.elementType, id: `${this.context.id}-${this.name}-transition-provider`, animation: routeProp.config.animation, navigation: navigation, focused: this.state.focused, children: (0,jsx_runtime.jsx)("div", { id: `${this.context.id}-${this.id}`, ref: this.ref, className: "screen", style: {
664
+ return ((0,jsx_runtime.jsx)(ScreenTransitionProvider, { ref: this.#transitionProvider, renderAs: this.state.elementType, id: `${this.context.id}-${this.name}-transition-provider`, animation: routeProp.config.animation, navigation: navigation, focused: this.state.focused, children: (0,jsx_runtime.jsx)("div", { id: `${this.context.id}-${this.name}`, ref: this.ref, className: "screen", style: {
663
665
  height: '100%',
664
666
  width: '100%',
665
667
  display: 'flex',
@@ -953,6 +955,9 @@ class ScreenTransitionLayer extends external_react_.Component {
953
955
  get direction() {
954
956
  return this.#direction;
955
957
  }
958
+ get hasUAVisualTransition() {
959
+ return this.props.hasUAVisualTransition;
960
+ }
956
961
  transition() {
957
962
  const effect = new external_web_animations_extension_namespaceObject.ParallelEffect(this.screens.map(screen => {
958
963
  return screen.current?.transitionProvider?.current?.animationEffect ?? null;
@@ -1007,6 +1012,7 @@ class RouterBase extends external_react_.Component {
1007
1012
  parent = null;
1008
1013
  #child = null;
1009
1014
  loadDispatched = false;
1015
+ hasUAVisualTransition = false;
1010
1016
  parentScreen = null;
1011
1017
  static rootRouterRef = null;
1012
1018
  static contextType = NestedRouterContext;
@@ -1044,6 +1050,7 @@ class RouterBase extends external_react_.Component {
1044
1050
  router = router.child;
1045
1051
  }
1046
1052
  router.intercept(e);
1053
+ this.hasUAVisualTransition = e.hasUAVisualTransition;
1047
1054
  };
1048
1055
  getRouterById(routerId, target) {
1049
1056
  const router = target ?? RouterBase.rootRouterRef?.deref();
@@ -1110,13 +1117,9 @@ class RouterBase extends external_react_.Component {
1110
1117
  get id() {
1111
1118
  if (this.props.id)
1112
1119
  return this.props.id;
1113
- const prefix = this.parent ? `${this.parent.id}-` : '';
1114
- const id = (this.parentScreen?.path ?? 'root')
1115
- .toLowerCase()
1116
- .replace(/[^\w-]/g, '-') // Remove non-alphanumeric chars
1117
- .replace(/-+/g, '-') // Replace multiple hyphens with a single one
1118
- .replace(/^-|-$/g, ''); // Remove leading and trailing hyphens
1119
- return `${prefix}${id}`;
1120
+ const prefix = this.parent?.id;
1121
+ const id = this.parentScreen?.id ?? 'root';
1122
+ return [prefix, id].filter(Boolean).join('-');
1120
1123
  }
1121
1124
  get isRoot() {
1122
1125
  return !this.parent;
@@ -1164,7 +1167,7 @@ class RouterBase extends external_react_.Component {
1164
1167
  render() {
1165
1168
  if (!this.navigation)
1166
1169
  return;
1167
- return ((0,jsx_runtime.jsx)("div", { id: this.id, className: "react-motion-router", style: { width: '100%', height: '100%' }, ref: this.ref, children: (0,jsx_runtime.jsx)(RouterContext.Provider, { value: this, children: (0,jsx_runtime.jsx)(ScreenTransitionLayer, { ref: this.screenTransitionLayer, navigation: this.navigation, children: this.screens }) }) }));
1170
+ return ((0,jsx_runtime.jsx)("div", { id: this.id, className: "react-motion-router", style: { width: '100%', height: '100%' }, ref: this.ref, children: (0,jsx_runtime.jsx)(RouterContext.Provider, { value: this, children: (0,jsx_runtime.jsx)(ScreenTransitionLayer, { ref: this.screenTransitionLayer, navigation: this.navigation, hasUAVisualTransition: this.hasUAVisualTransition, children: this.screens }) }) }));
1168
1171
  }
1169
1172
  }
1170
1173
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","mappings":"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","sources":["webpack://@react-motion-router/core/../../node_modules/react/cjs/react-jsx-runtime.production.min.js","webpack://@react-motion-router/core/../../node_modules/react/jsx-runtime.js","webpack://@react-motion-router/core/./src/common/utils.ts","webpack://@react-motion-router/core/external module \"react\"","webpack://@react-motion-router/core/webpack/bootstrap","webpack://@react-motion-router/core/webpack/runtime/define property getters","webpack://@react-motion-router/core/webpack/runtime/hasOwnProperty shorthand","webpack://@react-motion-router/core/./src/SharedElementSceneContext.ts","webpack://@react-motion-router/core/./src/SharedElement.tsx","webpack://@react-motion-router/core/./src/common/events.ts","webpack://@react-motion-router/core/./src/ScreenTransitionLayerContext.tsx","webpack://@react-motion-router/core/./src/ScreenTransitionProvider.tsx","webpack://@react-motion-router/core/./src/RouterContext.ts","webpack://@react-motion-router/core/./src/RoutePropContext.ts","webpack://@react-motion-router/core/./src/SharedElementScene.ts","webpack://@react-motion-router/core/./src/ScreenBase.tsx","webpack://@react-motion-router/core/./src/common/types.ts","webpack://@react-motion-router/core/external module \"web-animations-extension\"","webpack://@react-motion-router/core/./src/SharedElementTransitionLayer.tsx","webpack://@react-motion-router/core/./src/MotionContext.ts","webpack://@react-motion-router/core/./src/ScreenTransitionLayer.tsx","webpack://@react-motion-router/core/./src/RouterBase.tsx","webpack://@react-motion-router/core/./src/MetaData.ts","webpack://@react-motion-router/core/./src/NavigationBase.ts","webpack://@react-motion-router/core/./src/common/hooks.ts","webpack://@react-motion-router/core/./src/common/constants.ts","webpack://@react-motion-router/core/./src/index.ts"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f=require(\"react\"),k=Symbol.for(\"react.element\"),l=Symbol.for(\"react.fragment\"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=\"\"+g);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { cloneElement, lazy as ReactLazy } from \"react\";\nimport { ClonedElementType, ElementPropType, LazyExoticComponent, MatchedRoute, PathPattern } from \"./types\";\n\nexport function resolveBaseURLFromPattern(pattern: string, pathname: string) {\n if (!pattern.endsWith(\"**\")) pattern += '**'; // allows us to match nested routes\n const origin = window.location.origin;\n const baseURLMatch = new URLPattern(pattern, origin).exec(pathname, origin);\n if (!baseURLMatch) return null;\n\n const nestedPathnameGroup = baseURLMatch.pathname.groups[1] ?? '';\n // derive concrete baseURL\n return new URL(pathname.replace(nestedPathnameGroup, ''), window.location.origin);\n}\n\nexport function matchRoute(\n pathnamePattern: string,\n pathname: string,\n baseURLPattern: string = `${window.location.origin}/`,\n caseSensitive: boolean = true\n): MatchedRoute | null {\n if (!caseSensitive) {\n pathnamePattern = pathnamePattern.toLowerCase();\n pathname = pathname.toLowerCase();\n }\n\n const baseURL = resolveBaseURLFromPattern(baseURLPattern, pathname)?.href;\n if (!baseURL) return null;\n\n const match = new URLPattern({ baseURL, pathname: pathnamePattern }).exec({ pathname, baseURL });\n const params = match?.pathname.groups ?? {};\n if (match) {\n return {\n params\n };\n }\n return null;\n}\n\nexport function includesRoute(pathnamePatterns: PathPattern[], pathname: string, baseURL: string = window.location.origin) {\n return pathnamePatterns.some(({ pattern, caseSensitive }) => matchRoute(pattern, pathname, baseURL, caseSensitive));\n}\n\nexport function dispatchEvent<T>(event: CustomEvent<T> | Event, target: HTMLElement | EventTarget = window) {\n return new Promise<boolean>((resolve) => {\n queueMicrotask(() => resolve(\n target.dispatchEvent(event)\n ));\n });\n}\n\nexport function lazy<T extends React.ComponentType<any>>(\n factory: () => Promise<{ default: T }>\n): LazyExoticComponent<T> {\n const Component = ReactLazy(factory) as LazyExoticComponent<T>;\n Component.load = async () => {\n Component.module ??= await factory();\n return Component.module;\n };\n return Component;\n}\n\nexport function isNavigationSupported() {\n return Boolean(window.navigation);\n}\n\nexport function isURLPatternSupported() {\n // @ts-ignore: Property 'UrlPattern' does not exist \n return Boolean(globalThis.URLPattern);\n}\n\nexport async function polyfillURLPattern() {\n const { URLPattern } = await import(/*webpackIgnore: true*/ \"urlpattern-polyfill\");\n // @ts-ignore: Property 'UrlPattern' does not exist \n globalThis.URLPattern = URLPattern;\n}\n\nexport async function polyfillNavigation() {\n const { applyPolyfill } = await import(/*webpackIgnore: true*/ \"@virtualstate/navigation\");\n applyPolyfill({\n history: true,\n interceptEvents: true,\n patch: true,\n persist: true,\n persistState: true\n });\n}\n\nexport async function PromiseAllDynamic<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>[]> {\n const awaited = [];\n for (const value of values) {\n awaited.push(await value);\n }\n\n return awaited;\n}\n\nexport function toCamelCase(value: string) {\n return value.replace(/-([a-z])/g, (g) => g[1].toUpperCase())\n}\n\nexport function cloneAndInject<\n C extends React.CElement<any, any>,\n IP extends Partial<ElementPropType<C>>\n>(element: C, injectProps: IP) {\n return cloneElement(element, injectProps) as ClonedElementType<C, IP>;\n}","var x = y => { var x = {}; __webpack_require__.d(x, y); return x; }\nvar y = x => () => x\nmodule.exports = __WEBPACK_EXTERNAL_MODULE_react__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","import { createContext } from \"react\";\nimport { SharedElementScene } from \"./SharedElementScene\";\n\nexport const SharedElementSceneContext = createContext<SharedElementScene>(null!);","import { Component, createRef } from 'react';\nimport { SharedElementTransitionType, StyleKeyList } from './common/types';\nimport { SharedElementSceneContext } from './SharedElementSceneContext';\n\ninterface SharedElementConfig extends OptionalEffectTiming {\n type?: SharedElementTransitionType;\n transformOrigin?: React.CSSProperties[\"transformOrigin\"];\n styles?: StyleKeyList;\n deepClone?: boolean;\n}\n\ninterface SharedElementProps {\n id: string;\n children: React.ReactElement;\n disabled?: boolean;\n config?: SharedElementConfig;\n}\n\ninterface SharedElementState {}\n\nexport class SharedElement extends Component<SharedElementProps, SharedElementState> {\n public readonly ref = createRef<HTMLDivElement>();\n static readonly contextType = SharedElementSceneContext;\n declare context: React.ContextType<typeof SharedElementSceneContext>;\n\n componentDidMount(): void {\n this.scene.addNode(this);\n }\n\n componentDidUpdate(prevProps: SharedElementProps) {\n if (this.props.id !== prevProps.id) {\n this.scene.removeNode(prevProps.id.toString());\n this.scene.addNode(this);\n }\n }\n\n componentWillUnmount(): void {\n this.scene.removeNode(this.id);\n }\n\n get styles(): StyleKeyList {\n if (this.props.config?.styles) {\n return this.props.config.styles;\n }\n return [];\n }\n\n get canTransition() {\n return !this.props.disabled\n && this.scene.canTransition;\n }\n\n get scene() {\n return this.context;\n }\n\n get id() {\n return `shared-element-${this.props.id.toString()}`;\n }\n\n get transitionType(): SharedElementTransitionType {\n return this.props.config?.type ?? this.scene.previousScene?.nodes.get(this.id)?.transitionType ?? \"morph\";\n }\n\n getBoundingClientRect() {\n return this.ref.current?.firstElementChild?.getBoundingClientRect() ?? new DOMRect();\n }\n\n public clone() {\n if (!this.ref.current) return null;\n const deepClone = this.props.config?.deepClone ?? true;\n return this.ref.current.firstElementChild?.cloneNode(deepClone) as HTMLElement;\n }\n\n public hide() {\n if (!this.ref.current) return;\n this.ref.current.style.visibility = 'hidden';\n }\n\n public unhide() {\n if (!this.ref.current) return;\n this.ref.current.style.visibility = 'visible';\n }\n\n render() {\n return (\n <div\n ref={this.ref}\n id={this.id}\n style={{ display: \"contents\" }}\n >\n {this.props.children}\n </div>\n );\n }\n}","import { LoadNavigationTransition } from \"./types\";\nimport { PromiseAllDynamic } from \"./utils\";\n\nexport class TransitionStartEvent extends Event {\n\tconstructor() {\n\t\tsuper('transition-start');\n\t}\n}\n\nexport class TransitionCancelEvent extends Event {\n\tconstructor() {\n\t\tsuper('transition-cancel');\n\t}\n}\n\nexport class TransitionEndEvent extends Event {\n\tconstructor() {\n\t\tsuper('transition-end');\n\t}\n}\n\nexport class MotionProgressStartEvent extends Event {\n\tconstructor() {\n\t\tsuper('motion-progress-start');\n\t}\n}\n\nexport class MotionProgressEvent extends Event {\n\treadonly progress: number;\n\n\tconstructor(progress: number) {\n\t\tsuper('motion-progress');\n\t\tthis.progress = progress;\n\t}\n}\n\nexport class MotionProgressEndEvent extends Event {\n\tconstructor() {\n\t\tsuper('motion-progress-end');\n\t}\n}\n\nexport class LoadEvent extends Event implements Omit<NavigateEvent, 'navigationType' | 'commit'> {\n\t#navigationType = \"load\" as const;\n\t#userInitiated: boolean = false;\n\t#canIntercept: boolean = true;\n\t#hashChange: boolean = false;\n\t#formData: FormData | null = null;\n\t#downloadRequest: string | null = null;\n\t#destination: NavigationDestination;\n\t#signal: AbortSignal;\n\t#abortable = new AbortController();\n\t#intercepted = false;\n\t#thenables: Promise<void>[] = [];\n\t#transition: LoadNavigationTransition | null = null;\n\n\tconstructor() {\n\t\tsuper('navigate', { cancelable: false, bubbles: false, composed: false });\n\t\tconst currentEntry = window.navigation.currentEntry;\n\t\tif (!currentEntry) throw new Error(\"Current entry is null\");\n\t\tthis.#destination = {\n\t\t\tgetState() {\n\t\t\t\treturn currentEntry.getState();\n\t\t\t},\n\t\t\turl: currentEntry.url ?? new URL(window.location.href).href,\n\t\t\tkey: currentEntry.key,\n\t\t\tindex: currentEntry.index,\n\t\t\tid: currentEntry.id,\n\t\t\tsameDocument: true\n\t\t};\n\n\t\tthis.#signal = this.#abortable.signal;\n\t\twindow.navigation.addEventListener('navigate', this.#onNavigate, { signal: this.#signal });\n\t}\n\n\t#onNavigate = (e: Event) => {\n\t\tif (e !== this) {\n\t\t\tthis.#abortable.abort();\n\t\t} else if (!this.#thenables.length) {\n\t\t\twindow.navigation.removeEventListener('navigate', this.#onNavigate);\n\t\t}\n\t}\n\n\tintercept(options?: NavigationInterceptOptions | undefined): void {\n\t\tif (this.#intercepted) throw new DOMException(\"Failed to execute 'intercept' on 'NavigateEvent': intercept() may only be called while the navigate event is being dispatched.\");\n\t\tlet finish: Function | null = null;\n\t\tif (!this.#transition) {\n\t\t\tthis.#transition = {\n\t\t\t\tfinished: new Promise((resolve) => finish = resolve),\n\t\t\t\tfrom: window.navigation.currentEntry!,\n\t\t\t\tnavigationType: \"load\" as const\n\t\t\t};\n\t\t}\n\t\tconst thenable = options?.handler?.();\n\t\tif (thenable) this.#thenables.push(thenable);\n\t\tif (this.#thenables.length === 1) {\n\t\t\tPromiseAllDynamic(this.#thenables).then(() => {\n\t\t\t\tthis.#intercepted = true;\n\t\t\t\twindow.removeEventListener('navigate', this.#onNavigate);\n\t\t\t\tfinish?.();\n\t\t\t});\n\t\t}\n\t}\n\n\tscroll(): void {\n\t\tthrow new Error(\"Method not implemented.\");\n\t}\n\n\tget transition() {\n\t\treturn this.#transition;\n\t}\n\n\tget navigationType() {\n\t\treturn this.#navigationType;\n\t}\n\n\tget userInitiated() {\n\t\treturn this.#userInitiated;\n\t}\n\n\tget canIntercept() {\n\t\treturn this.#canIntercept;\n\t}\n\n\tget hashChange() {\n\t\treturn this.#hashChange;\n\t}\n\n\tget formData() {\n\t\treturn this.#formData;\n\t}\n\n\tget downloadRequest() {\n\t\treturn this.#downloadRequest;\n\t}\n\n\tget destination() {\n\t\treturn this.#destination;\n\t}\n\n\tget signal() {\n\t\treturn this.#signal;\n\t}\n}","import { createContext } from \"react\";\nimport { ScreenTransitionLayer } from \"./ScreenTransitionLayer\";\n\nexport const ScreenTransitionLayerContext = createContext<ScreenTransitionLayer>(null!);\n","import { ScreenTransitionLayerContext } from './ScreenTransitionLayerContext';\nimport { AnimationEffectFactory } from './common/types';\nimport { NavigationBase } from './NavigationBase';\nimport { Component, ElementType, createRef } from 'react';\n\ninterface ScreenTransitionProviderProps {\n id: string;\n animation?: AnimationEffectFactory;\n children: React.ReactNode\n navigation: NavigationBase;\n renderAs: ElementType;\n focused: boolean;\n}\n\ninterface ScreenTransitionProviderState {\n zIndex: React.CSSProperties[\"zIndex\"];\n}\n\nexport class ScreenTransitionProvider extends Component<ScreenTransitionProviderProps, ScreenTransitionProviderState> {\n public readonly ref = createRef<HTMLElement>();\n static readonly contextType = ScreenTransitionLayerContext;\n declare context: React.ContextType<typeof ScreenTransitionLayerContext>;\n public index = 0;\n public exiting = false;\n\n state: ScreenTransitionProviderState = {\n zIndex: 'unset',\n }\n\n private onAnimationEnd = () => {\n if (this.ref.current) {\n this.ref.current.style.willChange = 'auto';\n this.ref.current.style.pointerEvents = 'auto';\n }\n }\n\n private onAnimationStart = () => {\n if (this.ref.current) {\n this.ref.current.style.willChange = 'transform, opacity';\n this.ref.current.style.pointerEvents = 'none';\n }\n }\n\n componentDidMount() {\n this.props.navigation.addEventListener('transition-start', this.onAnimationStart);\n this.props.navigation.addEventListener('transition-end', this.onAnimationEnd);\n this.props.navigation.addEventListener('transition-cancel', this.onAnimationEnd);\n }\n\n componentWillUnmount() {\n this.props.navigation.removeEventListener('transition-start', this.onAnimationStart);\n this.props.navigation.removeEventListener('transition-end', this.onAnimationEnd);\n this.props.navigation.removeEventListener('transition-cancel', this.onAnimationEnd);\n }\n\n get animationEffect() {\n const animationEffectFactory = this.props.animation;\n const { animation, direction } = this.context;\n const { timeline, playbackRate } = animation;\n const { index, exiting, ref } = this;\n\n return animationEffectFactory?.({\n ref: ref.current,\n index,\n exiting,\n timeline,\n direction,\n playbackRate\n }) ?? null;\n }\n\n setZIndex(zIndex: React.CSSProperties[\"zIndex\"]) {\n return new Promise<void>(resolve => this.setState({ zIndex }, resolve));\n }\n\n render() {\n const Element = this.props.renderAs;\n const inert = !this.props.focused ? '' : undefined;\n return (\n <Element\n id={this.props.id}\n className=\"screen-transition-provider\"\n ref={this.ref}\n {...{ inert }}\n style={{\n gridArea: '1 / 1',\n width: '100%',\n height: '100%',\n transformOrigin: 'center center',\n zIndex: this.state.zIndex\n }}\n >\n {this.props.children}\n </Element>\n );\n }\n}","import { createContext } from 'react';\nimport { ScreenBase } from './ScreenBase';\nimport { RouterBase } from './RouterBase';\n\nexport const NestedRouterContext = createContext<{parentRouter: RouterBase, parentScreen: ScreenBase} | null>(null);\nexport const RouterContext = createContext<RouterBase>(null!);","import { createContext } from \"react\";\nimport { RoutePropBase } from \"./common/types\";\n\nexport const RoutePropContext = createContext<RoutePropBase>(null!);","import { SharedElement } from \"./SharedElement\";\n\nexport class SharedElementScene {\n\tpublic readonly id: string;\n\tpublic readonly nodes = new Map<string, SharedElement>();\n\tpublic getScreenRect: () => DOMRect = () => new DOMRect();\n\tpublic keepAlive: boolean = false;\n\tpublic previousScene: SharedElementScene | null = null;\n\tpublic canTransition: boolean = true; // should be false if page animation already started\n\n\tconstructor(id: string) {\n\t\tthis.id = id;\n\t}\n\n\taddNode(node: SharedElement | null) {\n\t\tif (!node) return;\n\t\tconsole.assert(!this.nodes.has(node.id), `Duplicate Shared Element ID: ${node.id} in ${this.id}`);\n\t\tthis.nodes.set(node.id, node);\n\t}\n\n\tremoveNode(_id: string) {\n\t\tthis.nodes.delete(_id);\n\t}\n\n\tget xRatio() {\n\t\tconst screenRect = this.getScreenRect();\n\t\tconst xRatio = (screenRect.width / window.innerWidth).toFixed(2);\n\t\treturn parseFloat(xRatio);\n\t}\n\n\tget yRatio() {\n\t\tconst screenRect = this.getScreenRect();\n\t\tconst yRatio = (screenRect.height / window.innerHeight).toFixed(2);\n\t\treturn parseFloat(yRatio);\n\t}\n\n\tget x() {\n\t\treturn this.getScreenRect().x;\n\t}\n\n\tget y() {\n\t\treturn this.getScreenRect().y;\n\t}\n\n\tisEmpty() {\n\t\treturn !Boolean(this.nodes.size);\n\t}\n}","import { Component, ElementType, Suspense, cloneElement, createRef, isValidElement } from \"react\";\nimport { ScreenTransitionProvider } from \"./ScreenTransitionProvider\";\nimport {\n AnimationEffectFactory,\n LazyExoticComponent,\n PlainObject,\n RoutePropBase,\n ScreenBaseFocusOptions,\n isLazyExoticComponent,\n isNativeLazyExoticComponent,\n} from \"./common/types\";\nimport { NestedRouterContext, RouterContext } from \"./RouterContext\";\nimport { RoutePropContext } from \"./RoutePropContext\";\nimport { NavigationBase } from \"./NavigationBase\";\nimport { SharedElementSceneContext } from \"./SharedElementSceneContext\";\nimport { SharedElementScene } from \"./SharedElementScene\";\n\nexport interface ScreenBaseComponentProps<\n R extends RoutePropBase = RoutePropBase,\n N extends NavigationBase = NavigationBase\n> {\n route: R;\n navigation: N;\n}\n\nexport interface LifecycleProps<R extends RoutePropBase, N extends NavigationBase = NavigationBase> extends ScreenBaseComponentProps<R, N> {\n signal: AbortSignal;\n}\n\nexport interface ScreenBaseConfig<R extends RoutePropBase = RoutePropBase, N extends NavigationBase = NavigationBase> {\n header?: {\n fallback?: React.ReactNode;\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any>\n };\n footer?: {\n fallback?: React.ReactNode;\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any>\n };\n animation?: AnimationEffectFactory;\n onEnter?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onExit?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onEntered?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onExited?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onLoad?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n}\n\nexport interface ScreenBaseProps {\n path: string;\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any>;\n fallback?: React.ReactNode;\n name?: string;\n defaultParams?: PlainObject;\n caseSensitive?: boolean;\n config?: ScreenBaseConfig;\n}\n\nexport interface ScreenBaseState<C extends ScreenBaseProps[\"config\"] = ScreenBaseProps[\"config\"], P extends PlainObject = PlainObject> {\n focused: boolean;\n config: C;\n params: P;\n elementType: ElementType;\n}\n\nexport abstract class ScreenBase<\n P extends ScreenBaseProps = ScreenBaseProps,\n S extends ScreenBaseState<P[\"config\"]> = ScreenBaseState<P[\"config\"]>,\n R extends RoutePropBase<P[\"config\"]> = RoutePropBase<P[\"config\"]>\n> extends Component<P, S> {\n public readonly sharedElementScene: SharedElementScene;\n #transitionProvider = createRef<ScreenTransitionProvider>();\n protected readonly ref = createRef<HTMLDivElement>();\n protected readonly nestedRouterData;\n static readonly contextType = RouterContext;\n declare context: React.ContextType<typeof RouterContext>;\n\n state: S = {\n focused: false,\n config: {},\n params: {},\n elementType: 'div'\n } as S;\n\n constructor(props: P, context: React.ContextType<typeof RouterContext>) {\n super(props);\n\n this.sharedElementScene = new SharedElementScene(`${this.name}-shared-element-scene`);\n this.sharedElementScene.getScreenRect = () => this.ref.current?.getBoundingClientRect() || new DOMRect();\n this.nestedRouterData = { parentScreen: this as ScreenBase, parentRouter: context };\n }\n\n protected setParams(newParams: PlainObject) {\n this.setState(({ params }) => ({ params: { ...params, ...newParams } }));\n }\n\n protected setConfig(newConfig: R['config']) {\n this.setState(({ config }) => ({ config: { ...config, ...newConfig } }));\n }\n\n get focused() {\n return this.state.focused;\n }\n\n get name() {\n if (this.props.name)\n return this.props.name\n .toLowerCase()\n .replace(/[^\\w-]/g, '-') // Remove non-alphanumeric chars\n .replace(/-+/g, '-') // Replace multiple hyphens with a single one\n .replace(/^-|-$/g, ''); // Remove leading and trailing hyphens;\n else if (isLazyExoticComponent(this.props.component))\n return this.props.component.module?.default.name.toLowerCase();\n return this.props.component.name.toLowerCase();\n }\n\n blur() {\n return new Promise<void>(resolve => this.setState({ focused: false }, resolve));\n }\n\n focus() {\n return new Promise<void>(resolve => this.setState({ focused: true }, resolve));\n }\n\n async load(signal: AbortSignal) {\n let Component = this.props.component;\n let result;\n if ('load' in Component) {\n result = await Component.load();\n } else {\n result = { default: Component };\n }\n\n const navigation = this.context.navigation;\n const route = this.routeProp;\n await this.props.config?.onLoad?.({ navigation, route, signal });\n\n return result;\n }\n\n protected abstract get routeProp(): R;\n abstract get config(): R[\"config\"];\n abstract get params(): R[\"params\"];\n abstract get resolvedPathname(): string;\n abstract get id(): string;\n\n async onExited(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onExited?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n async onExit(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onExit?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n async onEnter(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onEnter?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n async onEntered(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onEntered?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n get path() {\n return this.props.path;\n }\n\n get transitionProvider() {\n return this.#transitionProvider;\n }\n\n render() {\n const navigation = this.context.navigation;\n const routeProp = this.routeProp;\n const Component = this.props.component;\n const HeaderComponent = routeProp.config.header?.component;\n const FooterComponent = routeProp.config.footer?.component;\n\n return (\n <ScreenTransitionProvider\n ref={this.#transitionProvider}\n renderAs={this.state.elementType}\n id={`${this.context.id}-${this.name}-transition-provider`}\n animation={routeProp.config.animation}\n navigation={navigation}\n focused={this.state.focused}\n >\n <div\n id={`${this.context.id}-${this.id}`} // need router ID since nested screens can have same history entry ID\n ref={this.ref}\n className=\"screen\"\n style={{\n height: '100%',\n width: '100%',\n display: 'flex',\n flexDirection: 'column',\n pointerEvents: 'inherit'\n }}\n >\n <SharedElementSceneContext.Provider value={this.sharedElementScene}>\n <RoutePropContext.Provider value={routeProp}>\n <NestedRouterContext.Provider value={this.nestedRouterData}>\n <Suspense fallback={<ComponentWithRouteProps component={routeProp.config.header?.fallback} route={routeProp} navigation={navigation} />}>\n <ComponentWithRouteProps component={HeaderComponent} route={routeProp} navigation={navigation} />\n </Suspense>\n <Suspense fallback={<ComponentWithRouteProps component={this.props.fallback} route={routeProp} navigation={navigation} />}>\n <ComponentWithRouteProps component={Component} route={routeProp} navigation={navigation} />\n </Suspense>\n <Suspense fallback={<ComponentWithRouteProps component={routeProp.config.footer?.fallback} route={routeProp} navigation={navigation} />}>\n <ComponentWithRouteProps component={FooterComponent} route={routeProp} navigation={navigation} />\n </Suspense>\n </NestedRouterContext.Provider>\n </RoutePropContext.Provider>\n </SharedElementSceneContext.Provider>\n </div>\n </ScreenTransitionProvider>\n );\n }\n}\n\ninterface ComponentWithRoutePropsProps extends ScreenBaseComponentProps<RoutePropBase, NavigationBase> {\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any> | React.ReactNode;\n}\nfunction ComponentWithRouteProps({ component, route, navigation }: ComponentWithRoutePropsProps) {\n if (isLazyExoticComponent(component) && component.module?.default) {\n component = component.module.default;\n }\n const Component = component ?? null;\n if (typeof Component === \"function\" || isNativeLazyExoticComponent(Component)) {\n return (\n <Component\n navigation={navigation}\n route={route}\n />\n );\n } else if (isValidElement(Component)) {\n return cloneElement<any>(Component, {\n navigation,\n route\n });\n }\n return <>{Component}</>;\n}","import { isValidElement } from 'react';\nimport { ScreenBase, ScreenBaseProps } from '../ScreenBase';\nimport {\n MotionProgressEndEvent,\n MotionProgressEvent,\n MotionProgressStartEvent,\n TransitionCancelEvent,\n TransitionEndEvent,\n TransitionStartEvent\n} from './events';\nimport { SharedElement } from '../SharedElement';\nimport { StandardPropertiesHyphen } from 'csstype';\n\nexport type ScreenChild<E extends ScreenBase = ScreenBase> = E extends ScreenBase<infer P> ? React.CElement<P, E> : never;\n\nexport interface AnimationEffectFactoryProps<R extends HTMLElement = HTMLElement> {\n ref: R | null;\n index: number;\n exiting: boolean;\n timeline: AnimationTimeline | null;\n playbackRate: number;\n direction: PlaybackDirection;\n}\n\nexport type AnimationEffectFactory<R extends HTMLElement = HTMLElement> = (props: AnimationEffectFactoryProps<R>) => AnimationEffect;\n\nexport type MetaTypeKey = 'http-equiv' | 'name' | 'itemprop' | 'property' | 'charset';\nexport type MetaType = [MetaTypeKey, string];\nexport type MetaKey = `${MetaTypeKey}=${string}`;\n\nexport interface LazyExoticComponent<T extends React.ComponentType<any>> extends React.LazyExoticComponent<T> {\n load: () => Promise<{ default: T }>;\n module?: { default: T };\n}\n\nexport type ScreenState<P extends ScreenBaseProps = ScreenBaseProps> = Map<string, Pick<RoutePropBase<P[\"config\"], PlainObject>, \"config\" | \"params\">>;\n\nexport interface RoutePropBase<C extends ScreenBaseProps[\"config\"] = {}, P extends PlainObject = PlainObject> {\n path: string;\n resolvedPathname?: string;\n config: Partial<NonNullable<C>>;\n focused: boolean;\n params: P;\n setParams(params: Partial<P>): void;\n setConfig(config: Partial<NonNullable<C>>): void;\n}\n\nexport function isValidScreenChild<S extends ScreenBase>(value: any): value is ScreenChild<S> {\n if (!isValidElement(value)) return false;\n return Object.getPrototypeOf(value.type) === ScreenBase;\n}\n\nexport type PlainObject<T = any> = { [key: string]: T };\n\nexport interface RouterBaseEventMap extends HTMLElementEventMap {\n \"transition-start\": TransitionStartEvent;\n \"transition-cancel\": TransitionCancelEvent;\n \"transition-end\": TransitionEndEvent;\n \"motion-progress-start\": MotionProgressStartEvent;\n \"motion-progress\": MotionProgressEvent;\n \"motion-progress-end\": MotionProgressEndEvent;\n}\n\nexport type RouterHTMLElement<E extends RouterBaseEventMap, T extends HTMLElement = HTMLDivElement> = T & {\n addEventListener<K extends keyof E>(type: K, listener: (this: T, ev: E[K]) => any, options?: boolean | AddEventListenerOptions): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n removeEventListener<K extends keyof E>(type: K, listener: (this: T, ev: E[K]) => any, options?: boolean | EventListenerOptions): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\nexport type CustomElementType = `${string}-${string}`;\n\nexport interface MatchedRoute {\n params?: PlainObject<string | undefined>;\n}\n\nexport interface PathPattern {\n pattern: string;\n caseSensitive: boolean;\n}\n\nexport type AnimationDirection = \"normal\" | \"reverse\";\n\nenum SharedElementTransitionTypeEnum {\n \"morph\",\n \"fade-through\",\n \"fade\",\n \"cross-fade\"\n}\n\nexport type SharedElementTransitionType = keyof typeof SharedElementTransitionTypeEnum;\n\nexport interface SharedElementNode {\n id: string;\n instance: SharedElement;\n}\n\nexport type SharedElementNodeMap = Map<string, SharedElementNode>;\n\nexport type StyleKeyList = (keyof StandardPropertiesHyphen | string)[];\n\nexport function isNativeLazyExoticComponent(value: any): value is React.LazyExoticComponent<any> {\n return typeof value === \"object\"\n && value !== null\n && value.$$typeof === Symbol.for('react.lazy');\n}\n\nexport function isLazyExoticComponent(value: any): value is LazyExoticComponent<any> {\n return isNativeLazyExoticComponent(value) && 'load' in value;\n}\n\nexport type StylableElement = Element & { style: CSSStyleDeclaration };\n\nexport function isStylableElement(element: any): element is StylableElement {\n return 'style' in element && element.style instanceof CSSStyleDeclaration;\n}\n\nexport interface ScreenBaseFocusOptions {\n signal?: AbortSignal;\n}\n\nexport interface LoadNavigationTransition extends Omit<NavigationTransition, \"navigationType\"> {\n navigationType: \"load\";\n}\n\ndeclare global {\n interface NavigateEvent extends Event {\n commit?(): void; // not in spec yet, see https://github.com/WICG/navigation-api/issues/66\n }\n}\n\nexport type ElementPropType<C> = C extends React.CElement<infer P, infer T> ? P & React.ClassAttributes<T> : never;\nexport type ClonedElementType<C, IP extends Partial<ElementPropType<C>>> = C extends React.CElement<infer P, infer T> ? React.CElement<P & Partial<IP>, T & React.Component<P & IP>> : never;","var x = y => { var x = {}; __webpack_require__.d(x, y); return x; }\nvar y = x => () => x\nconst __WEBPACK_NAMESPACE_OBJECT__ = x({ [\"Animation\"]: () => __WEBPACK_EXTERNAL_MODULE_web_animations_extension_74b2916c__.Animation, [\"ParallelEffect\"]: () => __WEBPACK_EXTERNAL_MODULE_web_animations_extension_74b2916c__.ParallelEffect });","import { StylableElement, StyleKeyList, isStylableElement } from './common/types';\nimport { Component, RefObject, createRef } from 'react';\nimport { NavigationBase } from './NavigationBase';\nimport { ScreenBase } from './ScreenBase';\nimport { ParallelEffect } from 'web-animations-extension';\nimport { SharedElement } from './SharedElement';\nimport { toCamelCase } from './common/utils';\n\ninterface SharedElementTransitionLayerProps {\n navigation: NavigationBase;\n direction: \"forwards\" | \"backwards\";\n}\n\ninterface SharedElementTransitionLayerState { }\n\nexport class SharedElementTransitionLayer extends Component<SharedElementTransitionLayerProps, SharedElementTransitionLayerState> {\n public readonly ref = createRef<HTMLDialogElement>();\n #outgoingScreen: RefObject<ScreenBase> | null = null;\n #incomingScreen: RefObject<ScreenBase> | null = null;\n\n state: SharedElementTransitionLayerState = {\n transitioning: false\n }\n\n set outgoingScreen(outgoingScreen: RefObject<ScreenBase> | null) {\n this.#outgoingScreen = outgoingScreen;\n }\n\n set incomingScreen(incomingScreen: RefObject<ScreenBase> | null) {\n this.#incomingScreen = incomingScreen;\n }\n\n get outgoingScreen() {\n return this.#outgoingScreen;\n }\n\n get incomingScreen() {\n return this.#incomingScreen;\n }\n\n getKeyframeProperties(element: Element, styleList: StyleKeyList) {\n const computedStyles: Record<string, string> = {};\n const computedStyle = window.getComputedStyle(element);\n for (const key of styleList) {\n let transformedKey;\n if (key === \"offset\")\n transformedKey = \"cssOffset\";\n else if (key === \"float\")\n transformedKey = \"cssFloat\";\n else\n transformedKey = toCamelCase(key);\n computedStyles[transformedKey] = computedStyle.getPropertyValue(key);\n }\n return computedStyles;\n }\n\n copyStyles(srcElement: Element | null | undefined, cloneElement: StylableElement, styleList: StyleKeyList) {\n if (!isStylableElement(srcElement)) return;\n const computedStyles = window.getComputedStyle(srcElement);\n for (const key of styleList) {\n const value = computedStyles.getPropertyValue(key);\n const priority = computedStyles.getPropertyPriority(key);\n cloneElement.style.setProperty(key, value, priority);\n }\n }\n\n getAnimationEffect<T extends { instance: SharedElement, clone: HTMLElement }>(start: T, end: T) {\n const keyframeEffects = new Array<KeyframeEffect>();\n const startRect = start.instance.getBoundingClientRect();\n const endRect = end.instance.getBoundingClientRect();\n const config: KeyframeEffectOptions = {\n fill: \"both\" as const,\n duration: \"auto\",\n easing: \"ease\",\n };\n const transitionType = end.instance.transitionType;\n const startTransform = `translate(${startRect.x}px, ${startRect.y}px)`;\n const endTransform = `translate(${endRect.x}px, ${endRect.y}px)`;\n switch (transitionType) {\n case \"fade\":\n keyframeEffects.push(\n new KeyframeEffect(\n start.clone,\n [\n { transform: startTransform, opacity: 1 },\n { transform: endTransform, opacity: 0 }\n ],\n config\n ),\n );\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n { transform: startTransform },\n { transform: endTransform }\n ],\n config\n ),\n\n );\n break;\n case \"fade-through\":\n keyframeEffects.push(\n new KeyframeEffect(\n start.clone,\n [\n { transform: startTransform, opacity: 1 },\n { opacity: 0, offset: 0.5 },\n { transform: endTransform, opacity: 0 }\n ],\n config\n ),\n\n );\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n { transform: startTransform, opacity: 0 },\n { opacity: 0, offset: 0.5 },\n { transform: endTransform, opacity: 1 }\n ],\n config\n ),\n\n );\n break;\n case \"cross-fade\":\n end.clone.style.mixBlendMode = \"plus-lighter\";\n keyframeEffects.push(\n new KeyframeEffect(\n start.clone,\n [\n { transform: startTransform, opacity: 1 },\n { transform: endTransform, opacity: 0 }\n ],\n config\n ),\n\n );\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n { transform: startTransform },\n { transform: endTransform }\n ],\n config\n ),\n\n );\n break;\n case \"morph\": {\n const styleList = Array.from(new Set([...start.instance.styles, ...end.instance.styles]));\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n {\n ...Object.fromEntries((start.instance.ref.current?.firstElementChild as HTMLElement).attributeStyleMap),\n transform: startTransform,\n width: `${startRect.width}px`,\n height: `${startRect.height}px`,\n },\n {\n ...Object.fromEntries((end.instance.ref.current?.firstElementChild as HTMLElement).attributeStyleMap),\n ...this.getKeyframeProperties(end.instance.ref.current?.firstElementChild as HTMLElement, styleList),\n transform: endTransform,\n width: `${endRect.width}px`,\n height: `${endRect.height}px`,\n }\n ],\n config\n )\n );\n break;\n }\n }\n return new ParallelEffect(keyframeEffects);\n }\n\n get animationEffect() {\n const currentScene = this.outgoingScreen?.current?.sharedElementScene;\n const nextScene = this.incomingScreen?.current?.sharedElementScene;\n if (!currentScene || !nextScene) return null;\n if (currentScene === nextScene) return null;\n currentScene.previousScene = null;\n nextScene.previousScene = currentScene;\n const parallelEffects = new Array<ParallelEffect>();\n for (const [id, end] of Array.from(nextScene.nodes.entries())) {\n const start = currentScene.nodes.get(id);\n if (!start?.canTransition || !end.canTransition) continue;\n const endClone = end.clone();\n const startClone = start.clone();\n if (!startClone || !endClone) continue;\n const styleList = Array.from(new Set([...start.styles, ...end.styles, 'width' as const, 'height' as const]));\n if (end.transitionType !== \"morph\") {\n startClone.id = `${id}-start`;\n startClone.style.position = \"absolute\";\n this.copyStyles(start.ref.current?.firstElementChild, startClone, styleList);\n this.copyStyles(end.ref.current?.firstElementChild, endClone, styleList);\n this.ref.current?.prepend(startClone);\n } else if (isStylableElement(start.ref.current?.firstElementChild)) {\n this.copyStyles(start.ref.current.firstElementChild, endClone, styleList);\n }\n\n endClone.id = `${id}${end.transitionType === \"morph\" ? '' : '-end'}`;\n endClone.style.position = \"absolute\";\n this.ref.current?.prepend(endClone);\n start.hide();\n end.hide();\n const onFinish = async () => {\n if (this.props.direction === \"forwards\")\n end.unhide();\n else\n start.unhide();\n endClone.remove();\n startClone.remove();\n };\n this.props.navigation.addEventListener('transition-end', onFinish, { once: true });\n this.props.navigation.addEventListener('transition-cancel', onFinish, { once: true });\n\n parallelEffects.push(this.getAnimationEffect(\n { instance: start, clone: startClone },\n { instance: end, clone: endClone }\n ));\n }\n\n return new ParallelEffect(parallelEffects);\n }\n\n render() {\n return (\n <dialog className=\"shared-element-layer\" ref={this.ref} style={{\n position: 'absolute',\n maxWidth: 'unset',\n maxHeight: 'unset',\n width: '100vw',\n height: '100vh',\n contain: 'strict',\n padding: 0,\n border: 'none',\n backgroundColor: 'transparent',\n isolation: 'isolate'\n }}>\n <style>{\".shared-element-layer::backdrop {display: none}\"}</style>\n </dialog>\n );\n }\n}","import { createContext } from \"react\";\n\nexport const MotionContext = createContext(0);","import { Component, RefObject, createRef } from 'react';\nimport { MotionProgressEvent, TransitionCancelEvent, TransitionEndEvent, TransitionStartEvent } from './common/events';\nimport { SharedElementTransitionLayer } from './SharedElementTransitionLayer';\nimport { ParallelEffect, Animation } from 'web-animations-extension';\nimport { ScreenTransitionLayerContext } from './ScreenTransitionLayerContext';\nimport { ScreenChild } from './common/types';\nimport { NavigationBase } from './NavigationBase';\nimport { ScreenBase } from './ScreenBase';\nimport { MotionContext } from './MotionContext';\n\ninterface ScreenTransitionLayerProps {\n children: ScreenChild | ScreenChild[];\n navigation: NavigationBase;\n}\n\ninterface ScreenTransitionLayerState {\n gestureNavigating: boolean;\n progress: number;\n}\n\nexport class ScreenTransitionLayer extends Component<ScreenTransitionLayerProps, ScreenTransitionLayerState> {\n public readonly sharedElementTransitionLayer = createRef<SharedElementTransitionLayer>();\n public readonly animation: Animation = new Animation();\n #direction: PlaybackDirection = \"normal\";\n #screens: RefObject<ScreenBase>[] = new Array();\n\n state: ScreenTransitionLayerState = {\n gestureNavigating: false,\n progress: 1\n }\n\n private onAnimationFrame() {\n const progress = this.animation.effect?.getComputedTiming().progress;\n\n if (progress)\n this.onProgress(progress);\n\n if (this.animation.playState === \"running\")\n requestAnimationFrame(this.onAnimationFrame.bind(this));\n }\n\n private onTransitionCancel() {\n this.props.navigation.dispatchEvent(new TransitionCancelEvent());\n }\n\n private onTransitionStart() {\n this.props.navigation.dispatchEvent(new TransitionStartEvent());\n\n this.onAnimationFrame();\n }\n\n private onTransitionEnd() {\n this.props.navigation.dispatchEvent(new TransitionEndEvent());\n }\n\n private onProgress(progress: number) {\n this.setState({ progress });\n this.props.navigation.dispatchEvent(new MotionProgressEvent(progress));\n }\n\n get screens() {\n return this.#screens;\n }\n\n set screens(screens: RefObject<ScreenBase>[]) {\n this.#screens = screens;\n }\n\n set direction(direction: PlaybackDirection) {\n this.#direction = direction;\n this.animation.effect?.updateTiming({ direction });\n }\n\n get direction() {\n return this.#direction;\n }\n\n public transition() {\n const effect = new ParallelEffect(\n this.screens.map(screen => {\n return screen.current?.transitionProvider?.current?.animationEffect ?? null;\n }).filter((effect): effect is AnimationEffect => effect !== null)\n );\n\n const sharedElementEffect = this.sharedElementTransitionLayer.current?.animationEffect;\n const duration = effect.getComputedTiming().duration;\n if (sharedElementEffect) {\n sharedElementEffect.updateTiming({\n duration: duration instanceof CSSNumericValue ? duration.to('ms').value : duration\n });\n effect.append(sharedElementEffect);\n this.sharedElementTransitionLayer.current?.ref.current?.showModal();\n }\n\n this.animation.effect = effect;\n\n this.animation.play();\n this.onTransitionStart();\n\n this.animation.oncancel = () => {\n this.sharedElementTransitionLayer.current?.ref.current?.close();\n this.onTransitionCancel();\n this.animation.effect = null;\n }\n this.animation.finished.then(() => {\n this.animation.commitStyles();\n this.onTransitionEnd();\n this.sharedElementTransitionLayer.current?.ref.current?.close();\n this.animation.effect = null;\n });\n\n return this.animation;\n }\n\n render() {\n return (\n <ScreenTransitionLayerContext.Provider value={this}>\n <SharedElementTransitionLayer\n ref={this.sharedElementTransitionLayer}\n navigation={this.props.navigation}\n direction={this.animation.playbackRate > 0 ? \"forwards\" : \"backwards\"}\n />\n <div\n className=\"screen-transition-layer\"\n style={{\n width: '100%',\n height: '100%',\n display: 'grid',\n contain: 'layout',\n isolation: 'isolate',\n '--motion-progress': this.state.progress\n } as React.CSSProperties}\n >\n <MotionContext.Provider value={this.state.progress}>\n {this.props.children}\n </MotionContext.Provider>\n </div>\n </ScreenTransitionLayerContext.Provider>\n );\n }\n}","import { NavigationBase } from './NavigationBase';\nimport { ScreenTransitionLayer } from './ScreenTransitionLayer';\nimport {\n ScreenChild,\n RouterBaseEventMap,\n RouterHTMLElement,\n ScreenState\n} from './common/types';\nimport { NestedRouterContext, RouterContext } from './RouterContext';\nimport { dispatchEvent, matchRoute, resolveBaseURLFromPattern } from './common/utils';\nimport { Component, createRef, isValidElement, Children } from 'react';\nimport { ScreenBase, ScreenBaseConfig } from './ScreenBase';\nimport { LoadEvent } from './common/events';\n\nexport interface RouterBaseConfig {\n screenConfig?: ScreenBaseConfig;\n basePath?: string;\n}\n\nexport interface RouterBaseProps<S extends ScreenBase = ScreenBase> {\n id?: string;\n config?: RouterBaseConfig;\n children: ScreenChild<S> | ScreenChild<S>[];\n}\n\nexport interface RouterBaseState {}\n\nexport abstract class RouterBase<P extends RouterBaseProps = RouterBaseProps, S extends RouterBaseState = RouterBaseState, E extends RouterBaseEventMap = RouterBaseEventMap> extends Component<P, S> {\n protected readonly ref = createRef<RouterHTMLElement<E>>();\n protected screenTransitionLayer = createRef<ScreenTransitionLayer>();\n public abstract readonly navigation: NavigationBase;\n public readonly parent: RouterBase | null = null;\n #child: WeakRef<RouterBase> | null = null;\n private loadDispatched = false;\n public readonly parentScreen: ScreenBase | null = null;\n private static rootRouterRef: WeakRef<RouterBase> | null = null;\n static readonly contextType = NestedRouterContext;\n declare context: React.ContextType<typeof NestedRouterContext>;\n\n constructor(props: P, context: React.ContextType<typeof NestedRouterContext>) {\n super(props);\n\n this.parentScreen = context?.parentScreen ?? null;\n this.parent = context?.parentRouter ?? null;\n if (this.parent) {\n this.parent.child = this;\n }\n if (this.isRoot) {\n RouterBase.rootRouterRef = new WeakRef(this);\n }\n }\n\n componentDidMount() {\n if (this.isRoot) {\n window.navigation.addEventListener('navigate', this.handleNavigationDispatch);\n }\n\n if (!this.loadDispatched) {\n window.navigation.dispatchEvent(new LoadEvent());\n this.loadDispatched = true;\n }\n }\n\n componentWillUnmount() {\n if (this.isRoot) {\n window.navigation.removeEventListener('navigate', this.handleNavigationDispatch);\n }\n }\n\n private handleNavigationDispatch = (e: NavigateEvent) => {\n if (!this.canIntercept(e)) return;\n let router: RouterBase = this;\n // travel down router tree to find the correct router\n while (router.child?.canIntercept(e)) {\n router = router.child;\n }\n router.intercept(e);\n }\n\n getRouterById(routerId: string, target?: RouterBase): RouterBase | null {\n const router = target ?? RouterBase.rootRouterRef?.deref();\n if (router!.id === routerId) {\n return router ?? null;\n } else if (router?.child) {\n return this.getRouterById(routerId, router!.child);\n } else {\n return null;\n }\n }\n\n dispatchEvent(event: Event) {\n const ref = this.ref.current ?? undefined;\n return dispatchEvent(event, ref);\n }\n\n addEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | AddEventListenerOptions): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n\taddEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void {\n return this.ref.current?.addEventListener(type, listener, options);\n }\n\n removeEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | EventListenerOptions | undefined): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions) {\n return this.ref.current?.removeEventListener(type, listener, options);\n }\n\n public preloadRoute(pathname: string) {\n return new Promise<boolean>((resolve, reject) => {\n let found = false;\n const routes = this.props.children;\n Children.forEach<ScreenChild>(routes, (route) => {\n if (found) return; // stop after first\n if (!isValidElement(route)) return;\n const { path, caseSensitive } = route.props;\n const baseURLPattern = this.baseURLPattern.pathname;\n const matchInfo = matchRoute(path, pathname, baseURLPattern, caseSensitive);\n if (!matchInfo) return;\n found = true;\n const config = route.props.config;\n queueMicrotask(async () => {\n const preloadTasks = [];\n if ('load' in route.props.component) {\n preloadTasks.push(route.props.component.load());\n }\n if (config?.header?.component && 'load' in config?.header?.component) {\n preloadTasks.push(config?.header?.component.load());\n }\n if (config?.footer?.component && 'load' in config?.footer?.component) {\n preloadTasks.push(config?.footer?.component.load());\n }\n try {\n await Promise.all(preloadTasks);\n resolve(found);\n } catch (e) {\n reject(e);\n }\n });\n });\n if (!found)\n resolve(false);\n });\n }\n\n get id(): string {\n if (this.props.id) return this.props.id;\n const prefix = this.parent ? `${this.parent.id}-` : '';\n const id = (this.parentScreen?.path ?? 'root')\n .toLowerCase()\n .replace(/[^\\w-]/g, '-') // Remove non-alphanumeric chars\n .replace(/-+/g, '-') // Replace multiple hyphens with a single one\n .replace(/^-|-$/g, ''); // Remove leading and trailing hyphens\n return `${prefix}${id}`;\n }\n\n get isRoot() {\n return !this.parent;\n }\n\n get baseURL() {\n const pathname = this.isRoot ? window.location.pathname : this.parentScreen?.resolvedPathname!;\n const pattern = this.baseURLPattern.pathname;\n\n return resolveBaseURLFromPattern(pattern, pathname)!;\n }\n\n get baseURLPattern() {\n let baseURL = window.location.origin + \"/\";\n const defaultBasePathname = this.isRoot ? new URL(\".\", document.baseURI).href.replace(baseURL, '') : \".\";\n let basePathname = this.props.config?.basePath ?? defaultBasePathname;\n\n if (this.parent && this.parentScreen) {\n const { resolvedPathname = window.location.pathname, path } = this.parentScreen;\n const parentBaseURL = this.parent.baseURL?.href;\n const pattern = new URLPattern({ baseURL: parentBaseURL, pathname: path });\n baseURL = resolveBaseURLFromPattern(\n pattern.pathname,\n resolvedPathname\n )!.href;\n }\n\n return new URLPattern({ baseURL, pathname: basePathname });\n }\n\n get pathPatterns() {\n return Children.map(this.props.children, (child) => {\n return { pattern: child.props.path, caseSensitive: Boolean(child.props.caseSensitive) };\n });\n }\n\n get mounted() {\n return Boolean(this.ref.current);\n }\n\n get child() {\n return this.#child?.deref() ?? null;\n }\n\n set child(child: RouterBase | null) {\n const currentChildRouter = this.#child?.deref();\n if (\n currentChildRouter\n && child?.id !== currentChildRouter?.id\n && currentChildRouter?.mounted\n ) {\n throw new Error(\"It looks like you have two navigators at the same level. Try simplifying your navigation structure by using a nested router instead.\");\n }\n if (child)\n this.#child = new WeakRef(child);\n else\n this.#child = null;\n }\n\n protected abstract canIntercept(navigateEvent: NavigateEvent): boolean;\n protected abstract shouldIntercept(navigateEvent: NavigateEvent): boolean;\n protected abstract intercept(navigateEvent: NavigateEvent): void;\n protected abstract get screens(): P[\"children\"];\n\n render() {\n if (!this.navigation) return;\n return (\n <div\n id={this.id}\n className=\"react-motion-router\"\n style={{ width: '100%', height: '100%' }}\n ref={this.ref}\n >\n <RouterContext.Provider value={this}>\n <ScreenTransitionLayer\n ref={this.screenTransitionLayer}\n navigation={this.navigation}\n >\n {this.screens}\n </ScreenTransitionLayer>\n </RouterContext.Provider>\n </div>\n );\n }\n}","import { MetaKey, MetaType, MetaTypeKey } from \"./common/types\";\n\nexport class MetaData {\n #map = new Map<MetaKey, string | undefined>();\n private mutationObserver: MutationObserver;\n\n constructor() {\n this.mutationObserver = new MutationObserver(this.observeMutations.bind(this));\n const {head} = document;\n this.mutationObserver.observe(head, {\n childList: true\n });\n\n Array.from(head.querySelectorAll('meta')).forEach(node => {\n this.mutationObserver.observe(node, {\n attributes: true\n });\n });\n\n Array.from(head.querySelectorAll('meta')).forEach(this.metaDataFromNode.bind(this));\n }\n\n get(key: string | MetaType) {\n const metaKey = this.getMetaKey(key);\n\n const metaContent = this.#map.get(metaKey);\n if (!metaContent) return undefined;\n\n let content: string | [string, string][];\n if (metaContent.includes(',') && metaContent.includes('=')) {\n content = metaContent.split(/,\\s*/).map(keyVal => keyVal.split('=') as [string, string]);\n } else {\n content = metaContent;\n }\n\n return content;\n }\n\n set(key: string | MetaType, content?: string | [string, string][]) {\n const metaKey = this.getMetaKey(key);\n const metaContent = this.getMetaContent(content);\n\n this.#map.set(metaKey, metaContent);\n this.updateMetaElement(metaKey, metaContent);\n }\n\n has(key: string | MetaType) {\n const metaKey = this.getMetaKey(key);\n\n return this.#map.has(metaKey);\n }\n\n delete(key: string | MetaType) {\n const metaKey = this.getMetaKey(key);\n\n this.#map.delete(metaKey);\n document.head.querySelector(`meta[${metaKey}]`)?.remove();\n }\n\n clear() {\n document.head.querySelectorAll('meta').forEach(node => node.remove());\n }\n\n entries() {\n return this.#map.entries();\n }\n\n [Symbol.iterator]() {\n return this.entries();\n }\n\n get size() {\n return this.#map.size;\n }\n \n private observeMutations(mutations: MutationRecord[]) {\n for (const mutation of mutations) {\n if (mutation.type === 'attributes') {\n const node = mutation.target;\n\n this.metaDataFromNode(node as HTMLMetaElement);\n }\n\n if (mutation.type !== 'childList') return;\n\n mutation.removedNodes.forEach((node) => {\n if (node.nodeName === 'META') {\n const [type] = Array.from((node as HTMLMetaElement).attributes).filter(attribute => attribute.nodeName !== \"content\");\n const metaType: MetaType = [type.nodeName as MetaTypeKey, type.value];\n\n const key = metaType.join('=') as MetaKey;\n if (this.#map.has(key)) {\n this.#map.delete(key);\n }\n }\n });\n mutation.addedNodes.forEach(node => {\n if (node.nodeName === 'META') {\n this.metaDataFromNode(node as HTMLMetaElement);\n }\n });\n }\n }\n\n private metaDataFromNode(node: HTMLMetaElement) {\n const [type] = Array.from((node as HTMLMetaElement).attributes).filter(attribute => attribute.nodeName !== \"content\");\n const [content] = Array.from((node as HTMLMetaElement).attributes).filter(attribute => attribute.nodeName === \"content\");\n const metaType: MetaType = [type.nodeName as MetaTypeKey, type.value];\n\n const key = metaType.join('=') as MetaKey;\n this.#map.set(key, content?.value);\n }\n\n private getMetaKey(key: string | MetaType) {\n let metaKey: MetaKey;\n if (typeof key === \"string\") {\n metaKey = `name=${key}` as MetaKey;\n } else {\n metaKey = key.join('=') as MetaKey;\n }\n\n return metaKey;\n }\n\n private getMetaContent(content: string | [string, string][] | undefined) {\n if (!content) return undefined;\n\n let metaContent: string;\n if (typeof content === \"string\") {\n metaContent = content;\n } else {\n metaContent = content.map(contentTuple => contentTuple.join('=')).join(', ');\n }\n\n return metaContent;\n }\n\n private updateMetaElement(key: MetaKey, content?: string) {\n const meta = document.querySelector(`meta[${key}]`) || document.createElement('meta');\n const metaType = key.split('=') as MetaType;\n\n meta.setAttribute(...metaType);\n if (content) meta.setAttribute('content', content);\n else meta.removeAttribute('content');\n\n if (!meta.parentElement) {\n document.head.appendChild(meta);\n }\n }\n}","import { RouterHTMLElement, RouterBaseEventMap } from \"./common/types\";\nimport { MetaData } from \"./MetaData\";\nimport { RouterBase } from \"./RouterBase\";\n\nexport abstract class NavigationBase<E extends RouterBaseEventMap = RouterBaseEventMap> {\n protected abstract readonly router: RouterBase;\n private static rootNavigatorRef: WeakRef<NavigationBase> | null = null;\n public readonly metaData = new MetaData();\n\n constructor() {\n const rootNavigator = NavigationBase.rootNavigatorRef?.deref();\n if (!rootNavigator || !rootNavigator.isInDocument)\n NavigationBase.rootNavigatorRef = new WeakRef(this);\n }\n\n addEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | AddEventListenerOptions): () => void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): () => void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): () => void {\n this.router.addEventListener(type, listener, options);\n return () => this.router.removeEventListener(type, listener, options);\n }\n\n removeEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | EventListenerOptions | undefined): void\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void {\n return this.router.removeEventListener(type, listener, options);\n }\n\n dispatchEvent(event: Event) {\n return this.router.dispatchEvent?.(event);\n }\n\n get parent(): NavigationBase | null {\n return this.router.parent?.navigation ?? null;\n }\n\n get routerId() {\n return this.router.id;\n }\n\n get baseURL() {\n return this.router.baseURL;\n }\n\n get baseURLPattern() {\n return this.router.baseURLPattern;\n }\n\n public getNavigatorById(routerId: string) {\n return this.router.getRouterById(routerId)?.navigation ?? null;\n }\n\n public preloadRoute(path: string) {\n const { pathname } = new URL(path, this.baseURL);\n return this.router.preloadRoute(pathname);\n }\n\n private get isInDocument() {\n return Boolean(document.getElementById(`${this.routerId}`));\n }\n}","import { useContext, useDebugValue } from \"react\";\nimport { MotionContext } from \"../MotionContext\";\nimport { NavigationBase } from \"../NavigationBase\";\nimport { RouterContext } from \"../RouterContext\";\nimport { RoutePropContext } from \"../RoutePropContext\";\nimport { RouterBase } from \"../RouterBase\";\nimport { RoutePropBase } from \"./types\";\n\nexport function useNavigationBase<T extends NavigationBase = NavigationBase>() {\n const router = useContext(RouterContext);\n if (router) {\n return router.navigation as T;\n } else {\n throw new Error(\"Router is null. You may be trying to call useNavigation outside a Router.\");\n }\n}\n\nexport function useRouterBase<T extends RouterBase = RouterBase>() {\n return useContext(RouterContext) as T;\n}\n\nexport function useMotion() {\n useDebugValue(\"Motion\");\n return useContext(MotionContext);\n}\n\nexport function useRouteBase<R extends RoutePropBase>() {\n const routeProp = useContext(RoutePropContext);\n if (routeProp) {\n return routeProp as R;\n } else {\n throw new Error(\"Router is null. You may be trying to call useRoute outside a Router.\");\n }\n}","export const MAX_Z_INDEX = 2147483647;\nexport const MAX_PROGRESS = 100;\nexport const MIN_PROGRESS = 0;\nexport const MIN_NORM_PROGRESS = 0;\nexport const MAX_NORM_PROGRESS = 1;","/// <reference types=\"urlpattern-polyfill\" />\nexport * from './SharedElement';\nexport * from './RouterBase';\nexport * from './ScreenBase';\nexport * from './NavigationBase';\nexport * from './MotionContext';\nexport * from './RouterContext';\nexport * from './common/hooks';\nexport * from './common/types';\nexport * from './common/events';\nexport * from './common/utils';\nexport * from './common/constants';"],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"index.js","mappings":"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","sources":["webpack://@react-motion-router/core/../../node_modules/react/cjs/react-jsx-runtime.production.min.js","webpack://@react-motion-router/core/../../node_modules/react/jsx-runtime.js","webpack://@react-motion-router/core/./src/common/utils.ts","webpack://@react-motion-router/core/external module \"react\"","webpack://@react-motion-router/core/webpack/bootstrap","webpack://@react-motion-router/core/webpack/runtime/define property getters","webpack://@react-motion-router/core/webpack/runtime/hasOwnProperty shorthand","webpack://@react-motion-router/core/./src/SharedElementSceneContext.ts","webpack://@react-motion-router/core/./src/SharedElement.tsx","webpack://@react-motion-router/core/./src/common/events.ts","webpack://@react-motion-router/core/./src/ScreenTransitionLayerContext.tsx","webpack://@react-motion-router/core/./src/ScreenTransitionProvider.tsx","webpack://@react-motion-router/core/./src/RouterContext.ts","webpack://@react-motion-router/core/./src/RoutePropContext.ts","webpack://@react-motion-router/core/./src/SharedElementScene.ts","webpack://@react-motion-router/core/./src/ScreenBase.tsx","webpack://@react-motion-router/core/./src/common/types.ts","webpack://@react-motion-router/core/external module \"web-animations-extension\"","webpack://@react-motion-router/core/./src/SharedElementTransitionLayer.tsx","webpack://@react-motion-router/core/./src/MotionContext.ts","webpack://@react-motion-router/core/./src/ScreenTransitionLayer.tsx","webpack://@react-motion-router/core/./src/RouterBase.tsx","webpack://@react-motion-router/core/./src/MetaData.ts","webpack://@react-motion-router/core/./src/NavigationBase.ts","webpack://@react-motion-router/core/./src/common/hooks.ts","webpack://@react-motion-router/core/./src/common/constants.ts","webpack://@react-motion-router/core/./src/index.ts"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f=require(\"react\"),k=Symbol.for(\"react.element\"),l=Symbol.for(\"react.fragment\"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=\"\"+g);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { cloneElement, lazy as ReactLazy } from \"react\";\nimport { ClonedElementType, ElementPropType, LazyExoticComponent, MatchedRoute, PathPattern } from \"./types\";\n\nexport function resolveBaseURLFromPattern(pattern: string, pathname: string) {\n if (!pattern.endsWith(\"**\")) pattern += '**'; // allows us to match nested routes\n const origin = window.location.origin;\n const baseURLMatch = new URLPattern(pattern, origin).exec(pathname, origin);\n if (!baseURLMatch) return null;\n\n const nestedPathnameGroup = baseURLMatch.pathname.groups[1] ?? '';\n // derive concrete baseURL\n return new URL(pathname.replace(nestedPathnameGroup, ''), window.location.origin);\n}\n\nexport function matchRoute(\n pathnamePattern: string,\n pathname: string,\n baseURLPattern: string = `${window.location.origin}/`,\n caseSensitive: boolean = true\n): MatchedRoute | null {\n if (!caseSensitive) {\n pathnamePattern = pathnamePattern.toLowerCase();\n pathname = pathname.toLowerCase();\n }\n\n const baseURL = resolveBaseURLFromPattern(baseURLPattern, pathname)?.href;\n if (!baseURL) return null;\n\n const match = new URLPattern({ baseURL, pathname: pathnamePattern }).exec({ pathname, baseURL });\n const params = match?.pathname.groups ?? {};\n if (match) {\n return {\n params\n };\n }\n return null;\n}\n\nexport function includesRoute(pathnamePatterns: PathPattern[], pathname: string, baseURL: string = window.location.origin) {\n return pathnamePatterns.some(({ pattern, caseSensitive }) => matchRoute(pattern, pathname, baseURL, caseSensitive));\n}\n\nexport function dispatchEvent<T>(event: CustomEvent<T> | Event, target: HTMLElement | EventTarget = window) {\n return new Promise<boolean>((resolve) => {\n queueMicrotask(() => resolve(\n target.dispatchEvent(event)\n ));\n });\n}\n\nexport function lazy<T extends React.ComponentType<any>>(\n factory: () => Promise<{ default: T }>\n): LazyExoticComponent<T> {\n const Component = ReactLazy(factory) as LazyExoticComponent<T>;\n Component.load = async () => {\n Component.module ??= await factory();\n return Component.module;\n };\n return Component;\n}\n\nexport function isNavigationSupported() {\n return Boolean(window.navigation);\n}\n\nexport function isURLPatternSupported() {\n // @ts-ignore: Property 'UrlPattern' does not exist \n return Boolean(globalThis.URLPattern);\n}\n\nexport async function polyfillURLPattern() {\n const { URLPattern } = await import(/*webpackIgnore: true*/ \"urlpattern-polyfill\");\n // @ts-ignore: Property 'UrlPattern' does not exist \n globalThis.URLPattern = URLPattern;\n}\n\nexport async function polyfillNavigation() {\n const { applyPolyfill } = await import(/*webpackIgnore: true*/ \"@virtualstate/navigation\");\n applyPolyfill({\n history: true,\n interceptEvents: true,\n patch: true,\n persist: true,\n persistState: true\n });\n}\n\nexport async function PromiseAllDynamic<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>[]> {\n const awaited = [];\n for (const value of values) {\n awaited.push(await value);\n }\n\n return awaited;\n}\n\nexport function toCamelCase(value: string) {\n return value.replace(/-([a-z])/g, (g) => g[1].toUpperCase())\n}\n\nexport function cloneAndInject<\n C extends React.CElement<any, any>,\n IP extends Partial<ElementPropType<C>>\n>(element: C, injectProps: IP) {\n return cloneElement(element, injectProps) as ClonedElementType<C, IP>;\n}","var x = y => { var x = {}; __webpack_require__.d(x, y); return x; }\nvar y = x => () => x\nmodule.exports = __WEBPACK_EXTERNAL_MODULE_react__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","import { createContext } from \"react\";\nimport { SharedElementScene } from \"./SharedElementScene\";\n\nexport const SharedElementSceneContext = createContext<SharedElementScene>(null!);","import { Component, createRef } from 'react';\nimport { SharedElementTransitionType, StyleKeyList } from './common/types';\nimport { SharedElementSceneContext } from './SharedElementSceneContext';\n\ninterface SharedElementConfig extends OptionalEffectTiming {\n type?: SharedElementTransitionType;\n transformOrigin?: React.CSSProperties[\"transformOrigin\"];\n styles?: StyleKeyList;\n deepClone?: boolean;\n}\n\ninterface SharedElementProps {\n id: string;\n children: React.ReactElement;\n disabled?: boolean;\n config?: SharedElementConfig;\n}\n\ninterface SharedElementState {}\n\nexport class SharedElement extends Component<SharedElementProps, SharedElementState> {\n public readonly ref = createRef<HTMLDivElement>();\n static readonly contextType = SharedElementSceneContext;\n declare context: React.ContextType<typeof SharedElementSceneContext>;\n\n componentDidMount(): void {\n this.scene.addNode(this);\n }\n\n componentDidUpdate(prevProps: SharedElementProps) {\n if (this.props.id !== prevProps.id) {\n this.scene.removeNode(prevProps.id.toString());\n this.scene.addNode(this);\n }\n }\n\n componentWillUnmount(): void {\n this.scene.removeNode(this.id);\n }\n\n get styles(): StyleKeyList {\n if (this.props.config?.styles) {\n return this.props.config.styles;\n }\n return [];\n }\n\n get canTransition() {\n return !this.props.disabled\n && this.scene.canTransition;\n }\n\n get scene() {\n return this.context;\n }\n\n get id() {\n return `shared-element-${this.props.id.toString()}`;\n }\n\n get transitionType(): SharedElementTransitionType {\n return this.props.config?.type ?? this.scene.previousScene?.nodes.get(this.id)?.transitionType ?? \"morph\";\n }\n\n getBoundingClientRect() {\n return this.ref.current?.firstElementChild?.getBoundingClientRect() ?? new DOMRect();\n }\n\n public clone() {\n if (!this.ref.current) return null;\n const deepClone = this.props.config?.deepClone ?? true;\n return this.ref.current.firstElementChild?.cloneNode(deepClone) as HTMLElement;\n }\n\n public hide() {\n if (!this.ref.current) return;\n this.ref.current.style.visibility = 'hidden';\n }\n\n public unhide() {\n if (!this.ref.current) return;\n this.ref.current.style.visibility = 'visible';\n }\n\n render() {\n return (\n <div\n ref={this.ref}\n id={this.id}\n style={{ display: \"contents\" }}\n >\n {this.props.children}\n </div>\n );\n }\n}","import { LoadNavigationTransition } from \"./types\";\nimport { PromiseAllDynamic } from \"./utils\";\n\nexport class TransitionStartEvent extends Event {\n\tconstructor() {\n\t\tsuper('transition-start');\n\t}\n}\n\nexport class TransitionCancelEvent extends Event {\n\tconstructor() {\n\t\tsuper('transition-cancel');\n\t}\n}\n\nexport class TransitionEndEvent extends Event {\n\tconstructor() {\n\t\tsuper('transition-end');\n\t}\n}\n\nexport class MotionProgressStartEvent extends Event {\n\tconstructor() {\n\t\tsuper('motion-progress-start');\n\t}\n}\n\nexport class MotionProgressEvent extends Event {\n\treadonly progress: number;\n\n\tconstructor(progress: number) {\n\t\tsuper('motion-progress');\n\t\tthis.progress = progress;\n\t}\n}\n\nexport class MotionProgressEndEvent extends Event {\n\tconstructor() {\n\t\tsuper('motion-progress-end');\n\t}\n}\n\nexport class LoadEvent extends Event implements Omit<NavigateEvent, 'navigationType' | 'commit'> {\n\t#navigationType = \"load\" as const;\n\t#userInitiated: boolean = false;\n\t#canIntercept: boolean = true;\n\t#hashChange: boolean = false;\n\t#formData: FormData | null = null;\n\t#downloadRequest: string | null = null;\n\t#destination: NavigationDestination;\n\t#signal: AbortSignal;\n\t#abortable = new AbortController();\n\t#intercepted = false;\n\t#thenables: Promise<void>[] = [];\n\t#transition: LoadNavigationTransition | null = null;\n\treadonly hasUAVisualTransition = false;\n\n\tconstructor() {\n\t\tsuper('navigate', { cancelable: false, bubbles: false, composed: false });\n\t\tconst currentEntry = window.navigation.currentEntry;\n\t\tif (!currentEntry) throw new Error(\"Current entry is null\");\n\t\tthis.#destination = {\n\t\t\tgetState() {\n\t\t\t\treturn currentEntry.getState();\n\t\t\t},\n\t\t\turl: currentEntry.url ?? new URL(window.location.href).href,\n\t\t\tkey: currentEntry.key,\n\t\t\tindex: currentEntry.index,\n\t\t\tid: currentEntry.id,\n\t\t\tsameDocument: true\n\t\t};\n\n\t\tthis.#signal = this.#abortable.signal;\n\t\twindow.navigation.addEventListener('navigate', this.#onNavigate, { signal: this.#signal });\n\t}\n\n\t#onNavigate = (e: Event) => {\n\t\tif (e !== this) {\n\t\t\tthis.#abortable.abort();\n\t\t} else if (!this.#thenables.length) {\n\t\t\twindow.navigation.removeEventListener('navigate', this.#onNavigate);\n\t\t}\n\t}\n\n\tintercept(options?: NavigationInterceptOptions | undefined): void {\n\t\tif (this.#intercepted) throw new DOMException(\"Failed to execute 'intercept' on 'NavigateEvent': intercept() may only be called while the navigate event is being dispatched.\");\n\t\tlet finish: Function | null = null;\n\t\tif (!this.#transition) {\n\t\t\tthis.#transition = {\n\t\t\t\tfinished: new Promise((resolve) => finish = resolve),\n\t\t\t\tfrom: window.navigation.currentEntry!,\n\t\t\t\tnavigationType: \"load\" as const\n\t\t\t};\n\t\t}\n\t\tconst thenable = options?.handler?.();\n\t\tif (thenable) this.#thenables.push(thenable);\n\t\tif (this.#thenables.length === 1) {\n\t\t\tPromiseAllDynamic(this.#thenables).then(() => {\n\t\t\t\tthis.#intercepted = true;\n\t\t\t\twindow.removeEventListener('navigate', this.#onNavigate);\n\t\t\t\tfinish?.();\n\t\t\t});\n\t\t}\n\t}\n\n\tscroll(): void {\n\t\tthrow new Error(\"Method not implemented.\");\n\t}\n\n\tget transition() {\n\t\treturn this.#transition;\n\t}\n\n\tget navigationType() {\n\t\treturn this.#navigationType;\n\t}\n\n\tget userInitiated() {\n\t\treturn this.#userInitiated;\n\t}\n\n\tget canIntercept() {\n\t\treturn this.#canIntercept;\n\t}\n\n\tget hashChange() {\n\t\treturn this.#hashChange;\n\t}\n\n\tget formData() {\n\t\treturn this.#formData;\n\t}\n\n\tget downloadRequest() {\n\t\treturn this.#downloadRequest;\n\t}\n\n\tget destination() {\n\t\treturn this.#destination;\n\t}\n\n\tget signal() {\n\t\treturn this.#signal;\n\t}\n}","import { createContext } from \"react\";\nimport { ScreenTransitionLayer } from \"./ScreenTransitionLayer\";\n\nexport const ScreenTransitionLayerContext = createContext<ScreenTransitionLayer>(null!);\n","import { ScreenTransitionLayerContext } from './ScreenTransitionLayerContext';\nimport { AnimationEffectFactory } from './common/types';\nimport { NavigationBase } from './NavigationBase';\nimport { Component, ElementType, createRef } from 'react';\n\ninterface ScreenTransitionProviderProps {\n id: string;\n animation?: AnimationEffectFactory;\n children: React.ReactNode\n navigation: NavigationBase;\n renderAs: ElementType;\n focused: boolean;\n}\n\ninterface ScreenTransitionProviderState {\n zIndex: React.CSSProperties[\"zIndex\"];\n}\n\nexport class ScreenTransitionProvider extends Component<ScreenTransitionProviderProps, ScreenTransitionProviderState> {\n public readonly ref = createRef<HTMLElement>();\n static readonly contextType = ScreenTransitionLayerContext;\n declare context: React.ContextType<typeof ScreenTransitionLayerContext>;\n public index = 0;\n public exiting = false;\n\n state: ScreenTransitionProviderState = {\n zIndex: 'unset',\n }\n\n private onAnimationEnd = () => {\n if (this.ref.current) {\n this.ref.current.style.willChange = 'auto';\n this.ref.current.style.pointerEvents = 'auto';\n }\n }\n\n private onAnimationStart = () => {\n if (this.ref.current) {\n this.ref.current.style.willChange = 'transform, opacity';\n this.ref.current.style.pointerEvents = 'none';\n }\n }\n\n componentDidMount() {\n this.props.navigation.addEventListener('transition-start', this.onAnimationStart);\n this.props.navigation.addEventListener('transition-end', this.onAnimationEnd);\n this.props.navigation.addEventListener('transition-cancel', this.onAnimationEnd);\n }\n\n componentWillUnmount() {\n this.props.navigation.removeEventListener('transition-start', this.onAnimationStart);\n this.props.navigation.removeEventListener('transition-end', this.onAnimationEnd);\n this.props.navigation.removeEventListener('transition-cancel', this.onAnimationEnd);\n }\n\n get animationEffect() {\n const animationEffectFactory = this.props.animation;\n const { animation, direction, hasUAVisualTransition } = this.context;\n const { timeline, playbackRate } = animation;\n const { index, exiting, ref } = this;\n\n return animationEffectFactory?.({\n ref: ref.current,\n index,\n exiting,\n timeline,\n direction,\n playbackRate,\n hasUAVisualTransition\n }) ?? null;\n }\n\n setZIndex(zIndex: React.CSSProperties[\"zIndex\"]) {\n return new Promise<void>(resolve => this.setState({ zIndex }, resolve));\n }\n\n render() {\n const Element = this.props.renderAs;\n const inert = !this.props.focused ? '' : undefined;\n return (\n <Element\n id={this.props.id}\n className=\"screen-transition-provider\"\n ref={this.ref}\n {...{ inert }}\n style={{\n gridArea: '1 / 1',\n width: '100%',\n height: '100%',\n transformOrigin: 'center center',\n zIndex: this.state.zIndex\n }}\n >\n {this.props.children}\n </Element>\n );\n }\n}","import { createContext } from 'react';\nimport { ScreenBase } from './ScreenBase';\nimport { RouterBase } from './RouterBase';\n\nexport const NestedRouterContext = createContext<{parentRouter: RouterBase, parentScreen: ScreenBase} | null>(null);\nexport const RouterContext = createContext<RouterBase>(null!);","import { createContext } from \"react\";\nimport { RoutePropBase } from \"./common/types\";\n\nexport const RoutePropContext = createContext<RoutePropBase>(null!);","import { SharedElement } from \"./SharedElement\";\n\nexport class SharedElementScene {\n\tpublic readonly id: string;\n\tpublic readonly nodes = new Map<string, SharedElement>();\n\tpublic getScreenRect: () => DOMRect = () => new DOMRect();\n\tpublic keepAlive: boolean = false;\n\tpublic previousScene: SharedElementScene | null = null;\n\tpublic canTransition: boolean = true; // should be false if page animation already started\n\n\tconstructor(id: string) {\n\t\tthis.id = id;\n\t}\n\n\taddNode(node: SharedElement | null) {\n\t\tif (!node) return;\n\t\tconsole.assert(!this.nodes.has(node.id), `Duplicate Shared Element ID: ${node.id} in ${this.id}`);\n\t\tthis.nodes.set(node.id, node);\n\t}\n\n\tremoveNode(_id: string) {\n\t\tthis.nodes.delete(_id);\n\t}\n\n\tget xRatio() {\n\t\tconst screenRect = this.getScreenRect();\n\t\tconst xRatio = (screenRect.width / window.innerWidth).toFixed(2);\n\t\treturn parseFloat(xRatio);\n\t}\n\n\tget yRatio() {\n\t\tconst screenRect = this.getScreenRect();\n\t\tconst yRatio = (screenRect.height / window.innerHeight).toFixed(2);\n\t\treturn parseFloat(yRatio);\n\t}\n\n\tget x() {\n\t\treturn this.getScreenRect().x;\n\t}\n\n\tget y() {\n\t\treturn this.getScreenRect().y;\n\t}\n\n\tisEmpty() {\n\t\treturn !Boolean(this.nodes.size);\n\t}\n}","import { Component, ElementType, Suspense, cloneElement, createRef, isValidElement } from \"react\";\nimport { ScreenTransitionProvider } from \"./ScreenTransitionProvider\";\nimport {\n AnimationEffectFactory,\n LazyExoticComponent,\n PlainObject,\n RoutePropBase,\n isLazyExoticComponent,\n isNativeLazyExoticComponent,\n} from \"./common/types\";\nimport { NestedRouterContext, RouterContext } from \"./RouterContext\";\nimport { RoutePropContext } from \"./RoutePropContext\";\nimport { NavigationBase } from \"./NavigationBase\";\nimport { SharedElementSceneContext } from \"./SharedElementSceneContext\";\nimport { SharedElementScene } from \"./SharedElementScene\";\n\nexport interface ScreenBaseComponentProps<\n R extends RoutePropBase = RoutePropBase,\n N extends NavigationBase = NavigationBase\n> {\n route: R;\n navigation: N;\n}\n\nexport interface LifecycleProps<R extends RoutePropBase, N extends NavigationBase = NavigationBase> extends ScreenBaseComponentProps<R, N> {\n signal: AbortSignal;\n}\n\nexport interface ScreenBaseConfig<R extends RoutePropBase = RoutePropBase, N extends NavigationBase = NavigationBase> {\n header?: {\n fallback?: React.ReactNode;\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any>\n };\n footer?: {\n fallback?: React.ReactNode;\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any>\n };\n animation?: AnimationEffectFactory;\n onEnter?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onExit?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onEntered?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onExited?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n onLoad?: (props: LifecycleProps<R, N>) => void | Promise<void>;\n}\n\nexport interface ScreenBaseProps {\n path: string;\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any>;\n fallback?: React.ReactNode;\n name?: string;\n defaultParams?: PlainObject;\n caseSensitive?: boolean;\n config?: ScreenBaseConfig;\n}\n\nexport interface ScreenBaseState<C extends ScreenBaseProps[\"config\"] = ScreenBaseProps[\"config\"], P extends PlainObject = PlainObject> {\n focused: boolean;\n config: C;\n params: P;\n elementType: ElementType;\n}\n\nexport abstract class ScreenBase<\n P extends ScreenBaseProps = ScreenBaseProps,\n S extends ScreenBaseState<P[\"config\"]> = ScreenBaseState<P[\"config\"]>,\n R extends RoutePropBase<P[\"config\"]> = RoutePropBase<P[\"config\"]>\n> extends Component<P, S> {\n public readonly sharedElementScene: SharedElementScene;\n #transitionProvider = createRef<ScreenTransitionProvider>();\n protected readonly ref = createRef<HTMLDivElement>();\n protected readonly nestedRouterData;\n static readonly contextType = RouterContext;\n declare context: React.ContextType<typeof RouterContext>;\n\n state: S = {\n focused: false,\n config: {},\n params: {},\n elementType: 'div'\n } as S;\n\n constructor(props: P, context: React.ContextType<typeof RouterContext>) {\n super(props);\n\n this.sharedElementScene = new SharedElementScene(`${this.name}-shared-element-scene`);\n this.sharedElementScene.getScreenRect = () => this.ref.current?.getBoundingClientRect() || new DOMRect();\n this.nestedRouterData = { parentScreen: this as ScreenBase, parentRouter: context };\n }\n\n protected setParams(newParams: PlainObject) {\n this.setState(({ params }) => ({ params: { ...params, ...newParams } }));\n }\n\n protected setConfig(newConfig: R['config']) {\n this.setState(({ config }) => ({ config: { ...config, ...newConfig } }));\n }\n\n get focused() {\n return this.state.focused;\n }\n\n get name() {\n if (this.props.name)\n return this.props.name\n .toLowerCase()\n .replace(/[^\\w-]/g, '-') // Remove non-alphanumeric chars\n .replace(/-+/g, '-') // Replace multiple hyphens with a single one\n .replace(/^-|-$/g, ''); // Remove leading and trailing hyphens;\n else if (isLazyExoticComponent(this.props.component))\n return this.props.component.module?.default.name.toLowerCase();\n return this.props.component.name.toLowerCase();\n }\n\n blur() {\n return new Promise<void>(resolve => this.setState({ focused: false }, resolve));\n }\n\n focus() {\n return new Promise<void>(resolve => this.setState({ focused: true }, resolve));\n }\n\n async load(signal: AbortSignal) {\n let Component = this.props.component;\n let result;\n if ('load' in Component) {\n result = await Component.load();\n } else {\n result = { default: Component };\n }\n\n const navigation = this.context.navigation;\n const route = this.routeProp;\n await this.props.config?.onLoad?.({ navigation, route, signal });\n\n return result;\n }\n\n protected abstract get routeProp(): R;\n abstract get config(): R[\"config\"];\n abstract get params(): R[\"params\"];\n abstract get resolvedPathname(): string;\n abstract get id(): string;\n\n async onExited(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onExited?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n async onExit(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onExit?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n async onEnter(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onEnter?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n async onEntered(signal: AbortSignal): Promise<void> {\n await this.routeProp.config.onEntered?.({\n route: this.routeProp,\n navigation: this.context.navigation,\n signal\n });\n }\n\n get path() {\n return this.props.path;\n }\n\n get transitionProvider() {\n return this.#transitionProvider;\n }\n\n render() {\n const navigation = this.context.navigation;\n const routeProp = this.routeProp;\n const Component = this.props.component;\n const HeaderComponent = routeProp.config.header?.component;\n const FooterComponent = routeProp.config.footer?.component;\n\n return (\n <ScreenTransitionProvider\n ref={this.#transitionProvider}\n renderAs={this.state.elementType}\n id={`${this.context.id}-${this.name}-transition-provider`}\n animation={routeProp.config.animation}\n navigation={navigation}\n focused={this.state.focused}\n >\n <div\n id={`${this.context.id}-${this.name}`}\n ref={this.ref}\n className=\"screen\"\n style={{\n height: '100%',\n width: '100%',\n display: 'flex',\n flexDirection: 'column',\n pointerEvents: 'inherit'\n }}\n >\n <SharedElementSceneContext.Provider value={this.sharedElementScene}>\n <RoutePropContext.Provider value={routeProp}>\n <NestedRouterContext.Provider value={this.nestedRouterData}>\n <Suspense fallback={<ComponentWithRouteProps component={routeProp.config.header?.fallback} route={routeProp} navigation={navigation} />}>\n <ComponentWithRouteProps component={HeaderComponent} route={routeProp} navigation={navigation} />\n </Suspense>\n <Suspense fallback={<ComponentWithRouteProps component={this.props.fallback} route={routeProp} navigation={navigation} />}>\n <ComponentWithRouteProps component={Component} route={routeProp} navigation={navigation} />\n </Suspense>\n <Suspense fallback={<ComponentWithRouteProps component={routeProp.config.footer?.fallback} route={routeProp} navigation={navigation} />}>\n <ComponentWithRouteProps component={FooterComponent} route={routeProp} navigation={navigation} />\n </Suspense>\n </NestedRouterContext.Provider>\n </RoutePropContext.Provider>\n </SharedElementSceneContext.Provider>\n </div>\n </ScreenTransitionProvider>\n );\n }\n}\n\ninterface ComponentWithRoutePropsProps extends ScreenBaseComponentProps<RoutePropBase, NavigationBase> {\n component: React.JSXElementConstructor<any> | LazyExoticComponent<any> | React.ReactNode;\n}\nfunction ComponentWithRouteProps({ component, route, navigation }: ComponentWithRoutePropsProps) {\n if (isLazyExoticComponent(component) && component.module?.default) {\n component = component.module.default;\n }\n const Component = component ?? null;\n if (typeof Component === \"function\" || isNativeLazyExoticComponent(Component)) {\n return (\n <Component\n navigation={navigation}\n route={route}\n />\n );\n } else if (isValidElement(Component)) {\n return cloneElement<any>(Component, {\n navigation,\n route\n });\n }\n return <>{Component}</>;\n}","import { isValidElement } from 'react';\nimport { ScreenBase, ScreenBaseProps } from '../ScreenBase';\nimport {\n MotionProgressEndEvent,\n MotionProgressEvent,\n MotionProgressStartEvent,\n TransitionCancelEvent,\n TransitionEndEvent,\n TransitionStartEvent\n} from './events';\nimport { SharedElement } from '../SharedElement';\nimport { StandardPropertiesHyphen } from 'csstype';\n\nexport type ScreenChild<E extends ScreenBase = ScreenBase> = E extends ScreenBase<infer P> ? React.CElement<P, E> : never;\n\nexport interface AnimationEffectFactoryProps<R extends HTMLElement = HTMLElement> {\n ref: R | null;\n index: number;\n exiting: boolean;\n timeline: AnimationTimeline | null;\n playbackRate: number;\n direction: PlaybackDirection;\n hasUAVisualTransition: boolean;\n}\n\nexport type AnimationEffectFactory<R extends HTMLElement = HTMLElement> = (props: AnimationEffectFactoryProps<R>) => AnimationEffect;\n\nexport type MetaTypeKey = 'http-equiv' | 'name' | 'itemprop' | 'property' | 'charset';\nexport type MetaType = [MetaTypeKey, string];\nexport type MetaKey = `${MetaTypeKey}=${string}`;\n\nexport interface LazyExoticComponent<T extends React.ComponentType<any>> extends React.LazyExoticComponent<T> {\n load: () => Promise<{ default: T }>;\n module?: { default: T };\n}\n\nexport type ScreenState<P extends ScreenBaseProps = ScreenBaseProps> = Map<string, Pick<RoutePropBase<P[\"config\"], PlainObject>, \"config\" | \"params\">>;\n\nexport interface RoutePropBase<C extends ScreenBaseProps[\"config\"] = {}, P extends PlainObject = PlainObject> {\n path: string;\n resolvedPathname?: string;\n config: Partial<NonNullable<C>>;\n focused: boolean;\n params: P;\n setParams(params: Partial<P>): void;\n setConfig(config: Partial<NonNullable<C>>): void;\n}\n\nexport function isValidScreenChild<S extends ScreenBase>(value: any): value is ScreenChild<S> {\n if (!isValidElement(value)) return false;\n return Object.getPrototypeOf(value.type) === ScreenBase;\n}\n\nexport type PlainObject<T = any> = { [key: string]: T };\n\nexport interface RouterBaseEventMap extends HTMLElementEventMap {\n \"transition-start\": TransitionStartEvent;\n \"transition-cancel\": TransitionCancelEvent;\n \"transition-end\": TransitionEndEvent;\n \"motion-progress-start\": MotionProgressStartEvent;\n \"motion-progress\": MotionProgressEvent;\n \"motion-progress-end\": MotionProgressEndEvent;\n}\n\nexport type RouterHTMLElement<E extends RouterBaseEventMap, T extends HTMLElement = HTMLDivElement> = T & {\n addEventListener<K extends keyof E>(type: K, listener: (this: T, ev: E[K]) => any, options?: boolean | AddEventListenerOptions): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n removeEventListener<K extends keyof E>(type: K, listener: (this: T, ev: E[K]) => any, options?: boolean | EventListenerOptions): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\nexport type CustomElementType = `${string}-${string}`;\n\nexport interface MatchedRoute {\n params?: PlainObject<string | undefined>;\n}\n\nexport interface PathPattern {\n pattern: string;\n caseSensitive: boolean;\n}\n\nexport type AnimationDirection = \"normal\" | \"reverse\";\n\nenum SharedElementTransitionTypeEnum {\n \"morph\",\n \"fade-through\",\n \"fade\",\n \"cross-fade\"\n}\n\nexport type SharedElementTransitionType = keyof typeof SharedElementTransitionTypeEnum;\n\nexport interface SharedElementNode {\n id: string;\n instance: SharedElement;\n}\n\nexport type SharedElementNodeMap = Map<string, SharedElementNode>;\n\nexport type StyleKeyList = (keyof StandardPropertiesHyphen | string)[];\n\nexport function isNativeLazyExoticComponent(value: any): value is React.LazyExoticComponent<any> {\n return typeof value === \"object\"\n && value !== null\n && value.$$typeof === Symbol.for('react.lazy');\n}\n\nexport function isLazyExoticComponent(value: any): value is LazyExoticComponent<any> {\n return isNativeLazyExoticComponent(value) && 'load' in value;\n}\n\nexport type StylableElement = Element & { style: CSSStyleDeclaration };\n\nexport function isStylableElement(element: any): element is StylableElement {\n return 'style' in element && element.style instanceof CSSStyleDeclaration;\n}\n\nexport interface LoadNavigationTransition extends Omit<NavigationTransition, \"navigationType\"> {\n navigationType: \"load\";\n}\n\ndeclare global {\n interface NavigateEvent extends Event {\n commit?(): void; // not in spec yet, see https://github.com/WICG/navigation-api/issues/66\n readonly hasUAVisualTransition: boolean; // not in definitely typed yet, see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/70324\n }\n}\n\nexport type ElementPropType<C> = C extends React.CElement<infer P, infer T> ? P & React.ClassAttributes<T> : never;\nexport type ClonedElementType<C, IP extends Partial<ElementPropType<C>>> = C extends React.CElement<infer P, infer T> ? React.CElement<P & Partial<IP>, T & React.Component<P & IP>> : never;","var x = y => { var x = {}; __webpack_require__.d(x, y); return x; }\nvar y = x => () => x\nconst __WEBPACK_NAMESPACE_OBJECT__ = x({ [\"Animation\"]: () => __WEBPACK_EXTERNAL_MODULE_web_animations_extension_74b2916c__.Animation, [\"ParallelEffect\"]: () => __WEBPACK_EXTERNAL_MODULE_web_animations_extension_74b2916c__.ParallelEffect });","import { StylableElement, StyleKeyList, isStylableElement } from './common/types';\nimport { Component, RefObject, createRef } from 'react';\nimport { NavigationBase } from './NavigationBase';\nimport { ScreenBase } from './ScreenBase';\nimport { ParallelEffect } from 'web-animations-extension';\nimport { SharedElement } from './SharedElement';\nimport { toCamelCase } from './common/utils';\n\ninterface SharedElementTransitionLayerProps {\n navigation: NavigationBase;\n direction: \"forwards\" | \"backwards\";\n}\n\ninterface SharedElementTransitionLayerState { }\n\nexport class SharedElementTransitionLayer extends Component<SharedElementTransitionLayerProps, SharedElementTransitionLayerState> {\n public readonly ref = createRef<HTMLDialogElement>();\n #outgoingScreen: RefObject<ScreenBase> | null = null;\n #incomingScreen: RefObject<ScreenBase> | null = null;\n\n state: SharedElementTransitionLayerState = {\n transitioning: false\n }\n\n set outgoingScreen(outgoingScreen: RefObject<ScreenBase> | null) {\n this.#outgoingScreen = outgoingScreen;\n }\n\n set incomingScreen(incomingScreen: RefObject<ScreenBase> | null) {\n this.#incomingScreen = incomingScreen;\n }\n\n get outgoingScreen() {\n return this.#outgoingScreen;\n }\n\n get incomingScreen() {\n return this.#incomingScreen;\n }\n\n getKeyframeProperties(element: Element, styleList: StyleKeyList) {\n const computedStyles: Record<string, string> = {};\n const computedStyle = window.getComputedStyle(element);\n for (const key of styleList) {\n let transformedKey;\n if (key === \"offset\")\n transformedKey = \"cssOffset\";\n else if (key === \"float\")\n transformedKey = \"cssFloat\";\n else\n transformedKey = toCamelCase(key);\n computedStyles[transformedKey] = computedStyle.getPropertyValue(key);\n }\n return computedStyles;\n }\n\n copyStyles(srcElement: Element | null | undefined, cloneElement: StylableElement, styleList: StyleKeyList) {\n if (!isStylableElement(srcElement)) return;\n const computedStyles = window.getComputedStyle(srcElement);\n for (const key of styleList) {\n const value = computedStyles.getPropertyValue(key);\n const priority = computedStyles.getPropertyPriority(key);\n cloneElement.style.setProperty(key, value, priority);\n }\n }\n\n getAnimationEffect<T extends { instance: SharedElement, clone: HTMLElement }>(start: T, end: T) {\n const keyframeEffects = new Array<KeyframeEffect>();\n const startRect = start.instance.getBoundingClientRect();\n const endRect = end.instance.getBoundingClientRect();\n const config: KeyframeEffectOptions = {\n fill: \"both\" as const,\n duration: \"auto\",\n easing: \"ease\",\n };\n const transitionType = end.instance.transitionType;\n const startTransform = `translate(${startRect.x}px, ${startRect.y}px)`;\n const endTransform = `translate(${endRect.x}px, ${endRect.y}px)`;\n switch (transitionType) {\n case \"fade\":\n keyframeEffects.push(\n new KeyframeEffect(\n start.clone,\n [\n { transform: startTransform, opacity: 1 },\n { transform: endTransform, opacity: 0 }\n ],\n config\n ),\n );\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n { transform: startTransform },\n { transform: endTransform }\n ],\n config\n ),\n\n );\n break;\n case \"fade-through\":\n keyframeEffects.push(\n new KeyframeEffect(\n start.clone,\n [\n { transform: startTransform, opacity: 1 },\n { opacity: 0, offset: 0.5 },\n { transform: endTransform, opacity: 0 }\n ],\n config\n ),\n\n );\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n { transform: startTransform, opacity: 0 },\n { opacity: 0, offset: 0.5 },\n { transform: endTransform, opacity: 1 }\n ],\n config\n ),\n\n );\n break;\n case \"cross-fade\":\n end.clone.style.mixBlendMode = \"plus-lighter\";\n keyframeEffects.push(\n new KeyframeEffect(\n start.clone,\n [\n { transform: startTransform, opacity: 1 },\n { transform: endTransform, opacity: 0 }\n ],\n config\n ),\n\n );\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n { transform: startTransform },\n { transform: endTransform }\n ],\n config\n ),\n\n );\n break;\n case \"morph\": {\n const styleList = Array.from(new Set([...start.instance.styles, ...end.instance.styles]));\n keyframeEffects.push(\n new KeyframeEffect(\n end.clone,\n [\n {\n ...Object.fromEntries((start.instance.ref.current?.firstElementChild as HTMLElement).attributeStyleMap),\n transform: startTransform,\n width: `${startRect.width}px`,\n height: `${startRect.height}px`,\n },\n {\n ...Object.fromEntries((end.instance.ref.current?.firstElementChild as HTMLElement).attributeStyleMap),\n ...this.getKeyframeProperties(end.instance.ref.current?.firstElementChild as HTMLElement, styleList),\n transform: endTransform,\n width: `${endRect.width}px`,\n height: `${endRect.height}px`,\n }\n ],\n config\n )\n );\n break;\n }\n }\n return new ParallelEffect(keyframeEffects);\n }\n\n get animationEffect() {\n const currentScene = this.outgoingScreen?.current?.sharedElementScene;\n const nextScene = this.incomingScreen?.current?.sharedElementScene;\n if (!currentScene || !nextScene) return null;\n if (currentScene === nextScene) return null;\n currentScene.previousScene = null;\n nextScene.previousScene = currentScene;\n const parallelEffects = new Array<ParallelEffect>();\n for (const [id, end] of Array.from(nextScene.nodes.entries())) {\n const start = currentScene.nodes.get(id);\n if (!start?.canTransition || !end.canTransition) continue;\n const endClone = end.clone();\n const startClone = start.clone();\n if (!startClone || !endClone) continue;\n const styleList = Array.from(new Set([...start.styles, ...end.styles, 'width' as const, 'height' as const]));\n if (end.transitionType !== \"morph\") {\n startClone.id = `${id}-start`;\n startClone.style.position = \"absolute\";\n this.copyStyles(start.ref.current?.firstElementChild, startClone, styleList);\n this.copyStyles(end.ref.current?.firstElementChild, endClone, styleList);\n this.ref.current?.prepend(startClone);\n } else if (isStylableElement(start.ref.current?.firstElementChild)) {\n this.copyStyles(start.ref.current.firstElementChild, endClone, styleList);\n }\n\n endClone.id = `${id}${end.transitionType === \"morph\" ? '' : '-end'}`;\n endClone.style.position = \"absolute\";\n this.ref.current?.prepend(endClone);\n start.hide();\n end.hide();\n const onFinish = async () => {\n if (this.props.direction === \"forwards\")\n end.unhide();\n else\n start.unhide();\n endClone.remove();\n startClone.remove();\n };\n this.props.navigation.addEventListener('transition-end', onFinish, { once: true });\n this.props.navigation.addEventListener('transition-cancel', onFinish, { once: true });\n\n parallelEffects.push(this.getAnimationEffect(\n { instance: start, clone: startClone },\n { instance: end, clone: endClone }\n ));\n }\n\n return new ParallelEffect(parallelEffects);\n }\n\n render() {\n return (\n <dialog className=\"shared-element-layer\" ref={this.ref} style={{\n position: 'absolute',\n maxWidth: 'unset',\n maxHeight: 'unset',\n width: '100vw',\n height: '100vh',\n contain: 'strict',\n padding: 0,\n border: 'none',\n backgroundColor: 'transparent',\n isolation: 'isolate'\n }}>\n <style>{\".shared-element-layer::backdrop {display: none}\"}</style>\n </dialog>\n );\n }\n}","import { createContext } from \"react\";\n\nexport const MotionContext = createContext(0);","import { Component, RefObject, createRef } from 'react';\nimport { MotionProgressEvent, TransitionCancelEvent, TransitionEndEvent, TransitionStartEvent } from './common/events';\nimport { SharedElementTransitionLayer } from './SharedElementTransitionLayer';\nimport { ParallelEffect, Animation } from 'web-animations-extension';\nimport { ScreenTransitionLayerContext } from './ScreenTransitionLayerContext';\nimport { ScreenChild } from './common/types';\nimport { NavigationBase } from './NavigationBase';\nimport { ScreenBase } from './ScreenBase';\nimport { MotionContext } from './MotionContext';\n\ninterface ScreenTransitionLayerProps {\n children: ScreenChild | ScreenChild[];\n navigation: NavigationBase;\n hasUAVisualTransition: boolean;\n}\n\ninterface ScreenTransitionLayerState {\n gestureNavigating: boolean;\n progress: number;\n}\n\nexport class ScreenTransitionLayer extends Component<ScreenTransitionLayerProps, ScreenTransitionLayerState> {\n public readonly sharedElementTransitionLayer = createRef<SharedElementTransitionLayer>();\n public readonly animation: Animation = new Animation();\n #direction: PlaybackDirection = \"normal\";\n #screens: RefObject<ScreenBase>[] = new Array();\n\n state: ScreenTransitionLayerState = {\n gestureNavigating: false,\n progress: 1\n }\n\n private onAnimationFrame() {\n const progress = this.animation.effect?.getComputedTiming().progress;\n\n if (progress)\n this.onProgress(progress);\n\n if (this.animation.playState === \"running\")\n requestAnimationFrame(this.onAnimationFrame.bind(this));\n }\n\n private onTransitionCancel() {\n this.props.navigation.dispatchEvent(new TransitionCancelEvent());\n }\n\n private onTransitionStart() {\n this.props.navigation.dispatchEvent(new TransitionStartEvent());\n\n this.onAnimationFrame();\n }\n\n private onTransitionEnd() {\n this.props.navigation.dispatchEvent(new TransitionEndEvent());\n }\n\n private onProgress(progress: number) {\n this.setState({ progress });\n this.props.navigation.dispatchEvent(new MotionProgressEvent(progress));\n }\n\n get screens() {\n return this.#screens;\n }\n\n set screens(screens: RefObject<ScreenBase>[]) {\n this.#screens = screens;\n }\n\n set direction(direction: PlaybackDirection) {\n this.#direction = direction;\n this.animation.effect?.updateTiming({ direction });\n }\n\n get direction() {\n return this.#direction;\n }\n\n get hasUAVisualTransition() {\n return this.props.hasUAVisualTransition;\n }\n\n public transition() {\n const effect = new ParallelEffect(\n this.screens.map(screen => {\n return screen.current?.transitionProvider?.current?.animationEffect ?? null;\n }).filter((effect): effect is AnimationEffect => effect !== null)\n );\n\n const sharedElementEffect = this.sharedElementTransitionLayer.current?.animationEffect;\n const duration = effect.getComputedTiming().duration;\n if (sharedElementEffect) {\n sharedElementEffect.updateTiming({\n duration: duration instanceof CSSNumericValue ? duration.to('ms').value : duration\n });\n effect.append(sharedElementEffect);\n this.sharedElementTransitionLayer.current?.ref.current?.showModal();\n }\n\n this.animation.effect = effect;\n\n this.animation.play();\n this.onTransitionStart();\n\n this.animation.oncancel = () => {\n this.sharedElementTransitionLayer.current?.ref.current?.close();\n this.onTransitionCancel();\n this.animation.effect = null;\n }\n this.animation.finished.then(() => {\n this.animation.commitStyles();\n this.onTransitionEnd();\n this.sharedElementTransitionLayer.current?.ref.current?.close();\n this.animation.effect = null;\n });\n\n return this.animation;\n }\n\n render() {\n return (\n <ScreenTransitionLayerContext.Provider value={this}>\n <SharedElementTransitionLayer\n ref={this.sharedElementTransitionLayer}\n navigation={this.props.navigation}\n direction={this.animation.playbackRate > 0 ? \"forwards\" : \"backwards\"}\n />\n <div\n className=\"screen-transition-layer\"\n style={{\n width: '100%',\n height: '100%',\n display: 'grid',\n contain: 'layout',\n isolation: 'isolate',\n '--motion-progress': this.state.progress\n } as React.CSSProperties}\n >\n <MotionContext.Provider value={this.state.progress}>\n {this.props.children}\n </MotionContext.Provider>\n </div>\n </ScreenTransitionLayerContext.Provider>\n );\n }\n}","import { NavigationBase } from './NavigationBase';\nimport { ScreenTransitionLayer } from './ScreenTransitionLayer';\nimport {\n ScreenChild,\n RouterBaseEventMap,\n RouterHTMLElement,\n ScreenState\n} from './common/types';\nimport { NestedRouterContext, RouterContext } from './RouterContext';\nimport { dispatchEvent, matchRoute, resolveBaseURLFromPattern } from './common/utils';\nimport { Component, createRef, isValidElement, Children } from 'react';\nimport { ScreenBase, ScreenBaseConfig } from './ScreenBase';\nimport { LoadEvent } from './common/events';\n\nexport interface RouterBaseConfig {\n screenConfig?: ScreenBaseConfig;\n basePath?: string;\n}\n\nexport interface RouterBaseProps<S extends ScreenBase = ScreenBase> {\n id?: string;\n config?: RouterBaseConfig;\n children: ScreenChild<S> | ScreenChild<S>[];\n}\n\nexport interface RouterBaseState {}\n\nexport abstract class RouterBase<P extends RouterBaseProps = RouterBaseProps, S extends RouterBaseState = RouterBaseState, E extends RouterBaseEventMap = RouterBaseEventMap> extends Component<P, S> {\n protected readonly ref = createRef<RouterHTMLElement<E>>();\n protected screenTransitionLayer = createRef<ScreenTransitionLayer>();\n public abstract readonly navigation: NavigationBase;\n public readonly parent: RouterBase | null = null;\n #child: WeakRef<RouterBase> | null = null;\n private loadDispatched = false;\n private hasUAVisualTransition = false;\n public readonly parentScreen: ScreenBase | null = null;\n private static rootRouterRef: WeakRef<RouterBase> | null = null;\n static readonly contextType = NestedRouterContext;\n declare context: React.ContextType<typeof NestedRouterContext>;\n\n constructor(props: P, context: React.ContextType<typeof NestedRouterContext>) {\n super(props);\n\n this.parentScreen = context?.parentScreen ?? null;\n this.parent = context?.parentRouter ?? null;\n if (this.parent) {\n this.parent.child = this;\n }\n if (this.isRoot) {\n RouterBase.rootRouterRef = new WeakRef(this);\n }\n }\n\n componentDidMount() {\n if (this.isRoot) {\n window.navigation.addEventListener('navigate', this.handleNavigationDispatch);\n }\n\n if (!this.loadDispatched) {\n window.navigation.dispatchEvent(new LoadEvent());\n this.loadDispatched = true;\n }\n }\n\n componentWillUnmount() {\n if (this.isRoot) {\n window.navigation.removeEventListener('navigate', this.handleNavigationDispatch);\n }\n }\n\n private handleNavigationDispatch = (e: NavigateEvent) => {\n if (!this.canIntercept(e)) return;\n let router: RouterBase = this;\n // travel down router tree to find the correct router\n while (router.child?.canIntercept(e)) {\n router = router.child;\n }\n router.intercept(e);\n\n this.hasUAVisualTransition = e.hasUAVisualTransition;\n }\n\n getRouterById(routerId: string, target?: RouterBase): RouterBase | null {\n const router = target ?? RouterBase.rootRouterRef?.deref();\n if (router!.id === routerId) {\n return router ?? null;\n } else if (router?.child) {\n return this.getRouterById(routerId, router!.child);\n } else {\n return null;\n }\n }\n\n dispatchEvent(event: Event) {\n const ref = this.ref.current ?? undefined;\n return dispatchEvent(event, ref);\n }\n\n addEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | AddEventListenerOptions): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n\taddEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void {\n return this.ref.current?.addEventListener(type, listener, options);\n }\n\n removeEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | EventListenerOptions | undefined): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions) {\n return this.ref.current?.removeEventListener(type, listener, options);\n }\n\n public preloadRoute(pathname: string) {\n return new Promise<boolean>((resolve, reject) => {\n let found = false;\n const routes = this.props.children;\n Children.forEach<ScreenChild>(routes, (route) => {\n if (found) return; // stop after first\n if (!isValidElement(route)) return;\n const { path, caseSensitive } = route.props;\n const baseURLPattern = this.baseURLPattern.pathname;\n const matchInfo = matchRoute(path, pathname, baseURLPattern, caseSensitive);\n if (!matchInfo) return;\n found = true;\n const config = route.props.config;\n queueMicrotask(async () => {\n const preloadTasks = [];\n if ('load' in route.props.component) {\n preloadTasks.push(route.props.component.load());\n }\n if (config?.header?.component && 'load' in config?.header?.component) {\n preloadTasks.push(config?.header?.component.load());\n }\n if (config?.footer?.component && 'load' in config?.footer?.component) {\n preloadTasks.push(config?.footer?.component.load());\n }\n try {\n await Promise.all(preloadTasks);\n resolve(found);\n } catch (e) {\n reject(e);\n }\n });\n });\n if (!found)\n resolve(false);\n });\n }\n\n get id(): string {\n if (this.props.id) return this.props.id;\n const prefix = this.parent?.id;\n const id = this.parentScreen?.id ?? 'root';\n return [prefix, id].filter(Boolean).join('-');\n }\n\n get isRoot() {\n return !this.parent;\n }\n\n get baseURL() {\n const pathname = this.isRoot ? window.location.pathname : this.parentScreen?.resolvedPathname!;\n const pattern = this.baseURLPattern.pathname;\n\n return resolveBaseURLFromPattern(pattern, pathname)!;\n }\n\n get baseURLPattern() {\n let baseURL = window.location.origin + \"/\";\n const defaultBasePathname = this.isRoot ? new URL(\".\", document.baseURI).href.replace(baseURL, '') : \".\";\n let basePathname = this.props.config?.basePath ?? defaultBasePathname;\n\n if (this.parent && this.parentScreen) {\n const { resolvedPathname = window.location.pathname, path } = this.parentScreen;\n const parentBaseURL = this.parent.baseURL?.href;\n const pattern = new URLPattern({ baseURL: parentBaseURL, pathname: path });\n baseURL = resolveBaseURLFromPattern(\n pattern.pathname,\n resolvedPathname\n )!.href;\n }\n\n return new URLPattern({ baseURL, pathname: basePathname });\n }\n\n get pathPatterns() {\n return Children.map(this.props.children, (child) => {\n return { pattern: child.props.path, caseSensitive: Boolean(child.props.caseSensitive) };\n });\n }\n\n get mounted() {\n return Boolean(this.ref.current);\n }\n\n get child() {\n return this.#child?.deref() ?? null;\n }\n\n set child(child: RouterBase | null) {\n const currentChildRouter = this.#child?.deref();\n if (\n currentChildRouter\n && child?.id !== currentChildRouter?.id\n && currentChildRouter?.mounted\n ) {\n throw new Error(\"It looks like you have two navigators at the same level. Try simplifying your navigation structure by using a nested router instead.\");\n }\n if (child)\n this.#child = new WeakRef(child);\n else\n this.#child = null;\n }\n\n protected abstract canIntercept(navigateEvent: NavigateEvent): boolean;\n protected abstract shouldIntercept(navigateEvent: NavigateEvent): boolean;\n protected abstract intercept(navigateEvent: NavigateEvent): void;\n protected abstract get screens(): P[\"children\"];\n\n render() {\n if (!this.navigation) return;\n return (\n <div\n id={this.id}\n className=\"react-motion-router\"\n style={{ width: '100%', height: '100%' }}\n ref={this.ref}\n >\n <RouterContext.Provider value={this}>\n <ScreenTransitionLayer\n ref={this.screenTransitionLayer}\n navigation={this.navigation}\n hasUAVisualTransition={this.hasUAVisualTransition}\n >\n {this.screens}\n </ScreenTransitionLayer>\n </RouterContext.Provider>\n </div>\n );\n }\n}","import { MetaKey, MetaType, MetaTypeKey } from \"./common/types\";\n\nexport class MetaData {\n #map = new Map<MetaKey, string | undefined>();\n private mutationObserver: MutationObserver;\n\n constructor() {\n this.mutationObserver = new MutationObserver(this.observeMutations.bind(this));\n const {head} = document;\n this.mutationObserver.observe(head, {\n childList: true\n });\n\n Array.from(head.querySelectorAll('meta')).forEach(node => {\n this.mutationObserver.observe(node, {\n attributes: true\n });\n });\n\n Array.from(head.querySelectorAll('meta')).forEach(this.metaDataFromNode.bind(this));\n }\n\n get(key: string | MetaType) {\n const metaKey = this.getMetaKey(key);\n\n const metaContent = this.#map.get(metaKey);\n if (!metaContent) return undefined;\n\n let content: string | [string, string][];\n if (metaContent.includes(',') && metaContent.includes('=')) {\n content = metaContent.split(/,\\s*/).map(keyVal => keyVal.split('=') as [string, string]);\n } else {\n content = metaContent;\n }\n\n return content;\n }\n\n set(key: string | MetaType, content?: string | [string, string][]) {\n const metaKey = this.getMetaKey(key);\n const metaContent = this.getMetaContent(content);\n\n this.#map.set(metaKey, metaContent);\n this.updateMetaElement(metaKey, metaContent);\n }\n\n has(key: string | MetaType) {\n const metaKey = this.getMetaKey(key);\n\n return this.#map.has(metaKey);\n }\n\n delete(key: string | MetaType) {\n const metaKey = this.getMetaKey(key);\n\n this.#map.delete(metaKey);\n document.head.querySelector(`meta[${metaKey}]`)?.remove();\n }\n\n clear() {\n document.head.querySelectorAll('meta').forEach(node => node.remove());\n }\n\n entries() {\n return this.#map.entries();\n }\n\n [Symbol.iterator]() {\n return this.entries();\n }\n\n get size() {\n return this.#map.size;\n }\n \n private observeMutations(mutations: MutationRecord[]) {\n for (const mutation of mutations) {\n if (mutation.type === 'attributes') {\n const node = mutation.target;\n\n this.metaDataFromNode(node as HTMLMetaElement);\n }\n\n if (mutation.type !== 'childList') return;\n\n mutation.removedNodes.forEach((node) => {\n if (node.nodeName === 'META') {\n const [type] = Array.from((node as HTMLMetaElement).attributes).filter(attribute => attribute.nodeName !== \"content\");\n const metaType: MetaType = [type.nodeName as MetaTypeKey, type.value];\n\n const key = metaType.join('=') as MetaKey;\n if (this.#map.has(key)) {\n this.#map.delete(key);\n }\n }\n });\n mutation.addedNodes.forEach(node => {\n if (node.nodeName === 'META') {\n this.metaDataFromNode(node as HTMLMetaElement);\n }\n });\n }\n }\n\n private metaDataFromNode(node: HTMLMetaElement) {\n const [type] = Array.from((node as HTMLMetaElement).attributes).filter(attribute => attribute.nodeName !== \"content\");\n const [content] = Array.from((node as HTMLMetaElement).attributes).filter(attribute => attribute.nodeName === \"content\");\n const metaType: MetaType = [type.nodeName as MetaTypeKey, type.value];\n\n const key = metaType.join('=') as MetaKey;\n this.#map.set(key, content?.value);\n }\n\n private getMetaKey(key: string | MetaType) {\n let metaKey: MetaKey;\n if (typeof key === \"string\") {\n metaKey = `name=${key}` as MetaKey;\n } else {\n metaKey = key.join('=') as MetaKey;\n }\n\n return metaKey;\n }\n\n private getMetaContent(content: string | [string, string][] | undefined) {\n if (!content) return undefined;\n\n let metaContent: string;\n if (typeof content === \"string\") {\n metaContent = content;\n } else {\n metaContent = content.map(contentTuple => contentTuple.join('=')).join(', ');\n }\n\n return metaContent;\n }\n\n private updateMetaElement(key: MetaKey, content?: string) {\n const meta = document.querySelector(`meta[${key}]`) || document.createElement('meta');\n const metaType = key.split('=') as MetaType;\n\n meta.setAttribute(...metaType);\n if (content) meta.setAttribute('content', content);\n else meta.removeAttribute('content');\n\n if (!meta.parentElement) {\n document.head.appendChild(meta);\n }\n }\n}","import { RouterHTMLElement, RouterBaseEventMap } from \"./common/types\";\nimport { MetaData } from \"./MetaData\";\nimport { RouterBase } from \"./RouterBase\";\n\nexport abstract class NavigationBase<E extends RouterBaseEventMap = RouterBaseEventMap> {\n protected abstract readonly router: RouterBase;\n private static rootNavigatorRef: WeakRef<NavigationBase> | null = null;\n public readonly metaData = new MetaData();\n\n constructor() {\n const rootNavigator = NavigationBase.rootNavigatorRef?.deref();\n if (!rootNavigator || !rootNavigator.isInDocument)\n NavigationBase.rootNavigatorRef = new WeakRef(this);\n }\n\n addEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | AddEventListenerOptions): () => void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): () => void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): () => void {\n this.router.addEventListener(type, listener, options);\n return () => this.router.removeEventListener(type, listener, options);\n }\n\n removeEventListener<K extends keyof E>(type: K, listener: (this: RouterHTMLElement<E>, ev: E[K]) => any, options?: boolean | EventListenerOptions | undefined): void\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void {\n return this.router.removeEventListener(type, listener, options);\n }\n\n dispatchEvent(event: Event) {\n return this.router.dispatchEvent?.(event);\n }\n\n get parent(): NavigationBase | null {\n return this.router.parent?.navigation ?? null;\n }\n\n get routerId() {\n return this.router.id;\n }\n\n get baseURL() {\n return this.router.baseURL;\n }\n\n get baseURLPattern() {\n return this.router.baseURLPattern;\n }\n\n public getNavigatorById(routerId: string) {\n return this.router.getRouterById(routerId)?.navigation ?? null;\n }\n\n public preloadRoute(path: string) {\n const { pathname } = new URL(path, this.baseURL);\n return this.router.preloadRoute(pathname);\n }\n\n private get isInDocument() {\n return Boolean(document.getElementById(`${this.routerId}`));\n }\n}","import { useContext, useDebugValue } from \"react\";\nimport { MotionContext } from \"../MotionContext\";\nimport { NavigationBase } from \"../NavigationBase\";\nimport { RouterContext } from \"../RouterContext\";\nimport { RoutePropContext } from \"../RoutePropContext\";\nimport { RouterBase } from \"../RouterBase\";\nimport { RoutePropBase } from \"./types\";\n\nexport function useNavigationBase<T extends NavigationBase = NavigationBase>() {\n const router = useContext(RouterContext);\n if (router) {\n return router.navigation as T;\n } else {\n throw new Error(\"Router is null. You may be trying to call useNavigation outside a Router.\");\n }\n}\n\nexport function useRouterBase<T extends RouterBase = RouterBase>() {\n return useContext(RouterContext) as T;\n}\n\nexport function useMotion() {\n useDebugValue(\"Motion\");\n return useContext(MotionContext);\n}\n\nexport function useRouteBase<R extends RoutePropBase>() {\n const routeProp = useContext(RoutePropContext);\n if (routeProp) {\n return routeProp as R;\n } else {\n throw new Error(\"Router is null. You may be trying to call useRoute outside a Router.\");\n }\n}","export const MAX_Z_INDEX = 2147483647;\nexport const MAX_PROGRESS = 100;\nexport const MIN_PROGRESS = 0;\nexport const MIN_NORM_PROGRESS = 0;\nexport const MAX_NORM_PROGRESS = 1;","/// <reference types=\"urlpattern-polyfill\" />\nexport * from './SharedElement';\nexport * from './RouterBase';\nexport * from './ScreenBase';\nexport * from './NavigationBase';\nexport * from './MotionContext';\nexport * from './RouterContext';\nexport * from './common/hooks';\nexport * from './common/types';\nexport * from './common/events';\nexport * from './common/utils';\nexport * from './common/constants';"],"names":[],"sourceRoot":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-motion-router/core",
3
- "version": "2.0.0-beta.sha-c1cce91",
3
+ "version": "2.0.0-beta.sha-6f2a71f",
4
4
  "main": "build/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -62,5 +62,5 @@
62
62
  "webpack": "^5.72.0",
63
63
  "webpack-cli": "^4.9.2"
64
64
  },
65
- "gitHead": "c1cce9140b1b35784d407254306397d6051e62f3"
65
+ "gitHead": "6f2a71fb33863c41ef6b6c9a975d9d61ebcc8d80"
66
66
  }