UNPKG

105 kBSource Map (JSON)View Raw
1{"version":3,"file":"react-router.development.js","sources":["../../lib/context.ts","../../lib/hooks.tsx","../../lib/components.tsx","../../index.ts"],"sourcesContent":["import * as React from \"react\";\nimport type {\n AgnosticRouteMatch,\n AgnosticIndexRouteObject,\n AgnosticNonIndexRouteObject,\n History,\n Location,\n RelativeRoutingType,\n Router,\n StaticHandlerContext,\n To,\n TrackedPromise,\n LazyRouteFunction,\n} from \"@remix-run/router\";\nimport type { Action as NavigationType } from \"@remix-run/router\";\n\n// Create react-specific types from the agnostic types in @remix-run/router to\n// export from react-router\nexport interface IndexRouteObject {\n caseSensitive?: AgnosticIndexRouteObject[\"caseSensitive\"];\n path?: AgnosticIndexRouteObject[\"path\"];\n id?: AgnosticIndexRouteObject[\"id\"];\n loader?: AgnosticIndexRouteObject[\"loader\"];\n action?: AgnosticIndexRouteObject[\"action\"];\n hasErrorBoundary?: AgnosticIndexRouteObject[\"hasErrorBoundary\"];\n shouldRevalidate?: AgnosticIndexRouteObject[\"shouldRevalidate\"];\n handle?: AgnosticIndexRouteObject[\"handle\"];\n index: true;\n children?: undefined;\n element?: React.ReactNode | null;\n errorElement?: React.ReactNode | null;\n Component?: React.ComponentType | null;\n ErrorBoundary?: React.ComponentType | null;\n lazy?: LazyRouteFunction<IndexRouteObject>;\n}\n\nexport interface NonIndexRouteObject {\n caseSensitive?: AgnosticNonIndexRouteObject[\"caseSensitive\"];\n path?: AgnosticNonIndexRouteObject[\"path\"];\n id?: AgnosticNonIndexRouteObject[\"id\"];\n loader?: AgnosticNonIndexRouteObject[\"loader\"];\n action?: AgnosticNonIndexRouteObject[\"action\"];\n hasErrorBoundary?: AgnosticNonIndexRouteObject[\"hasErrorBoundary\"];\n shouldRevalidate?: AgnosticNonIndexRouteObject[\"shouldRevalidate\"];\n handle?: AgnosticNonIndexRouteObject[\"handle\"];\n index?: false;\n children?: RouteObject[];\n element?: React.ReactNode | null;\n errorElement?: React.ReactNode | null;\n Component?: React.ComponentType | null;\n ErrorBoundary?: React.ComponentType | null;\n lazy?: LazyRouteFunction<NonIndexRouteObject>;\n}\n\nexport type RouteObject = IndexRouteObject | NonIndexRouteObject;\n\nexport type DataRouteObject = RouteObject & {\n children?: DataRouteObject[];\n id: string;\n};\n\nexport interface RouteMatch<\n ParamKey extends string = string,\n RouteObjectType extends RouteObject = RouteObject\n> extends AgnosticRouteMatch<ParamKey, RouteObjectType> {}\n\nexport interface DataRouteMatch extends RouteMatch<string, DataRouteObject> {}\n\nexport interface DataRouterContextObject extends NavigationContextObject {\n router: Router;\n staticContext?: StaticHandlerContext;\n}\n\nexport const DataRouterContext =\n React.createContext<DataRouterContextObject | null>(null);\nif (__DEV__) {\n DataRouterContext.displayName = \"DataRouter\";\n}\n\nexport const DataRouterStateContext = React.createContext<\n Router[\"state\"] | null\n>(null);\nif (__DEV__) {\n DataRouterStateContext.displayName = \"DataRouterState\";\n}\n\nexport const AwaitContext = React.createContext<TrackedPromise | null>(null);\nif (__DEV__) {\n AwaitContext.displayName = \"Await\";\n}\n\nexport interface NavigateOptions {\n replace?: boolean;\n state?: any;\n preventScrollReset?: boolean;\n relative?: RelativeRoutingType;\n}\n\n/**\n * A Navigator is a \"location changer\"; it's how you get to different locations.\n *\n * Every history instance conforms to the Navigator interface, but the\n * distinction is useful primarily when it comes to the low-level <Router> API\n * where both the location and a navigator must be provided separately in order\n * to avoid \"tearing\" that may occur in a suspense-enabled app if the action\n * and/or location were to be read directly from the history instance.\n */\nexport interface Navigator {\n createHref: History[\"createHref\"];\n // Optional for backwards-compat with Router/HistoryRouter usage (edge case)\n encodeLocation?: History[\"encodeLocation\"];\n go: History[\"go\"];\n push(to: To, state?: any, opts?: NavigateOptions): void;\n replace(to: To, state?: any, opts?: NavigateOptions): void;\n}\n\ninterface NavigationContextObject {\n basename: string;\n navigator: Navigator;\n static: boolean;\n}\n\nexport const NavigationContext = React.createContext<NavigationContextObject>(\n null!\n);\n\nif (__DEV__) {\n NavigationContext.displayName = \"Navigation\";\n}\n\ninterface LocationContextObject {\n location: Location;\n navigationType: NavigationType;\n}\n\nexport const LocationContext = React.createContext<LocationContextObject>(\n null!\n);\n\nif (__DEV__) {\n LocationContext.displayName = \"Location\";\n}\n\nexport interface RouteContextObject {\n outlet: React.ReactElement | null;\n matches: RouteMatch[];\n isDataRoute: boolean;\n}\n\nexport const RouteContext = React.createContext<RouteContextObject>({\n outlet: null,\n matches: [],\n isDataRoute: false,\n});\n\nif (__DEV__) {\n RouteContext.displayName = \"Route\";\n}\n\nexport const RouteErrorContext = React.createContext<any>(null);\n\nif (__DEV__) {\n RouteErrorContext.displayName = \"RouteError\";\n}\n","import * as React from \"react\";\nimport type {\n Blocker,\n BlockerFunction,\n Location,\n ParamParseKey,\n Params,\n Path,\n PathMatch,\n PathPattern,\n RelativeRoutingType,\n Router as RemixRouter,\n RevalidationState,\n To,\n} from \"@remix-run/router\";\nimport {\n Action as NavigationType,\n UNSAFE_invariant as invariant,\n isRouteErrorResponse,\n joinPaths,\n matchPath,\n matchRoutes,\n parsePath,\n resolveTo,\n UNSAFE_getPathContributingMatches as getPathContributingMatches,\n UNSAFE_warning as warning,\n} from \"@remix-run/router\";\n\nimport type {\n NavigateOptions,\n RouteContextObject,\n RouteMatch,\n RouteObject,\n DataRouteMatch,\n} from \"./context\";\nimport {\n DataRouterContext,\n DataRouterStateContext,\n LocationContext,\n NavigationContext,\n RouteContext,\n RouteErrorContext,\n AwaitContext,\n} from \"./context\";\n\n/**\n * Returns the full href for the given \"to\" value. This is useful for building\n * custom links that are also accessible and preserve right-click behavior.\n *\n * @see https://reactrouter.com/hooks/use-href\n */\nexport function useHref(\n to: To,\n { relative }: { relative?: RelativeRoutingType } = {}\n): string {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useHref() may be used only in the context of a <Router> component.`\n );\n\n let { basename, navigator } = React.useContext(NavigationContext);\n let { hash, pathname, search } = useResolvedPath(to, { relative });\n\n let joinedPathname = pathname;\n\n // If we're operating within a basename, prepend it to the pathname prior\n // to creating the href. If this is a root navigation, then just use the raw\n // basename which allows the basename to have full control over the presence\n // of a trailing slash on root links\n if (basename !== \"/\") {\n joinedPathname =\n pathname === \"/\" ? basename : joinPaths([basename, pathname]);\n }\n\n return navigator.createHref({ pathname: joinedPathname, search, hash });\n}\n\n/**\n * Returns true if this component is a descendant of a <Router>.\n *\n * @see https://reactrouter.com/hooks/use-in-router-context\n */\nexport function useInRouterContext(): boolean {\n return React.useContext(LocationContext) != null;\n}\n\n/**\n * Returns the current location object, which represents the current URL in web\n * browsers.\n *\n * Note: If you're using this it may mean you're doing some of your own\n * \"routing\" in your app, and we'd like to know what your use case is. We may\n * be able to provide something higher-level to better suit your needs.\n *\n * @see https://reactrouter.com/hooks/use-location\n */\nexport function useLocation(): Location {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useLocation() may be used only in the context of a <Router> component.`\n );\n\n return React.useContext(LocationContext).location;\n}\n\n/**\n * Returns the current navigation action which describes how the router came to\n * the current location, either by a pop, push, or replace on the history stack.\n *\n * @see https://reactrouter.com/hooks/use-navigation-type\n */\nexport function useNavigationType(): NavigationType {\n return React.useContext(LocationContext).navigationType;\n}\n\n/**\n * Returns a PathMatch object if the given pattern matches the current URL.\n * This is useful for components that need to know \"active\" state, e.g.\n * <NavLink>.\n *\n * @see https://reactrouter.com/hooks/use-match\n */\nexport function useMatch<\n ParamKey extends ParamParseKey<Path>,\n Path extends string\n>(pattern: PathPattern<Path> | Path): PathMatch<ParamKey> | null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useMatch() may be used only in the context of a <Router> component.`\n );\n\n let { pathname } = useLocation();\n return React.useMemo(\n () => matchPath<ParamKey, Path>(pattern, pathname),\n [pathname, pattern]\n );\n}\n\n/**\n * The interface for the navigate() function returned from useNavigate().\n */\nexport interface NavigateFunction {\n (to: To, options?: NavigateOptions): void;\n (delta: number): void;\n}\n\nconst navigateEffectWarning =\n `You should call navigate() in a React.useEffect(), not when ` +\n `your component is first rendered.`;\n\n// Mute warnings for calls to useNavigate in SSR environments\nfunction useIsomorphicLayoutEffect(\n cb: Parameters<typeof React.useLayoutEffect>[0]\n) {\n let isStatic = React.useContext(NavigationContext).static;\n if (!isStatic) {\n // We should be able to get rid of this once react 18.3 is released\n // See: https://github.com/facebook/react/pull/26395\n // eslint-disable-next-line react-hooks/rules-of-hooks\n React.useLayoutEffect(cb);\n }\n}\n\n/**\n * Returns an imperative method for changing the location. Used by <Link>s, but\n * may also be used by other elements to change the location.\n *\n * @see https://reactrouter.com/hooks/use-navigate\n */\nexport function useNavigate(): NavigateFunction {\n let { isDataRoute } = React.useContext(RouteContext);\n // Conditional usage is OK here because the usage of a data router is static\n // eslint-disable-next-line react-hooks/rules-of-hooks\n return isDataRoute ? useNavigateStable() : useNavigateUnstable();\n}\n\nfunction useNavigateUnstable(): NavigateFunction {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useNavigate() may be used only in the context of a <Router> component.`\n );\n\n let dataRouterContext = React.useContext(DataRouterContext);\n let { basename, navigator } = React.useContext(NavigationContext);\n let { matches } = React.useContext(RouteContext);\n let { pathname: locationPathname } = useLocation();\n\n let routePathnamesJson = JSON.stringify(\n getPathContributingMatches(matches).map((match) => match.pathnameBase)\n );\n\n let activeRef = React.useRef(false);\n useIsomorphicLayoutEffect(() => {\n activeRef.current = true;\n });\n\n let navigate: NavigateFunction = React.useCallback(\n (to: To | number, options: NavigateOptions = {}) => {\n warning(activeRef.current, navigateEffectWarning);\n\n // Short circuit here since if this happens on first render the navigate\n // is useless because we haven't wired up our history listener yet\n if (!activeRef.current) return;\n\n if (typeof to === \"number\") {\n navigator.go(to);\n return;\n }\n\n let path = resolveTo(\n to,\n JSON.parse(routePathnamesJson),\n locationPathname,\n options.relative === \"path\"\n );\n\n // If we're operating within a basename, prepend it to the pathname prior\n // to handing off to history (but only if we're not in a data router,\n // otherwise it'll prepend the basename inside of the router).\n // If this is a root navigation, then we navigate to the raw basename\n // which allows the basename to have full control over the presence of a\n // trailing slash on root links\n if (dataRouterContext == null && basename !== \"/\") {\n path.pathname =\n path.pathname === \"/\"\n ? basename\n : joinPaths([basename, path.pathname]);\n }\n\n (!!options.replace ? navigator.replace : navigator.push)(\n path,\n options.state,\n options\n );\n },\n [\n basename,\n navigator,\n routePathnamesJson,\n locationPathname,\n dataRouterContext,\n ]\n );\n\n return navigate;\n}\n\nconst OutletContext = React.createContext<unknown>(null);\n\n/**\n * Returns the context (if provided) for the child route at this level of the route\n * hierarchy.\n * @see https://reactrouter.com/hooks/use-outlet-context\n */\nexport function useOutletContext<Context = unknown>(): Context {\n return React.useContext(OutletContext) as Context;\n}\n\n/**\n * Returns the element for the child route at this level of the route\n * hierarchy. Used internally by <Outlet> to render child routes.\n *\n * @see https://reactrouter.com/hooks/use-outlet\n */\nexport function useOutlet(context?: unknown): React.ReactElement | null {\n let outlet = React.useContext(RouteContext).outlet;\n if (outlet) {\n return (\n <OutletContext.Provider value={context}>{outlet}</OutletContext.Provider>\n );\n }\n return outlet;\n}\n\n/**\n * Returns an object of key/value pairs of the dynamic params from the current\n * URL that were matched by the route path.\n *\n * @see https://reactrouter.com/hooks/use-params\n */\nexport function useParams<\n ParamsOrKey extends string | Record<string, string | undefined> = string\n>(): Readonly<\n [ParamsOrKey] extends [string] ? Params<ParamsOrKey> : Partial<ParamsOrKey>\n> {\n let { matches } = React.useContext(RouteContext);\n let routeMatch = matches[matches.length - 1];\n return routeMatch ? (routeMatch.params as any) : {};\n}\n\n/**\n * Resolves the pathname of the given `to` value against the current location.\n *\n * @see https://reactrouter.com/hooks/use-resolved-path\n */\nexport function useResolvedPath(\n to: To,\n { relative }: { relative?: RelativeRoutingType } = {}\n): Path {\n let { matches } = React.useContext(RouteContext);\n let { pathname: locationPathname } = useLocation();\n\n let routePathnamesJson = JSON.stringify(\n getPathContributingMatches(matches).map((match) => match.pathnameBase)\n );\n\n return React.useMemo(\n () =>\n resolveTo(\n to,\n JSON.parse(routePathnamesJson),\n locationPathname,\n relative === \"path\"\n ),\n [to, routePathnamesJson, locationPathname, relative]\n );\n}\n\n/**\n * Returns the element of the route that matched the current location, prepared\n * with the correct context to render the remainder of the route tree. Route\n * elements in the tree must render an <Outlet> to render their child route's\n * element.\n *\n * @see https://reactrouter.com/hooks/use-routes\n */\nexport function useRoutes(\n routes: RouteObject[],\n locationArg?: Partial<Location> | string\n): React.ReactElement | null {\n return useRoutesImpl(routes, locationArg);\n}\n\n// Internal implementation with accept optional param for RouterProvider usage\nexport function useRoutesImpl(\n routes: RouteObject[],\n locationArg?: Partial<Location> | string,\n dataRouterState?: RemixRouter[\"state\"]\n): React.ReactElement | null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of the\n // router loaded. We can help them understand how to avoid that.\n `useRoutes() may be used only in the context of a <Router> component.`\n );\n\n let { navigator } = React.useContext(NavigationContext);\n let { matches: parentMatches } = React.useContext(RouteContext);\n let routeMatch = parentMatches[parentMatches.length - 1];\n let parentParams = routeMatch ? routeMatch.params : {};\n let parentPathname = routeMatch ? routeMatch.pathname : \"/\";\n let parentPathnameBase = routeMatch ? routeMatch.pathnameBase : \"/\";\n let parentRoute = routeMatch && routeMatch.route;\n\n if (__DEV__) {\n // You won't get a warning about 2 different <Routes> under a <Route>\n // without a trailing *, but this is a best-effort warning anyway since we\n // cannot even give the warning unless they land at the parent route.\n //\n // Example:\n //\n // <Routes>\n // {/* This route path MUST end with /* because otherwise\n // it will never match /blog/post/123 */}\n // <Route path=\"blog\" element={<Blog />} />\n // <Route path=\"blog/feed\" element={<BlogFeed />} />\n // </Routes>\n //\n // function Blog() {\n // return (\n // <Routes>\n // <Route path=\"post/:id\" element={<Post />} />\n // </Routes>\n // );\n // }\n let parentPath = (parentRoute && parentRoute.path) || \"\";\n warningOnce(\n parentPathname,\n !parentRoute || parentPath.endsWith(\"*\"),\n `You rendered descendant <Routes> (or called \\`useRoutes()\\`) at ` +\n `\"${parentPathname}\" (under <Route path=\"${parentPath}\">) but the ` +\n `parent route path has no trailing \"*\". This means if you navigate ` +\n `deeper, the parent won't match anymore and therefore the child ` +\n `routes will never render.\\n\\n` +\n `Please change the parent <Route path=\"${parentPath}\"> to <Route ` +\n `path=\"${parentPath === \"/\" ? \"*\" : `${parentPath}/*`}\">.`\n );\n }\n\n let locationFromContext = useLocation();\n\n let location;\n if (locationArg) {\n let parsedLocationArg =\n typeof locationArg === \"string\" ? parsePath(locationArg) : locationArg;\n\n invariant(\n parentPathnameBase === \"/\" ||\n parsedLocationArg.pathname?.startsWith(parentPathnameBase),\n `When overriding the location using \\`<Routes location>\\` or \\`useRoutes(routes, location)\\`, ` +\n `the location pathname must begin with the portion of the URL pathname that was ` +\n `matched by all parent routes. The current pathname base is \"${parentPathnameBase}\" ` +\n `but pathname \"${parsedLocationArg.pathname}\" was given in the \\`location\\` prop.`\n );\n\n location = parsedLocationArg;\n } else {\n location = locationFromContext;\n }\n\n let pathname = location.pathname || \"/\";\n let remainingPathname =\n parentPathnameBase === \"/\"\n ? pathname\n : pathname.slice(parentPathnameBase.length) || \"/\";\n\n let matches = matchRoutes(routes, { pathname: remainingPathname });\n\n if (__DEV__) {\n warning(\n parentRoute || matches != null,\n `No routes matched location \"${location.pathname}${location.search}${location.hash}\" `\n );\n\n warning(\n matches == null ||\n matches[matches.length - 1].route.element !== undefined ||\n matches[matches.length - 1].route.Component !== undefined,\n `Matched leaf route at location \"${location.pathname}${location.search}${location.hash}\" ` +\n `does not have an element or Component. This means it will render an <Outlet /> with a ` +\n `null value by default resulting in an \"empty\" page.`\n );\n }\n\n let renderedMatches = _renderMatches(\n matches &&\n matches.map((match) =>\n Object.assign({}, match, {\n params: Object.assign({}, parentParams, match.params),\n pathname: joinPaths([\n parentPathnameBase,\n // Re-encode pathnames that were decoded inside matchRoutes\n navigator.encodeLocation\n ? navigator.encodeLocation(match.pathname).pathname\n : match.pathname,\n ]),\n pathnameBase:\n match.pathnameBase === \"/\"\n ? parentPathnameBase\n : joinPaths([\n parentPathnameBase,\n // Re-encode pathnames that were decoded inside matchRoutes\n navigator.encodeLocation\n ? navigator.encodeLocation(match.pathnameBase).pathname\n : match.pathnameBase,\n ]),\n })\n ),\n parentMatches,\n dataRouterState\n );\n\n // When a user passes in a `locationArg`, the associated routes need to\n // be wrapped in a new `LocationContext.Provider` in order for `useLocation`\n // to use the scoped location instead of the global location.\n if (locationArg && renderedMatches) {\n return (\n <LocationContext.Provider\n value={{\n location: {\n pathname: \"/\",\n search: \"\",\n hash: \"\",\n state: null,\n key: \"default\",\n ...location,\n },\n navigationType: NavigationType.Pop,\n }}\n >\n {renderedMatches}\n </LocationContext.Provider>\n );\n }\n\n return renderedMatches;\n}\n\nfunction DefaultErrorComponent() {\n let error = useRouteError();\n let message = isRouteErrorResponse(error)\n ? `${error.status} ${error.statusText}`\n : error instanceof Error\n ? error.message\n : JSON.stringify(error);\n let stack = error instanceof Error ? error.stack : null;\n let lightgrey = \"rgba(200,200,200, 0.5)\";\n let preStyles = { padding: \"0.5rem\", backgroundColor: lightgrey };\n let codeStyles = { padding: \"2px 4px\", backgroundColor: lightgrey };\n\n let devInfo = null;\n if (__DEV__) {\n console.error(\n \"Error handled by React Router default ErrorBoundary:\",\n error\n );\n\n devInfo = (\n <>\n <p>💿 Hey developer 👋</p>\n <p>\n You can provide a way better UX than this when your app throws errors\n by providing your own <code style={codeStyles}>ErrorBoundary</code> or{\" \"}\n <code style={codeStyles}>errorElement</code> prop on your route.\n </p>\n </>\n );\n }\n\n return (\n <>\n <h2>Unexpected Application Error!</h2>\n <h3 style={{ fontStyle: \"italic\" }}>{message}</h3>\n {stack ? <pre style={preStyles}>{stack}</pre> : null}\n {devInfo}\n </>\n );\n}\n\nconst defaultErrorElement = <DefaultErrorComponent />;\n\ntype RenderErrorBoundaryProps = React.PropsWithChildren<{\n location: Location;\n revalidation: RevalidationState;\n error: any;\n component: React.ReactNode;\n routeContext: RouteContextObject;\n}>;\n\ntype RenderErrorBoundaryState = {\n location: Location;\n revalidation: RevalidationState;\n error: any;\n};\n\nexport class RenderErrorBoundary extends React.Component<\n RenderErrorBoundaryProps,\n RenderErrorBoundaryState\n> {\n constructor(props: RenderErrorBoundaryProps) {\n super(props);\n this.state = {\n location: props.location,\n revalidation: props.revalidation,\n error: props.error,\n };\n }\n\n static getDerivedStateFromError(error: any) {\n return { error: error };\n }\n\n static getDerivedStateFromProps(\n props: RenderErrorBoundaryProps,\n state: RenderErrorBoundaryState\n ) {\n // When we get into an error state, the user will likely click \"back\" to the\n // previous page that didn't have an error. Because this wraps the entire\n // application, that will have no effect--the error page continues to display.\n // This gives us a mechanism to recover from the error when the location changes.\n //\n // Whether we're in an error state or not, we update the location in state\n // so that when we are in an error state, it gets reset when a new location\n // comes in and the user recovers from the error.\n if (\n state.location !== props.location ||\n (state.revalidation !== \"idle\" && props.revalidation === \"idle\")\n ) {\n return {\n error: props.error,\n location: props.location,\n revalidation: props.revalidation,\n };\n }\n\n // If we're not changing locations, preserve the location but still surface\n // any new errors that may come through. We retain the existing error, we do\n // this because the error provided from the app state may be cleared without\n // the location changing.\n return {\n error: props.error || state.error,\n location: state.location,\n revalidation: props.revalidation || state.revalidation,\n };\n }\n\n componentDidCatch(error: any, errorInfo: any) {\n console.error(\n \"React Router caught the following error during render\",\n error,\n errorInfo\n );\n }\n\n render() {\n return this.state.error ? (\n <RouteContext.Provider value={this.props.routeContext}>\n <RouteErrorContext.Provider\n value={this.state.error}\n children={this.props.component}\n />\n </RouteContext.Provider>\n ) : (\n this.props.children\n );\n }\n}\n\ninterface RenderedRouteProps {\n routeContext: RouteContextObject;\n match: RouteMatch<string, RouteObject>;\n children: React.ReactNode | null;\n}\n\nfunction RenderedRoute({ routeContext, match, children }: RenderedRouteProps) {\n let dataRouterContext = React.useContext(DataRouterContext);\n\n // Track how deep we got in our render pass to emulate SSR componentDidCatch\n // in a DataStaticRouter\n if (\n dataRouterContext &&\n dataRouterContext.static &&\n dataRouterContext.staticContext &&\n (match.route.errorElement || match.route.ErrorBoundary)\n ) {\n dataRouterContext.staticContext._deepestRenderedBoundaryId = match.route.id;\n }\n\n return (\n <RouteContext.Provider value={routeContext}>\n {children}\n </RouteContext.Provider>\n );\n}\n\nexport function _renderMatches(\n matches: RouteMatch[] | null,\n parentMatches: RouteMatch[] = [],\n dataRouterState: RemixRouter[\"state\"] | null = null\n): React.ReactElement | null {\n if (matches == null) {\n if (dataRouterState?.errors) {\n // Don't bail if we have data router errors so we can render them in the\n // boundary. Use the pre-matched (or shimmed) matches\n matches = dataRouterState.matches as DataRouteMatch[];\n } else {\n return null;\n }\n }\n\n let renderedMatches = matches;\n\n // If we have data errors, trim matches to the highest error boundary\n let errors = dataRouterState?.errors;\n if (errors != null) {\n let errorIndex = renderedMatches.findIndex(\n (m) => m.route.id && errors?.[m.route.id]\n );\n invariant(\n errorIndex >= 0,\n `Could not find a matching route for errors on route IDs: ${Object.keys(\n errors\n ).join(\",\")}`\n );\n renderedMatches = renderedMatches.slice(\n 0,\n Math.min(renderedMatches.length, errorIndex + 1)\n );\n }\n\n return renderedMatches.reduceRight((outlet, match, index) => {\n let error = match.route.id ? errors?.[match.route.id] : null;\n // Only data routers handle errors\n let errorElement: React.ReactNode | null = null;\n if (dataRouterState) {\n errorElement = match.route.errorElement || defaultErrorElement;\n }\n let matches = parentMatches.concat(renderedMatches.slice(0, index + 1));\n let getChildren = () => {\n let children: React.ReactNode;\n if (error) {\n children = errorElement;\n } else if (match.route.Component) {\n // Note: This is a de-optimized path since React won't re-use the\n // ReactElement since it's identity changes with each new\n // React.createElement call. We keep this so folks can use\n // `<Route Component={...}>` in `<Routes>` but generally `Component`\n // usage is only advised in `RouterProvider` when we can convert it to\n // `element` ahead of time.\n children = <match.route.Component />;\n } else if (match.route.element) {\n children = match.route.element;\n } else {\n children = outlet;\n }\n return (\n <RenderedRoute\n match={match}\n routeContext={{\n outlet,\n matches,\n isDataRoute: dataRouterState != null,\n }}\n children={children}\n />\n );\n };\n // Only wrap in an error boundary within data router usages when we have an\n // ErrorBoundary/errorElement on this route. Otherwise let it bubble up to\n // an ancestor ErrorBoundary/errorElement\n return dataRouterState &&\n (match.route.ErrorBoundary || match.route.errorElement || index === 0) ? (\n <RenderErrorBoundary\n location={dataRouterState.location}\n revalidation={dataRouterState.revalidation}\n component={errorElement}\n error={error}\n children={getChildren()}\n routeContext={{ outlet: null, matches, isDataRoute: true }}\n />\n ) : (\n getChildren()\n );\n }, null as React.ReactElement | null);\n}\n\nenum DataRouterHook {\n UseBlocker = \"useBlocker\",\n UseRevalidator = \"useRevalidator\",\n UseNavigateStable = \"useNavigate\",\n}\n\nenum DataRouterStateHook {\n UseBlocker = \"useBlocker\",\n UseLoaderData = \"useLoaderData\",\n UseActionData = \"useActionData\",\n UseRouteError = \"useRouteError\",\n UseNavigation = \"useNavigation\",\n UseRouteLoaderData = \"useRouteLoaderData\",\n UseMatches = \"useMatches\",\n UseRevalidator = \"useRevalidator\",\n UseNavigateStable = \"useNavigate\",\n UseRouteId = \"useRouteId\",\n}\n\nfunction getDataRouterConsoleError(\n hookName: DataRouterHook | DataRouterStateHook\n) {\n return `${hookName} must be used within a data router. See https://reactrouter.com/routers/picking-a-router.`;\n}\n\nfunction useDataRouterContext(hookName: DataRouterHook) {\n let ctx = React.useContext(DataRouterContext);\n invariant(ctx, getDataRouterConsoleError(hookName));\n return ctx;\n}\n\nfunction useDataRouterState(hookName: DataRouterStateHook) {\n let state = React.useContext(DataRouterStateContext);\n invariant(state, getDataRouterConsoleError(hookName));\n return state;\n}\n\nfunction useRouteContext(hookName: DataRouterStateHook) {\n let route = React.useContext(RouteContext);\n invariant(route, getDataRouterConsoleError(hookName));\n return route;\n}\n\n// Internal version with hookName-aware debugging\nfunction useCurrentRouteId(hookName: DataRouterStateHook) {\n let route = useRouteContext(hookName);\n let thisRoute = route.matches[route.matches.length - 1];\n invariant(\n thisRoute.route.id,\n `${hookName} can only be used on routes that contain a unique \"id\"`\n );\n return thisRoute.route.id;\n}\n\n/**\n * Returns the ID for the nearest contextual route\n */\nexport function useRouteId() {\n return useCurrentRouteId(DataRouterStateHook.UseRouteId);\n}\n\n/**\n * Returns the current navigation, defaulting to an \"idle\" navigation when\n * no navigation is in progress\n */\nexport function useNavigation() {\n let state = useDataRouterState(DataRouterStateHook.UseNavigation);\n return state.navigation;\n}\n\n/**\n * Returns a revalidate function for manually triggering revalidation, as well\n * as the current state of any manual revalidations\n */\nexport function useRevalidator() {\n let dataRouterContext = useDataRouterContext(DataRouterHook.UseRevalidator);\n let state = useDataRouterState(DataRouterStateHook.UseRevalidator);\n return {\n revalidate: dataRouterContext.router.revalidate,\n state: state.revalidation,\n };\n}\n\n/**\n * Returns the active route matches, useful for accessing loaderData for\n * parent/child routes or the route \"handle\" property\n */\nexport function useMatches() {\n let { matches, loaderData } = useDataRouterState(\n DataRouterStateHook.UseMatches\n );\n return React.useMemo(\n () =>\n matches.map((match) => {\n let { pathname, params } = match;\n // Note: This structure matches that created by createUseMatchesMatch\n // in the @remix-run/router , so if you change this please also change\n // that :) Eventually we'll DRY this up\n return {\n id: match.route.id,\n pathname,\n params,\n data: loaderData[match.route.id] as unknown,\n handle: match.route.handle as unknown,\n };\n }),\n [matches, loaderData]\n );\n}\n\n/**\n * Returns the loader data for the nearest ancestor Route loader\n */\nexport function useLoaderData(): unknown {\n let state = useDataRouterState(DataRouterStateHook.UseLoaderData);\n let routeId = useCurrentRouteId(DataRouterStateHook.UseLoaderData);\n\n if (state.errors && state.errors[routeId] != null) {\n console.error(\n `You cannot \\`useLoaderData\\` in an errorElement (routeId: ${routeId})`\n );\n return undefined;\n }\n return state.loaderData[routeId];\n}\n\n/**\n * Returns the loaderData for the given routeId\n */\nexport function useRouteLoaderData(routeId: string): unknown {\n let state = useDataRouterState(DataRouterStateHook.UseRouteLoaderData);\n return state.loaderData[routeId];\n}\n\n/**\n * Returns the action data for the nearest ancestor Route action\n */\nexport function useActionData(): unknown {\n let state = useDataRouterState(DataRouterStateHook.UseActionData);\n\n let route = React.useContext(RouteContext);\n invariant(route, `useActionData must be used inside a RouteContext`);\n\n return Object.values(state?.actionData || {})[0];\n}\n\n/**\n * Returns the nearest ancestor Route error, which could be a loader/action\n * error or a render error. This is intended to be called from your\n * ErrorBoundary/errorElement to display a proper error message.\n */\nexport function useRouteError(): unknown {\n let error = React.useContext(RouteErrorContext);\n let state = useDataRouterState(DataRouterStateHook.UseRouteError);\n let routeId = useCurrentRouteId(DataRouterStateHook.UseRouteError);\n\n // If this was a render error, we put it in a RouteError context inside\n // of RenderErrorBoundary\n if (error) {\n return error;\n }\n\n // Otherwise look for errors from our data router state\n return state.errors?.[routeId];\n}\n\n/**\n * Returns the happy-path data from the nearest ancestor <Await /> value\n */\nexport function useAsyncValue(): unknown {\n let value = React.useContext(AwaitContext);\n return value?._data;\n}\n\n/**\n * Returns the error from the nearest ancestor <Await /> value\n */\nexport function useAsyncError(): unknown {\n let value = React.useContext(AwaitContext);\n return value?._error;\n}\n\nlet blockerId = 0;\n\n/**\n * Allow the application to block navigations within the SPA and present the\n * user a confirmation dialog to confirm the navigation. Mostly used to avoid\n * using half-filled form data. This does not handle hard-reloads or\n * cross-origin navigations.\n */\nexport function useBlocker(shouldBlock: boolean | BlockerFunction): Blocker {\n let { router } = useDataRouterContext(DataRouterHook.UseBlocker);\n let state = useDataRouterState(DataRouterStateHook.UseBlocker);\n let [blockerKey] = React.useState(() => String(++blockerId));\n\n let blockerFunction = React.useCallback<BlockerFunction>(\n (args) => {\n return typeof shouldBlock === \"function\"\n ? !!shouldBlock(args)\n : !!shouldBlock;\n },\n [shouldBlock]\n );\n\n let blocker = router.getBlocker(blockerKey, blockerFunction);\n\n // Cleanup on unmount\n React.useEffect(\n () => () => router.deleteBlocker(blockerKey),\n [router, blockerKey]\n );\n\n // Prefer the blocker from state since DataRouterContext is memoized so this\n // ensures we update on blocker state updates\n return state.blockers.get(blockerKey) || blocker;\n}\n\n/**\n * Stable version of useNavigate that is used when we are in the context of\n * a RouterProvider.\n */\nfunction useNavigateStable(): NavigateFunction {\n let { router } = useDataRouterContext(DataRouterHook.UseNavigateStable);\n let id = useCurrentRouteId(DataRouterStateHook.UseNavigateStable);\n\n let activeRef = React.useRef(false);\n useIsomorphicLayoutEffect(() => {\n activeRef.current = true;\n });\n\n let navigate: NavigateFunction = React.useCallback(\n (to: To | number, options: NavigateOptions = {}) => {\n warning(activeRef.current, navigateEffectWarning);\n\n // Short circuit here since if this happens on first render the navigate\n // is useless because we haven't wired up our router subscriber yet\n if (!activeRef.current) return;\n\n if (typeof to === \"number\") {\n router.navigate(to);\n } else {\n router.navigate(to, { fromRouteId: id, ...options });\n }\n },\n [router, id]\n );\n\n return navigate;\n}\n\nconst alreadyWarned: Record<string, boolean> = {};\n\nfunction warningOnce(key: string, cond: boolean, message: string) {\n if (!cond && !alreadyWarned[key]) {\n alreadyWarned[key] = true;\n warning(false, message);\n }\n}\n","import * as React from \"react\";\nimport type {\n TrackedPromise,\n InitialEntry,\n Location,\n MemoryHistory,\n Router as RemixRouter,\n To,\n LazyRouteFunction,\n RelativeRoutingType,\n RouterState,\n} from \"@remix-run/router\";\nimport {\n Action as NavigationType,\n AbortedDeferredError,\n createMemoryHistory,\n UNSAFE_invariant as invariant,\n parsePath,\n resolveTo,\n stripBasename,\n UNSAFE_warning as warning,\n UNSAFE_getPathContributingMatches as getPathContributingMatches,\n} from \"@remix-run/router\";\n\nimport type {\n DataRouteObject,\n IndexRouteObject,\n RouteMatch,\n RouteObject,\n Navigator,\n NonIndexRouteObject,\n} from \"./context\";\nimport {\n LocationContext,\n NavigationContext,\n DataRouterContext,\n DataRouterStateContext,\n AwaitContext,\n RouteContext,\n} from \"./context\";\nimport {\n useAsyncValue,\n useInRouterContext,\n useNavigate,\n useOutlet,\n useRoutes,\n _renderMatches,\n useRoutesImpl,\n useLocation,\n} from \"./hooks\";\n\nexport interface RouterProviderProps {\n fallbackElement?: React.ReactNode;\n router: RemixRouter;\n}\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n fallbackElement,\n router,\n}: RouterProviderProps): React.ReactElement {\n // Need to use a layout effect here so we are subscribed early enough to\n // pick up on any render-driven redirects/navigations (useEffect/<Navigate>)\n let [state, setState] = React.useState(router.state);\n React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);\n\n let navigator = React.useMemo((): Navigator => {\n return {\n createHref: router.createHref,\n encodeLocation: router.encodeLocation,\n go: (n) => router.navigate(n),\n push: (to, state, opts) =>\n router.navigate(to, {\n state,\n preventScrollReset: opts?.preventScrollReset,\n }),\n replace: (to, state, opts) =>\n router.navigate(to, {\n replace: true,\n state,\n preventScrollReset: opts?.preventScrollReset,\n }),\n };\n }, [router]);\n\n let basename = router.basename || \"/\";\n\n let dataRouterContext = React.useMemo(\n () => ({\n router,\n navigator,\n static: false,\n basename,\n }),\n [router, navigator, basename]\n );\n\n // The fragment and {null} here are important! We need them to keep React 18's\n // useId happy when we are server-rendering since we may have a <script> here\n // containing the hydrated server-side staticContext (from StaticRouterProvider).\n // useId relies on the component tree structure to generate deterministic id's\n // so we need to ensure it remains the same on the client even though\n // we don't need the <script> tag\n return (\n <>\n <DataRouterContext.Provider value={dataRouterContext}>\n <DataRouterStateContext.Provider value={state}>\n <Router\n basename={router.basename}\n location={router.state.location}\n navigationType={router.state.historyAction}\n navigator={navigator}\n >\n {router.state.initialized ? (\n <DataRoutes routes={router.routes} state={state} />\n ) : (\n fallbackElement\n )}\n </Router>\n </DataRouterStateContext.Provider>\n </DataRouterContext.Provider>\n {null}\n </>\n );\n}\n\nfunction DataRoutes({\n routes,\n state,\n}: {\n routes: DataRouteObject[];\n state: RouterState;\n}): React.ReactElement | null {\n return useRoutesImpl(routes, undefined, state);\n}\n\nexport interface MemoryRouterProps {\n basename?: string;\n children?: React.ReactNode;\n initialEntries?: InitialEntry[];\n initialIndex?: number;\n}\n\n/**\n * A <Router> that stores all entries in memory.\n *\n * @see https://reactrouter.com/router-components/memory-router\n */\nexport function MemoryRouter({\n basename,\n children,\n initialEntries,\n initialIndex,\n}: MemoryRouterProps): React.ReactElement {\n let historyRef = React.useRef<MemoryHistory>();\n if (historyRef.current == null) {\n historyRef.current = createMemoryHistory({\n initialEntries,\n initialIndex,\n v5Compat: true,\n });\n }\n\n let history = historyRef.current;\n let [state, setState] = React.useState({\n action: history.action,\n location: history.location,\n });\n\n React.useLayoutEffect(() => history.listen(setState), [history]);\n\n return (\n <Router\n basename={basename}\n children={children}\n location={state.location}\n navigationType={state.action}\n navigator={history}\n />\n );\n}\n\nexport interface NavigateProps {\n to: To;\n replace?: boolean;\n state?: any;\n relative?: RelativeRoutingType;\n}\n\n/**\n * Changes the current location.\n *\n * Note: This API is mostly useful in React.Component subclasses that are not\n * able to use hooks. In functional components, we recommend you use the\n * `useNavigate` hook instead.\n *\n * @see https://reactrouter.com/components/navigate\n */\nexport function Navigate({\n to,\n replace,\n state,\n relative,\n}: NavigateProps): null {\n invariant(\n useInRouterContext(),\n // TODO: This error is probably because they somehow have 2 versions of\n // the router loaded. We can help them understand how to avoid that.\n `<Navigate> may be used only in the context of a <Router> component.`\n );\n\n warning(\n !React.useContext(NavigationContext).static,\n `<Navigate> must not be used on the initial render in a <StaticRouter>. ` +\n `This is a no-op, but you should modify your code so the <Navigate> is ` +\n `only ever rendered in response to some user interaction or state change.`\n );\n\n let { matches } = React.useContext(RouteContext);\n let { pathname: locationPathname } = useLocation();\n let navigate = useNavigate();\n\n // Resolve the path outside of the effect so that when effects run twice in\n // StrictMode they navigate to the same place\n let path = resolveTo(\n to,\n getPathContributingMatches(matches).map((match) => match.pathnameBase),\n locationPathname,\n relative === \"path\"\n );\n let jsonPath = JSON.stringify(path);\n\n React.useEffect(\n () => navigate(JSON.parse(jsonPath), { replace, state, relative }),\n [navigate, jsonPath, relative, replace, state]\n );\n\n return null;\n}\n\nexport interface OutletProps {\n context?: unknown;\n}\n\n/**\n * Renders the child route's element, if there is one.\n *\n * @see https://reactrouter.com/components/outlet\n */\nexport function Outlet(props: OutletProps): React.ReactElement | null {\n return useOutlet(props.context);\n}\n\nexport interface PathRouteProps {\n caseSensitive?: NonIndexRouteObject[\"caseSensitive\"];\n path?: NonIndexRouteObject[\"path\"];\n id?: NonIndexRouteObject[\"id\"];\n lazy?: LazyRouteFunction<NonIndexRouteObject>;\n loader?: NonIndexRouteObject[\"loader\"];\n action?: NonIndexRouteObject[\"action\"];\n hasErrorBoundary?: NonIndexRouteObject[\"hasErrorBoundary\"];\n shouldRevalidate?: NonIndexRouteObject[\"shouldRevalidate\"];\n handle?: NonIndexRouteObject[\"handle\"];\n index?: false;\n children?: React.ReactNode;\n element?: React.ReactNode | null;\n errorElement?: React.ReactNode | null;\n Component?: React.ComponentType | null;\n ErrorBoundary?: React.ComponentType | null;\n}\n\nexport interface LayoutRouteProps extends PathRouteProps {}\n\nexport interface IndexRouteProps {\n caseSensitive?: IndexRouteObject[\"caseSensitive\"];\n path?: IndexRouteObject[\"path\"];\n id?: IndexRouteObject[\"id\"];\n lazy?: LazyRouteFunction<IndexRouteObject>;\n loader?: IndexRouteObject[\"loader\"];\n action?: IndexRouteObject[\"action\"];\n hasErrorBoundary?: IndexRouteObject[\"hasErrorBoundary\"];\n shouldRevalidate?: IndexRouteObject[\"shouldRevalidate\"];\n handle?: IndexRouteObject[\"handle\"];\n index: true;\n children?: undefined;\n element?: React.ReactNode | null;\n errorElement?: React.ReactNode | null;\n Component?: React.ComponentType | null;\n ErrorBoundary?: React.ComponentType | null;\n}\n\nexport type RouteProps = PathRouteProps | LayoutRouteProps | IndexRouteProps;\n\n/**\n * Declares an element that should be rendered at a certain URL path.\n *\n * @see https://reactrouter.com/components/route\n */\nexport function Route(_props: RouteProps): React.ReactElement | null {\n invariant(\n false,\n `A <Route> is only ever to be used as the child of <Routes> element, ` +\n `never rendered directly. Please wrap your <Route> in a <Routes>.`\n );\n}\n\nexport interface RouterProps {\n basename?: string;\n children?: React.ReactNode;\n location: Partial<Location> | string;\n navigationType?: NavigationType;\n navigator: Navigator;\n static?: boolean;\n}\n\n/**\n * Provides location context for the rest of the app.\n *\n * Note: You usually won't render a <Router> directly. Instead, you'll render a\n * router that is more specific to your environment such as a <BrowserRouter>\n * in web browsers or a <StaticRouter> for server rendering.\n *\n * @see https://reactrouter.com/router-components/router\n */\nexport function Router({\n basename: basenameProp = \"/\",\n children = null,\n location: locationProp,\n navigationType = NavigationType.Pop,\n navigator,\n static: staticProp = false,\n}: RouterProps): React.ReactElement | null {\n invariant(\n !useInRouterContext(),\n `You cannot render a <Router> inside another <Router>.` +\n ` You should never have more than one in your app.`\n );\n\n // Preserve trailing slashes on basename, so we can let the user control\n // the enforcement of trailing slashes throughout the app\n let basename = basenameProp.replace(/^\\/*/, \"/\");\n let navigationContext = React.useMemo(\n () => ({ basename, navigator, static: staticProp }),\n [basename, navigator, staticProp]\n );\n\n if (typeof locationProp === \"string\") {\n locationProp = parsePath(locationProp);\n }\n\n let {\n pathname = \"/\",\n search = \"\",\n hash = \"\",\n state = null,\n key = \"default\",\n } = locationProp;\n\n let locationContext = React.useMemo(() => {\n let trailingPathname = stripBasename(pathname, basename);\n\n if (trailingPathname == null) {\n return null;\n }\n\n return {\n location: {\n pathname: trailingPathname,\n search,\n hash,\n state,\n key,\n },\n navigationType,\n };\n }, [basename, pathname, search, hash, state, key, navigationType]);\n\n warning(\n locationContext != null,\n `<Router basename=\"${basename}\"> is not able to match the URL ` +\n `\"${pathname}${search}${hash}\" because it does not start with the ` +\n `basename, so the <Router> won't render anything.`\n );\n\n if (locationContext == null) {\n return null;\n }\n\n return (\n <NavigationContext.Provider value={navigationContext}>\n <LocationContext.Provider children={children} value={locationContext} />\n </NavigationContext.Provider>\n );\n}\n\nexport interface RoutesProps {\n children?: React.ReactNode;\n location?: Partial<Location> | string;\n}\n\n/**\n * A container for a nested tree of <Route> elements that renders the branch\n * that best matches the current location.\n *\n * @see https://reactrouter.com/components/routes\n */\nexport function Routes({\n children,\n location,\n}: RoutesProps): React.ReactElement | null {\n return useRoutes(createRoutesFromChildren(children), location);\n}\n\nexport interface AwaitResolveRenderFunction {\n (data: Awaited<any>): React.ReactNode;\n}\n\nexport interface AwaitProps {\n children: React.ReactNode | AwaitResolveRenderFunction;\n errorElement?: React.ReactNode;\n resolve: TrackedPromise | any;\n}\n\n/**\n * Component to use for rendering lazily loaded data from returning defer()\n * in a loader function\n */\nexport function Await({ children, errorElement, resolve }: AwaitProps) {\n return (\n <AwaitErrorBoundary resolve={resolve} errorElement={errorElement}>\n <ResolveAwait>{children}</ResolveAwait>\n </AwaitErrorBoundary>\n );\n}\n\ntype AwaitErrorBoundaryProps = React.PropsWithChildren<{\n errorElement?: React.ReactNode;\n resolve: TrackedPromise | any;\n}>;\n\ntype AwaitErrorBoundaryState = {\n error: any;\n};\n\nenum AwaitRenderStatus {\n pending,\n success,\n error,\n}\n\nconst neverSettledPromise = new Promise(() => {});\n\nclass AwaitErrorBoundary extends React.Component<\n AwaitErrorBoundaryProps,\n AwaitErrorBoundaryState\n> {\n constructor(props: AwaitErrorBoundaryProps) {\n super(props);\n this.state = { error: null };\n }\n\n static getDerivedStateFromError(error: any) {\n return { error };\n }\n\n componentDidCatch(error: any, errorInfo: any) {\n console.error(\n \"<Await> caught the following error during render\",\n error,\n errorInfo\n );\n }\n\n render() {\n let { children, errorElement, resolve } = this.props;\n\n let promise: TrackedPromise | null = null;\n let status: AwaitRenderStatus = AwaitRenderStatus.pending;\n\n if (!(resolve instanceof Promise)) {\n // Didn't get a promise - provide as a resolved promise\n status = AwaitRenderStatus.success;\n promise = Promise.resolve();\n Object.defineProperty(promise, \"_tracked\", { get: () => true });\n Object.defineProperty(promise, \"_data\", { get: () => resolve });\n } else if (this.state.error) {\n // Caught a render error, provide it as a rejected promise\n status = AwaitRenderStatus.error;\n let renderError = this.state.error;\n promise = Promise.reject().catch(() => {}); // Avoid unhandled rejection warnings\n Object.defineProperty(promise, \"_tracked\", { get: () => true });\n Object.defineProperty(promise, \"_error\", { get: () => renderError });\n } else if ((resolve as TrackedPromise)._tracked) {\n // Already tracked promise - check contents\n promise = resolve;\n status =\n promise._error !== undefined\n ? AwaitRenderStatus.error\n : promise._data !== undefined\n ? AwaitRenderStatus.success\n : AwaitRenderStatus.pending;\n } else {\n // Raw (untracked) promise - track it\n status = AwaitRenderStatus.pending;\n Object.defineProperty(resolve, \"_tracked\", { get: () => true });\n promise = resolve.then(\n (data: any) =>\n Object.defineProperty(resolve, \"_data\", { get: () => data }),\n (error: any) =>\n Object.defineProperty(resolve, \"_error\", { get: () => error })\n );\n }\n\n if (\n status === AwaitRenderStatus.error &&\n promise._error instanceof AbortedDeferredError\n ) {\n // Freeze the UI by throwing a never resolved promise\n throw neverSettledPromise;\n }\n\n if (status === AwaitRenderStatus.error && !errorElement) {\n // No errorElement, throw to the nearest route-level error boundary\n throw promise._error;\n }\n\n if (status === AwaitRenderStatus.error) {\n // Render via our errorElement\n return <AwaitContext.Provider value={promise} children={errorElement} />;\n }\n\n if (status === AwaitRenderStatus.success) {\n // Render children with resolved value\n return <AwaitContext.Provider value={promise} children={children} />;\n }\n\n // Throw to the suspense boundary\n throw promise;\n }\n}\n\n/**\n * @private\n * Indirection to leverage useAsyncValue for a render-prop API on <Await>\n */\nfunction ResolveAwait({\n children,\n}: {\n children: React.ReactNode | AwaitResolveRenderFunction;\n}) {\n let data = useAsyncValue();\n let toRender = typeof children === \"function\" ? children(data) : children;\n return <>{toRender}</>;\n}\n\n///////////////////////////////////////////////////////////////////////////////\n// UTILS\n///////////////////////////////////////////////////////////////////////////////\n\n/**\n * Creates a route config from a React \"children\" object, which is usually\n * either a `<Route>` element or an array of them. Used internally by\n * `<Routes>` to create a route config from its children.\n *\n * @see https://reactrouter.com/utils/create-routes-from-children\n */\nexport function createRoutesFromChildren(\n children: React.ReactNode,\n parentPath: number[] = []\n): RouteObject[] {\n let routes: RouteObject[] = [];\n\n React.Children.forEach(children, (element, index) => {\n if (!React.isValidElement(element)) {\n // Ignore non-elements. This allows people to more easily inline\n // conditionals in their route config.\n return;\n }\n\n let treePath = [...parentPath, index];\n\n if (element.type === React.Fragment) {\n // Transparently support React.Fragment and its children.\n routes.push.apply(\n routes,\n createRoutesFromChildren(element.props.children, treePath)\n );\n return;\n }\n\n invariant(\n element.type === Route,\n `[${\n typeof element.type === \"string\" ? element.type : element.type.name\n }] is not a <Route> component. All component children of <Routes> must be a <Route> or <React.Fragment>`\n );\n\n invariant(\n !element.props.index || !element.props.children,\n \"An index route cannot have child routes.\"\n );\n\n let route: RouteObject = {\n id: element.props.id || treePath.join(\"-\"),\n caseSensitive: element.props.caseSensitive,\n element: element.props.element,\n Component: element.props.Component,\n index: element.props.index,\n path: element.props.path,\n loader: element.props.loader,\n action: element.props.action,\n errorElement: element.props.errorElement,\n ErrorBoundary: element.props.ErrorBoundary,\n hasErrorBoundary:\n element.props.ErrorBoundary != null ||\n element.props.errorElement != null,\n shouldRevalidate: element.props.shouldRevalidate,\n handle: element.props.handle,\n lazy: element.props.lazy,\n };\n\n if (element.props.children) {\n route.children = createRoutesFromChildren(\n element.props.children,\n treePath\n );\n }\n\n routes.push(route);\n });\n\n return routes;\n}\n\n/**\n * Renders the result of `matchRoutes()` into a React element.\n */\nexport function renderMatches(\n matches: RouteMatch[] | null\n): React.ReactElement | null {\n return _renderMatches(matches);\n}\n","import * as React from \"react\";\nimport type {\n ActionFunction,\n ActionFunctionArgs,\n Blocker,\n BlockerFunction,\n Fetcher,\n HydrationState,\n JsonFunction,\n LoaderFunction,\n LoaderFunctionArgs,\n Location,\n Navigation,\n Params,\n ParamParseKey,\n Path,\n PathMatch,\n PathPattern,\n RedirectFunction,\n RelativeRoutingType,\n Router as RemixRouter,\n ShouldRevalidateFunction,\n To,\n InitialEntry,\n LazyRouteFunction,\n FutureConfig,\n} from \"@remix-run/router\";\nimport {\n AbortedDeferredError,\n Action as NavigationType,\n createMemoryHistory,\n createPath,\n createRouter,\n defer,\n generatePath,\n isRouteErrorResponse,\n json,\n matchPath,\n matchRoutes,\n parsePath,\n redirect,\n resolvePath,\n UNSAFE_warning as warning,\n} from \"@remix-run/router\";\n\nimport type {\n AwaitProps,\n MemoryRouterProps,\n NavigateProps,\n OutletProps,\n RouteProps,\n PathRouteProps,\n LayoutRouteProps,\n IndexRouteProps,\n RouterProps,\n RoutesProps,\n RouterProviderProps,\n} from \"./lib/components\";\nimport {\n createRoutesFromChildren,\n renderMatches,\n Await,\n MemoryRouter,\n Navigate,\n Outlet,\n Route,\n Router,\n RouterProvider,\n Routes,\n} from \"./lib/components\";\nimport type {\n DataRouteMatch,\n DataRouteObject,\n IndexRouteObject,\n Navigator,\n NavigateOptions,\n NonIndexRouteObject,\n RouteMatch,\n RouteObject,\n} from \"./lib/context\";\nimport {\n DataRouterContext,\n DataRouterStateContext,\n LocationContext,\n NavigationContext,\n RouteContext,\n} from \"./lib/context\";\nimport type { NavigateFunction } from \"./lib/hooks\";\nimport {\n useBlocker,\n useHref,\n useInRouterContext,\n useLocation,\n useMatch,\n useNavigationType,\n useNavigate,\n useOutlet,\n useOutletContext,\n useParams,\n useResolvedPath,\n useRoutes,\n useActionData,\n useAsyncError,\n useAsyncValue,\n useRouteId,\n useLoaderData,\n useMatches,\n useNavigation,\n useRevalidator,\n useRouteError,\n useRouteLoaderData,\n useRoutesImpl,\n} from \"./lib/hooks\";\n\n// Exported for backwards compatibility, but not being used internally anymore\ntype Hash = string;\ntype Pathname = string;\ntype Search = string;\n\n// Expose react-router public API\nexport type {\n ActionFunction,\n ActionFunctionArgs,\n AwaitProps,\n Blocker as unstable_Blocker,\n BlockerFunction as unstable_BlockerFunction,\n DataRouteMatch,\n DataRouteObject,\n Fetcher,\n Hash,\n IndexRouteObject,\n IndexRouteProps,\n JsonFunction,\n LazyRouteFunction,\n LayoutRouteProps,\n LoaderFunction,\n LoaderFunctionArgs,\n Location,\n MemoryRouterProps,\n NavigateFunction,\n NavigateOptions,\n NavigateProps,\n Navigation,\n Navigator,\n NonIndexRouteObject,\n OutletProps,\n Params,\n ParamParseKey,\n Path,\n PathMatch,\n Pathname,\n PathPattern,\n PathRouteProps,\n RedirectFunction,\n RelativeRoutingType,\n RouteMatch,\n RouteObject,\n RouteProps,\n RouterProps,\n RouterProviderProps,\n RoutesProps,\n Search,\n ShouldRevalidateFunction,\n To,\n};\nexport {\n AbortedDeferredError,\n Await,\n MemoryRouter,\n Navigate,\n NavigationType,\n Outlet,\n Route,\n Router,\n RouterProvider,\n Routes,\n createPath,\n createRoutesFromChildren,\n createRoutesFromChildren as createRoutesFromElements,\n defer,\n isRouteErrorResponse,\n generatePath,\n json,\n matchPath,\n matchRoutes,\n parsePath,\n redirect,\n renderMatches,\n resolvePath,\n useActionData,\n useAsyncError,\n useAsyncValue,\n useBlocker as unstable_useBlocker,\n useHref,\n useInRouterContext,\n useLoaderData,\n useLocation,\n useMatch,\n useMatches,\n useNavigate,\n useNavigation,\n useNavigationType,\n useOutlet,\n useOutletContext,\n useParams,\n useResolvedPath,\n useRevalidator,\n useRouteError,\n useRouteLoaderData,\n useRoutes,\n};\n\nfunction mapRouteProperties(route: RouteObject) {\n let updates: Partial<RouteObject> & { hasErrorBoundary: boolean } = {\n // Note: this check also occurs in createRoutesFromChildren so update\n // there if you change this -- please and thank you!\n hasErrorBoundary: route.ErrorBoundary != null || route.errorElement != null,\n };\n\n if (route.Component) {\n if (__DEV__) {\n if (route.element) {\n warning(\n false,\n \"You should not include both `Component` and `element` on your route - \" +\n \"`Component` will be used.\"\n );\n }\n }\n Object.assign(updates, {\n element: React.createElement(route.Component),\n Component: undefined,\n });\n }\n\n if (route.ErrorBoundary) {\n if (__DEV__) {\n if (route.errorElement) {\n warning(\n false,\n \"You should not include both `ErrorBoundary` and `errorElement` on your route - \" +\n \"`ErrorBoundary` will be used.\"\n );\n }\n }\n Object.assign(updates, {\n errorElement: React.createElement(route.ErrorBoundary),\n ErrorBoundary: undefined,\n });\n }\n\n return updates;\n}\n\nexport function createMemoryRouter(\n routes: RouteObject[],\n opts?: {\n basename?: string;\n future?: Partial<Omit<FutureConfig, \"v7_prependBasename\">>;\n hydrationData?: HydrationState;\n initialEntries?: InitialEntry[];\n initialIndex?: number;\n }\n): RemixRouter {\n return createRouter({\n basename: opts?.basename,\n future: {\n ...opts?.future,\n v7_prependBasename: true,\n },\n history: createMemoryHistory({\n initialEntries: opts?.initialEntries,\n initialIndex: opts?.initialIndex,\n }),\n hydrationData: opts?.hydrationData,\n routes,\n mapRouteProperties,\n }).initialize();\n}\n\n///////////////////////////////////////////////////////////////////////////////\n// DANGER! PLEASE READ ME!\n// We provide these exports as an escape hatch in the event that you need any\n// routing data that we don't provide an explicit API for. With that said, we\n// want to cover your use case if we can, so if you feel the need to use these\n// we want to hear from you. Let us know what you're building and we'll do our\n// best to make sure we can support you!\n//\n// We consider these exports an implementation detail and do not guarantee\n// against any breaking changes, regardless of the semver release. Use with\n// extreme caution and only if you understand the consequences. Godspeed.\n///////////////////////////////////////////////////////////////////////////////\n\n/** @internal */\nexport {\n NavigationContext as UNSAFE_NavigationContext,\n LocationContext as UNSAFE_LocationContext,\n RouteContext as UNSAFE_RouteContext,\n DataRouterContext as UNSAFE_DataRouterContext,\n DataRouterStateContext as UNSAFE_DataRouterStateContext,\n mapRouteProperties as UNSAFE_mapRouteProperties,\n useRouteId as UNSAFE_useRouteId,\n useRoutesImpl as UNSAFE_useRoutesImpl,\n};\n"],"names":["DataRouterContext","React","createContext","displayName","DataRouterStateContext","AwaitContext","NavigationContext","LocationContext","RouteContext","outlet","matches","isDataRoute","RouteErrorContext","useHref","to","relative","useInRouterContext","invariant","basename","navigator","useContext","hash","pathname","search","useResolvedPath","joinedPathname","joinPaths","createHref","useLocation","location","useNavigationType","navigationType","useMatch","pattern","useMemo","matchPath","navigateEffectWarning","useIsomorphicLayoutEffect","cb","isStatic","static","useLayoutEffect","useNavigate","useNavigateStable","useNavigateUnstable","dataRouterContext","locationPathname","routePathnamesJson","JSON","stringify","getPathContributingMatches","map","match","pathnameBase","activeRef","useRef","current","navigate","useCallback","options","warning","go","path","resolveTo","parse","replace","push","state","OutletContext","useOutletContext","useOutlet","context","useParams","routeMatch","length","params","useRoutes","routes","locationArg","useRoutesImpl","dataRouterState","parentMatches","parentParams","parentPathname","parentPathnameBase","parentRoute","route","parentPath","warningOnce","endsWith","locationFromContext","parsedLocationArg","parsePath","startsWith","remainingPathname","slice","matchRoutes","element","undefined","Component","renderedMatches","_renderMatches","Object","assign","encodeLocation","key","NavigationType","Pop","DefaultErrorComponent","error","useRouteError","message","isRouteErrorResponse","status","statusText","Error","stack","lightgrey","preStyles","padding","backgroundColor","codeStyles","devInfo","console","fontStyle","defaultErrorElement","RenderErrorBoundary","constructor","props","revalidation","getDerivedStateFromError","getDerivedStateFromProps","componentDidCatch","errorInfo","render","routeContext","component","children","RenderedRoute","staticContext","errorElement","ErrorBoundary","_deepestRenderedBoundaryId","id","errors","errorIndex","findIndex","m","keys","join","Math","min","reduceRight","index","concat","getChildren","DataRouterHook","DataRouterStateHook","getDataRouterConsoleError","hookName","useDataRouterContext","ctx","useDataRouterState","useRouteContext","useCurrentRouteId","thisRoute","useRouteId","UseRouteId","useNavigation","UseNavigation","navigation","useRevalidator","UseRevalidator","revalidate","router","useMatches","loaderData","UseMatches","data","handle","useLoaderData","UseLoaderData","routeId","useRouteLoaderData","UseRouteLoaderData","useActionData","UseActionData","values","actionData","UseRouteError","useAsyncValue","value","_data","useAsyncError","_error","blockerId","useBlocker","shouldBlock","UseBlocker","blockerKey","useState","String","blockerFunction","args","blocker","getBlocker","useEffect","deleteBlocker","blockers","get","UseNavigateStable","fromRouteId","alreadyWarned","cond","RouterProvider","fallbackElement","setState","subscribe","n","opts","preventScrollReset","historyAction","initialized","DataRoutes","MemoryRouter","initialEntries","initialIndex","historyRef","createMemoryHistory","v5Compat","history","action","listen","Navigate","jsonPath","Outlet","Route","_props","Router","basenameProp","locationProp","staticProp","navigationContext","locationContext","trailingPathname","stripBasename","Routes","createRoutesFromChildren","Await","resolve","AwaitRenderStatus","neverSettledPromise","Promise","AwaitErrorBoundary","promise","pending","success","defineProperty","renderError","reject","catch","_tracked","then","AbortedDeferredError","ResolveAwait","toRender","Children","forEach","isValidElement","treePath","type","Fragment","apply","name","caseSensitive","loader","hasErrorBoundary","shouldRevalidate","lazy","renderMatches","mapRouteProperties","updates","createElement","createMemoryRouter","createRouter","future","v7_prependBasename","hydrationData","initialize"],"mappings":"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"}
\No newline at end of file