UNPKG

85.6 kBSource Map (JSON)View Raw
1{"version":3,"file":"react-router.production.min.js","sources":["../lib/context.ts","../lib/hooks.tsx","../lib/components.tsx","../index.ts"],"sourcesContent":["import * as React from \"react\";\nimport type {\n AgnosticIndexRouteObject,\n AgnosticNonIndexRouteObject,\n AgnosticRouteMatch,\n History,\n LazyRouteFunction,\n Location,\n Action as NavigationType,\n RelativeRoutingType,\n Router,\n StaticHandlerContext,\n To,\n TrackedPromise,\n} 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<RouteObject>;\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<RouteObject>;\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 UIMatch,\n} from \"@remix-run/router\";\nimport {\n IDLE_BLOCKER,\n Action as NavigationType,\n UNSAFE_convertRouteMatchToUiMatch as convertRouteMatchToUiMatch,\n UNSAFE_getPathContributingMatches as getPathContributingMatches,\n UNSAFE_invariant as invariant,\n isRouteErrorResponse,\n joinPaths,\n matchPath,\n matchRoutes,\n parsePath,\n resolveTo,\n stripBasename,\n UNSAFE_warning as warning,\n} from \"@remix-run/router\";\n\nimport type {\n DataRouteMatch,\n NavigateOptions,\n RouteContextObject,\n RouteMatch,\n RouteObject,\n} from \"./context\";\nimport {\n AwaitContext,\n DataRouterContext,\n DataRouterStateContext,\n LocationContext,\n NavigationContext,\n RouteContext,\n RouteErrorContext,\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 React.useMemo(\n () => ({\n revalidate: dataRouterContext.router.revalidate,\n state: state.revalidation,\n }),\n [dataRouterContext.router.revalidate, 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(): UIMatch[] {\n let { matches, loaderData } = useDataRouterState(\n DataRouterStateHook.UseMatches\n );\n return React.useMemo(\n () => matches.map((m) => convertRouteMatchToUiMatch(m, loaderData)),\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, basename } = useDataRouterContext(DataRouterHook.UseBlocker);\n let state = useDataRouterState(DataRouterStateHook.UseBlocker);\n\n let [blockerKey, setBlockerKey] = React.useState(\"\");\n let blockerFunction = React.useCallback<BlockerFunction>(\n (arg) => {\n if (typeof shouldBlock !== \"function\") {\n return !!shouldBlock;\n }\n if (basename === \"/\") {\n return shouldBlock(arg);\n }\n\n // If they provided us a function and we've got an active basename, strip\n // it from the locations we expose to the user to match the behavior of\n // useLocation\n let { currentLocation, nextLocation, historyAction } = arg;\n return shouldBlock({\n currentLocation: {\n ...currentLocation,\n pathname:\n stripBasename(currentLocation.pathname, basename) ||\n currentLocation.pathname,\n },\n nextLocation: {\n ...nextLocation,\n pathname:\n stripBasename(nextLocation.pathname, basename) ||\n nextLocation.pathname,\n },\n historyAction,\n });\n },\n [basename, shouldBlock]\n );\n\n // This effect is in charge of blocker key assignment and deletion (which is\n // tightly coupled to the key)\n React.useEffect(() => {\n let key = String(++blockerId);\n setBlockerKey(key);\n return () => router.deleteBlocker(key);\n }, [router]);\n\n // This effect handles assigning the blockerFunction. This is to handle\n // unstable blocker function identities, and happens only after the prior\n // effect so we don't get an orphaned blockerFunction in the router with a\n // key of \"\". Until then we just have the IDLE_BLOCKER.\n React.useEffect(() => {\n if (blockerKey !== \"\") {\n router.getBlocker(blockerKey, blockerFunction);\n }\n }, [router, blockerKey, blockerFunction]);\n\n // Prefer the blocker from `state` not `router.state` since DataRouterContext\n // is memoized so this ensures we update on blocker state updates\n return blockerKey && state.blockers.has(blockerKey)\n ? state.blockers.get(blockerKey)!\n : IDLE_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 type {\n InitialEntry,\n LazyRouteFunction,\n Location,\n MemoryHistory,\n RelativeRoutingType,\n Router as RemixRouter,\n RouterState,\n To,\n TrackedPromise,\n} from \"@remix-run/router\";\nimport {\n AbortedDeferredError,\n Action as NavigationType,\n createMemoryHistory,\n UNSAFE_getPathContributingMatches as getPathContributingMatches,\n UNSAFE_invariant as invariant,\n parsePath,\n resolveTo,\n stripBasename,\n UNSAFE_warning as warning,\n} from \"@remix-run/router\";\nimport * as React from \"react\";\n\nimport type {\n DataRouteObject,\n IndexRouteObject,\n Navigator,\n NonIndexRouteObject,\n RouteMatch,\n RouteObject,\n} from \"./context\";\nimport {\n AwaitContext,\n DataRouterContext,\n DataRouterStateContext,\n LocationContext,\n NavigationContext,\n RouteContext,\n} from \"./context\";\nimport {\n _renderMatches,\n useAsyncValue,\n useInRouterContext,\n useLocation,\n useNavigate,\n useOutlet,\n useRoutes,\n useRoutesImpl,\n} from \"./hooks\";\n\nexport interface FutureConfig {\n v7_startTransition: boolean;\n}\n\nexport interface RouterProviderProps {\n fallbackElement?: React.ReactNode;\n router: RemixRouter;\n future?: FutureConfig;\n}\n\n/**\n Webpack + React 17 fails to compile on any of the following because webpack\n complains that `startTransition` doesn't exist in `React`:\n * import { startTransition } from \"react\"\n * import * as React from from \"react\";\n \"startTransition\" in React ? React.startTransition(() => setState()) : setState()\n * import * as React from from \"react\";\n \"startTransition\" in React ? React[\"startTransition\"](() => setState()) : setState()\n\n Moving it to a constant such as the following solves the Webpack/React 17 issue:\n * import * as React from from \"react\";\n const START_TRANSITION = \"startTransition\";\n START_TRANSITION in React ? React[START_TRANSITION](() => setState()) : setState()\n\n However, that introduces webpack/terser minification issues in production builds\n in React 18 where minification/obfuscation ends up removing the call of\n React.startTransition entirely from the first half of the ternary. Grabbing\n this exported reference once up front resolves that issue.\n\n See https://github.com/remix-run/react-router/issues/10579\n*/\nconst START_TRANSITION = \"startTransition\";\nconst startTransitionImpl = React[START_TRANSITION];\n\n/**\n * Given a Remix Router instance, render the appropriate UI\n */\nexport function RouterProvider({\n fallbackElement,\n router,\n future,\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, setStateImpl] = React.useState(router.state);\n let { v7_startTransition } = future || {};\n let setState = React.useCallback(\n (newState: RouterState) => {\n v7_startTransition && startTransitionImpl\n ? startTransitionImpl(() => setStateImpl(newState))\n : setStateImpl(newState);\n },\n [setStateImpl, v7_startTransition]\n );\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={basename}\n location={state.location}\n navigationType={state.historyAction}\n navigator={navigator}\n >\n {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 future?: FutureConfig;\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 future,\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, setStateImpl] = React.useState({\n action: history.action,\n location: history.location,\n });\n let { v7_startTransition } = future || {};\n let setState = React.useCallback(\n (newState: { action: NavigationType; location: Location }) => {\n v7_startTransition && startTransitionImpl\n ? startTransitionImpl(() => setStateImpl(newState))\n : setStateImpl(newState);\n },\n [setStateImpl, v7_startTransition]\n );\n\n React.useLayoutEffect(() => history.listen(setState), [history, setState]);\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 ErrorResponse,\n Fetcher,\n HydrationState,\n InitialEntry,\n JsonFunction,\n LazyRouteFunction,\n LoaderFunction,\n LoaderFunctionArgs,\n Location,\n Navigation,\n ParamParseKey,\n Params,\n Path,\n PathMatch,\n PathPattern,\n RedirectFunction,\n RelativeRoutingType,\n Router as RemixRouter,\n FutureConfig as RouterFutureConfig,\n ShouldRevalidateFunction,\n ShouldRevalidateFunctionArgs,\n To,\n UIMatch,\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 redirectDocument,\n resolvePath,\n UNSAFE_warning as warning,\n} from \"@remix-run/router\";\n\nimport type {\n AwaitProps,\n FutureConfig,\n IndexRouteProps,\n LayoutRouteProps,\n MemoryRouterProps,\n NavigateProps,\n OutletProps,\n PathRouteProps,\n RouteProps,\n RouterProps,\n RouterProviderProps,\n RoutesProps,\n} from \"./lib/components\";\nimport {\n Await,\n MemoryRouter,\n Navigate,\n Outlet,\n Route,\n Router,\n RouterProvider,\n Routes,\n createRoutesFromChildren,\n renderMatches,\n} from \"./lib/components\";\nimport type {\n DataRouteMatch,\n DataRouteObject,\n IndexRouteObject,\n NavigateOptions,\n Navigator,\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 useActionData,\n useAsyncError,\n useAsyncValue,\n 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 useRouteId,\n useRouteLoaderData,\n useRoutes,\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 DataRouteMatch,\n DataRouteObject,\n ErrorResponse,\n Fetcher,\n FutureConfig,\n Hash,\n IndexRouteObject,\n IndexRouteProps,\n JsonFunction,\n LayoutRouteProps,\n LazyRouteFunction,\n LoaderFunction,\n LoaderFunctionArgs,\n Location,\n MemoryRouterProps,\n NavigateFunction,\n NavigateOptions,\n NavigateProps,\n Navigation,\n Navigator,\n NonIndexRouteObject,\n OutletProps,\n ParamParseKey,\n Params,\n Path,\n PathMatch,\n PathPattern,\n PathRouteProps,\n Pathname,\n RedirectFunction,\n RelativeRoutingType,\n RouteMatch,\n RouteObject,\n RouteProps,\n RouterProps,\n RouterProviderProps,\n RoutesProps,\n Search,\n ShouldRevalidateFunction,\n ShouldRevalidateFunctionArgs,\n To,\n UIMatch,\n Blocker as unstable_Blocker,\n BlockerFunction as unstable_BlockerFunction,\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 generatePath,\n isRouteErrorResponse,\n json,\n matchPath,\n matchRoutes,\n parsePath,\n redirect,\n redirectDocument,\n renderMatches,\n resolvePath,\n useBlocker as unstable_useBlocker,\n useActionData,\n useAsyncError,\n useAsyncValue,\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<RouterFutureConfig, \"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 DataRouterContext as UNSAFE_DataRouterContext,\n DataRouterStateContext as UNSAFE_DataRouterStateContext,\n LocationContext as UNSAFE_LocationContext,\n NavigationContext as UNSAFE_NavigationContext,\n RouteContext as UNSAFE_RouteContext,\n mapRouteProperties as UNSAFE_mapRouteProperties,\n useRouteId as UNSAFE_useRouteId,\n useRoutesImpl as UNSAFE_useRoutesImpl,\n};\n"],"names":["DataRouterContext","React","createContext","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","useIsomorphicLayoutEffect","cb","static","useLayoutEffect","useNavigate","router","useDataRouterContext","DataRouterHook","UseNavigateStable","id","useCurrentRouteId","DataRouterStateHook","activeRef","useRef","current","useCallback","options","navigate","fromRouteId","useNavigateStable","dataRouterContext","locationPathname","routePathnamesJson","JSON","stringify","getPathContributingMatches","map","match","pathnameBase","go","path","resolveTo","parse","replace","push","state","useNavigateUnstable","OutletContext","useOutletContext","useOutlet","context","createElement","Provider","value","useParams","routeMatch","length","params","useRoutes","routes","locationArg","useRoutesImpl","dataRouterState","parentMatches","parentParams","parentPathnameBase","route","locationFromContext","parsedLocationArg","parsePath","startsWith","remainingPathname","slice","matchRoutes","renderedMatches","_renderMatches","Object","assign","encodeLocation","key","NavigationType","Pop","DefaultErrorComponent","error","useRouteError","message","isRouteErrorResponse","status","statusText","Error","stack","preStyles","padding","backgroundColor","Fragment","style","fontStyle","defaultErrorElement","RenderErrorBoundary","Component","constructor","props","super","this","revalidation","componentDidCatch","errorInfo","console","render","routeContext","children","component","RenderedRoute","staticContext","errorElement","ErrorBoundary","_deepestRenderedBoundaryId","errors","errorIndex","findIndex","m","Math","min","reduceRight","index","concat","getChildren","element","hookName","ctx","useDataRouterState","useRouteContext","thisRoute","useRouteId","UseRouteId","useNavigation","UseNavigation","navigation","useRevalidator","UseRevalidator","revalidate","useMatches","loaderData","UseMatches","convertRouteMatchToUiMatch","useLoaderData","UseLoaderData","routeId","useRouteLoaderData","UseRouteLoaderData","useActionData","UseActionData","values","actionData","UseRouteError","useAsyncValue","_data","useAsyncError","_error","blockerId","useBlocker","shouldBlock","UseBlocker","blockerKey","setBlockerKey","useState","blockerFunction","arg","currentLocation","nextLocation","historyAction","stripBasename","useEffect","String","deleteBlocker","getBlocker","blockers","has","get","IDLE_BLOCKER","startTransitionImpl","RouterProvider","fallbackElement","future","setStateImpl","v7_startTransition","setState","newState","subscribe","n","opts","preventScrollReset","Router","initialized","DataRoutes","undefined","MemoryRouter","initialEntries","initialIndex","historyRef","createMemoryHistory","v5Compat","history","action","listen","Navigate","jsonPath","Outlet","Route","_props","basenameProp","locationProp","staticProp","navigationContext","locationContext","trailingPathname","Routes","createRoutesFromChildren","Await","resolve","AwaitErrorBoundary","ResolveAwait","AwaitRenderStatus","neverSettledPromise","Promise","promise","pending","renderError","reject","catch","defineProperty","_tracked","success","then","data","AbortedDeferredError","toRender","parentPath","Children","forEach","isValidElement","treePath","type","apply","join","caseSensitive","loader","hasErrorBoundary","shouldRevalidate","handle","lazy","renderMatches","mapRouteProperties","updates","createMemoryRouter","createRouter","v7_prependBasename","hydrationData","initialize"],"mappings":"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"}
\No newline at end of file