1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 | import * as React from 'react';
|
12 | import { UNSAFE_invariant, joinPaths, matchPath, UNSAFE_getPathContributingMatches, UNSAFE_warning, resolveTo, parsePath, matchRoutes, Action, isRouteErrorResponse, createMemoryHistory, stripBasename, AbortedDeferredError, createRouter } from '@remix-run/router';
|
13 | export { AbortedDeferredError, Action as NavigationType, createPath, defer, generatePath, isRouteErrorResponse, json, matchPath, matchRoutes, parsePath, redirect, resolvePath } from '@remix-run/router';
|
14 |
|
15 | const DataRouterContext = React.createContext(null);
|
16 | {
|
17 | DataRouterContext.displayName = "DataRouter";
|
18 | }
|
19 | const DataRouterStateContext = React.createContext(null);
|
20 | {
|
21 | DataRouterStateContext.displayName = "DataRouterState";
|
22 | }
|
23 | const AwaitContext = React.createContext(null);
|
24 | {
|
25 | AwaitContext.displayName = "Await";
|
26 | }
|
27 | const NavigationContext = React.createContext(null);
|
28 | {
|
29 | NavigationContext.displayName = "Navigation";
|
30 | }
|
31 | const LocationContext = React.createContext(null);
|
32 | {
|
33 | LocationContext.displayName = "Location";
|
34 | }
|
35 | const RouteContext = React.createContext({
|
36 | outlet: null,
|
37 | matches: [],
|
38 | isDataRoute: false
|
39 | });
|
40 | {
|
41 | RouteContext.displayName = "Route";
|
42 | }
|
43 | const RouteErrorContext = React.createContext(null);
|
44 | {
|
45 | RouteErrorContext.displayName = "RouteError";
|
46 | }
|
47 |
|
48 |
|
49 |
|
50 |
|
51 |
|
52 |
|
53 |
|
54 | function useHref(to, {
|
55 | relative
|
56 | } = {}) {
|
57 | !useInRouterContext() ? UNSAFE_invariant(false,
|
58 |
|
59 |
|
60 | `useHref() may be used only in the context of a <Router> component.`) : void 0;
|
61 | let {
|
62 | basename,
|
63 | navigator
|
64 | } = React.useContext(NavigationContext);
|
65 | let {
|
66 | hash,
|
67 | pathname,
|
68 | search
|
69 | } = useResolvedPath(to, {
|
70 | relative
|
71 | });
|
72 | let joinedPathname = pathname;
|
73 |
|
74 |
|
75 |
|
76 |
|
77 | if (basename !== "/") {
|
78 | joinedPathname = pathname === "/" ? basename : joinPaths([basename, pathname]);
|
79 | }
|
80 | return navigator.createHref({
|
81 | pathname: joinedPathname,
|
82 | search,
|
83 | hash
|
84 | });
|
85 | }
|
86 |
|
87 |
|
88 |
|
89 |
|
90 |
|
91 | function useInRouterContext() {
|
92 | return React.useContext(LocationContext) != null;
|
93 | }
|
94 |
|
95 |
|
96 |
|
97 |
|
98 |
|
99 |
|
100 |
|
101 |
|
102 |
|
103 |
|
104 | function useLocation() {
|
105 | !useInRouterContext() ? UNSAFE_invariant(false,
|
106 |
|
107 |
|
108 | `useLocation() may be used only in the context of a <Router> component.`) : void 0;
|
109 | return React.useContext(LocationContext).location;
|
110 | }
|
111 |
|
112 |
|
113 |
|
114 |
|
115 |
|
116 |
|
117 | function useNavigationType() {
|
118 | return React.useContext(LocationContext).navigationType;
|
119 | }
|
120 |
|
121 |
|
122 |
|
123 |
|
124 |
|
125 |
|
126 |
|
127 | function useMatch(pattern) {
|
128 | !useInRouterContext() ? UNSAFE_invariant(false,
|
129 |
|
130 |
|
131 | `useMatch() may be used only in the context of a <Router> component.`) : void 0;
|
132 | let {
|
133 | pathname
|
134 | } = useLocation();
|
135 | return React.useMemo(() => matchPath(pattern, pathname), [pathname, pattern]);
|
136 | }
|
137 | const navigateEffectWarning = `You should call navigate() in a React.useEffect(), not when ` + `your component is first rendered.`;
|
138 |
|
139 | function useIsomorphicLayoutEffect(cb) {
|
140 | let isStatic = React.useContext(NavigationContext).static;
|
141 | if (!isStatic) {
|
142 |
|
143 |
|
144 |
|
145 | React.useLayoutEffect(cb);
|
146 | }
|
147 | }
|
148 |
|
149 |
|
150 |
|
151 |
|
152 |
|
153 |
|
154 | function useNavigate() {
|
155 | let {
|
156 | isDataRoute
|
157 | } = React.useContext(RouteContext);
|
158 |
|
159 |
|
160 | return isDataRoute ? useNavigateStable() : useNavigateUnstable();
|
161 | }
|
162 | function useNavigateUnstable() {
|
163 | !useInRouterContext() ? UNSAFE_invariant(false,
|
164 |
|
165 |
|
166 | `useNavigate() may be used only in the context of a <Router> component.`) : void 0;
|
167 | let dataRouterContext = React.useContext(DataRouterContext);
|
168 | let {
|
169 | basename,
|
170 | navigator
|
171 | } = React.useContext(NavigationContext);
|
172 | let {
|
173 | matches
|
174 | } = React.useContext(RouteContext);
|
175 | let {
|
176 | pathname: locationPathname
|
177 | } = useLocation();
|
178 | let routePathnamesJson = JSON.stringify(UNSAFE_getPathContributingMatches(matches).map(match => match.pathnameBase));
|
179 | let activeRef = React.useRef(false);
|
180 | useIsomorphicLayoutEffect(() => {
|
181 | activeRef.current = true;
|
182 | });
|
183 | let navigate = React.useCallback((to, options = {}) => {
|
184 | UNSAFE_warning(activeRef.current, navigateEffectWarning) ;
|
185 |
|
186 |
|
187 | if (!activeRef.current) return;
|
188 | if (typeof to === "number") {
|
189 | navigator.go(to);
|
190 | return;
|
191 | }
|
192 | let path = resolveTo(to, JSON.parse(routePathnamesJson), locationPathname, options.relative === "path");
|
193 |
|
194 |
|
195 |
|
196 |
|
197 |
|
198 |
|
199 | if (dataRouterContext == null && basename !== "/") {
|
200 | path.pathname = path.pathname === "/" ? basename : joinPaths([basename, path.pathname]);
|
201 | }
|
202 | (!!options.replace ? navigator.replace : navigator.push)(path, options.state, options);
|
203 | }, [basename, navigator, routePathnamesJson, locationPathname, dataRouterContext]);
|
204 | return navigate;
|
205 | }
|
206 | const OutletContext = React.createContext(null);
|
207 |
|
208 |
|
209 |
|
210 |
|
211 |
|
212 | function useOutletContext() {
|
213 | return React.useContext(OutletContext);
|
214 | }
|
215 |
|
216 |
|
217 |
|
218 |
|
219 |
|
220 |
|
221 | function useOutlet(context) {
|
222 | let outlet = React.useContext(RouteContext).outlet;
|
223 | if (outlet) {
|
224 | return React.createElement(OutletContext.Provider, {
|
225 | value: context
|
226 | }, outlet);
|
227 | }
|
228 | return outlet;
|
229 | }
|
230 |
|
231 |
|
232 |
|
233 |
|
234 |
|
235 |
|
236 | function useParams() {
|
237 | let {
|
238 | matches
|
239 | } = React.useContext(RouteContext);
|
240 | let routeMatch = matches[matches.length - 1];
|
241 | return routeMatch ? routeMatch.params : {};
|
242 | }
|
243 |
|
244 |
|
245 |
|
246 |
|
247 |
|
248 | function useResolvedPath(to, {
|
249 | relative
|
250 | } = {}) {
|
251 | let {
|
252 | matches
|
253 | } = React.useContext(RouteContext);
|
254 | let {
|
255 | pathname: locationPathname
|
256 | } = useLocation();
|
257 | let routePathnamesJson = JSON.stringify(UNSAFE_getPathContributingMatches(matches).map(match => match.pathnameBase));
|
258 | return React.useMemo(() => resolveTo(to, JSON.parse(routePathnamesJson), locationPathname, relative === "path"), [to, routePathnamesJson, locationPathname, relative]);
|
259 | }
|
260 |
|
261 |
|
262 |
|
263 |
|
264 |
|
265 |
|
266 |
|
267 |
|
268 | function useRoutes(routes, locationArg) {
|
269 | return useRoutesImpl(routes, locationArg);
|
270 | }
|
271 |
|
272 | function useRoutesImpl(routes, locationArg, dataRouterState) {
|
273 | !useInRouterContext() ? UNSAFE_invariant(false,
|
274 |
|
275 |
|
276 | `useRoutes() may be used only in the context of a <Router> component.`) : void 0;
|
277 | let {
|
278 | navigator
|
279 | } = React.useContext(NavigationContext);
|
280 | let {
|
281 | matches: parentMatches
|
282 | } = React.useContext(RouteContext);
|
283 | let routeMatch = parentMatches[parentMatches.length - 1];
|
284 | let parentParams = routeMatch ? routeMatch.params : {};
|
285 | let parentPathname = routeMatch ? routeMatch.pathname : "/";
|
286 | let parentPathnameBase = routeMatch ? routeMatch.pathnameBase : "/";
|
287 | let parentRoute = routeMatch && routeMatch.route;
|
288 | {
|
289 |
|
290 |
|
291 |
|
292 |
|
293 |
|
294 |
|
295 |
|
296 |
|
297 |
|
298 |
|
299 |
|
300 |
|
301 |
|
302 |
|
303 |
|
304 |
|
305 |
|
306 |
|
307 |
|
308 |
|
309 | let parentPath = parentRoute && parentRoute.path || "";
|
310 | warningOnce(parentPathname, !parentRoute || parentPath.endsWith("*"), `You rendered descendant <Routes> (or called \`useRoutes()\`) at ` + `"${parentPathname}" (under <Route path="${parentPath}">) but the ` + `parent route path has no trailing "*". This means if you navigate ` + `deeper, the parent won't match anymore and therefore the child ` + `routes will never render.\n\n` + `Please change the parent <Route path="${parentPath}"> to <Route ` + `path="${parentPath === "/" ? "*" : `${parentPath}/*`}">.`);
|
311 | }
|
312 | let locationFromContext = useLocation();
|
313 | let location;
|
314 | if (locationArg) {
|
315 | let parsedLocationArg = typeof locationArg === "string" ? parsePath(locationArg) : locationArg;
|
316 | !(parentPathnameBase === "/" || parsedLocationArg.pathname?.startsWith(parentPathnameBase)) ? UNSAFE_invariant(false, `When overriding the location using \`<Routes location>\` or \`useRoutes(routes, location)\`, ` + `the location pathname must begin with the portion of the URL pathname that was ` + `matched by all parent routes. The current pathname base is "${parentPathnameBase}" ` + `but pathname "${parsedLocationArg.pathname}" was given in the \`location\` prop.`) : void 0;
|
317 | location = parsedLocationArg;
|
318 | } else {
|
319 | location = locationFromContext;
|
320 | }
|
321 | let pathname = location.pathname || "/";
|
322 | let remainingPathname = parentPathnameBase === "/" ? pathname : pathname.slice(parentPathnameBase.length) || "/";
|
323 | let matches = matchRoutes(routes, {
|
324 | pathname: remainingPathname
|
325 | });
|
326 | {
|
327 | UNSAFE_warning(parentRoute || matches != null, `No routes matched location "${location.pathname}${location.search}${location.hash}" `) ;
|
328 | UNSAFE_warning(matches == null || matches[matches.length - 1].route.element !== undefined || matches[matches.length - 1].route.Component !== undefined, `Matched leaf route at location "${location.pathname}${location.search}${location.hash}" ` + `does not have an element or Component. This means it will render an <Outlet /> with a ` + `null value by default resulting in an "empty" page.`) ;
|
329 | }
|
330 | let renderedMatches = _renderMatches(matches && matches.map(match => Object.assign({}, match, {
|
331 | params: Object.assign({}, parentParams, match.params),
|
332 | pathname: joinPaths([parentPathnameBase,
|
333 |
|
334 | navigator.encodeLocation ? navigator.encodeLocation(match.pathname).pathname : match.pathname]),
|
335 | pathnameBase: match.pathnameBase === "/" ? parentPathnameBase : joinPaths([parentPathnameBase,
|
336 |
|
337 | navigator.encodeLocation ? navigator.encodeLocation(match.pathnameBase).pathname : match.pathnameBase])
|
338 | })), parentMatches, dataRouterState);
|
339 |
|
340 |
|
341 |
|
342 | if (locationArg && renderedMatches) {
|
343 | return React.createElement(LocationContext.Provider, {
|
344 | value: {
|
345 | location: {
|
346 | pathname: "/",
|
347 | search: "",
|
348 | hash: "",
|
349 | state: null,
|
350 | key: "default",
|
351 | ...location
|
352 | },
|
353 | navigationType: Action.Pop
|
354 | }
|
355 | }, renderedMatches);
|
356 | }
|
357 | return renderedMatches;
|
358 | }
|
359 | function DefaultErrorComponent() {
|
360 | let error = useRouteError();
|
361 | let message = isRouteErrorResponse(error) ? `${error.status} ${error.statusText}` : error instanceof Error ? error.message : JSON.stringify(error);
|
362 | let stack = error instanceof Error ? error.stack : null;
|
363 | let lightgrey = "rgba(200,200,200, 0.5)";
|
364 | let preStyles = {
|
365 | padding: "0.5rem",
|
366 | backgroundColor: lightgrey
|
367 | };
|
368 | let codeStyles = {
|
369 | padding: "2px 4px",
|
370 | backgroundColor: lightgrey
|
371 | };
|
372 | let devInfo = null;
|
373 | {
|
374 | console.error("Error handled by React Router default ErrorBoundary:", error);
|
375 | devInfo = React.createElement(React.Fragment, null, React.createElement("p", null, "\uD83D\uDCBF Hey developer \uD83D\uDC4B"), React.createElement("p", null, "You can provide a way better UX than this when your app throws errors by providing your own ", React.createElement("code", {
|
376 | style: codeStyles
|
377 | }, "ErrorBoundary"), " or", " ", React.createElement("code", {
|
378 | style: codeStyles
|
379 | }, "errorElement"), " prop on your route."));
|
380 | }
|
381 | return React.createElement(React.Fragment, null, React.createElement("h2", null, "Unexpected Application Error!"), React.createElement("h3", {
|
382 | style: {
|
383 | fontStyle: "italic"
|
384 | }
|
385 | }, message), stack ? React.createElement("pre", {
|
386 | style: preStyles
|
387 | }, stack) : null, devInfo);
|
388 | }
|
389 | const defaultErrorElement = React.createElement(DefaultErrorComponent, null);
|
390 | class RenderErrorBoundary extends React.Component {
|
391 | constructor(props) {
|
392 | super(props);
|
393 | this.state = {
|
394 | location: props.location,
|
395 | revalidation: props.revalidation,
|
396 | error: props.error
|
397 | };
|
398 | }
|
399 | static getDerivedStateFromError(error) {
|
400 | return {
|
401 | error: error
|
402 | };
|
403 | }
|
404 | static getDerivedStateFromProps(props, state) {
|
405 |
|
406 |
|
407 |
|
408 |
|
409 |
|
410 |
|
411 |
|
412 |
|
413 | if (state.location !== props.location || state.revalidation !== "idle" && props.revalidation === "idle") {
|
414 | return {
|
415 | error: props.error,
|
416 | location: props.location,
|
417 | revalidation: props.revalidation
|
418 | };
|
419 | }
|
420 |
|
421 |
|
422 |
|
423 |
|
424 | return {
|
425 | error: props.error || state.error,
|
426 | location: state.location,
|
427 | revalidation: props.revalidation || state.revalidation
|
428 | };
|
429 | }
|
430 | componentDidCatch(error, errorInfo) {
|
431 | console.error("React Router caught the following error during render", error, errorInfo);
|
432 | }
|
433 | render() {
|
434 | return this.state.error ? React.createElement(RouteContext.Provider, {
|
435 | value: this.props.routeContext
|
436 | }, React.createElement(RouteErrorContext.Provider, {
|
437 | value: this.state.error,
|
438 | children: this.props.component
|
439 | })) : this.props.children;
|
440 | }
|
441 | }
|
442 | function RenderedRoute({
|
443 | routeContext,
|
444 | match,
|
445 | children
|
446 | }) {
|
447 | let dataRouterContext = React.useContext(DataRouterContext);
|
448 |
|
449 |
|
450 | if (dataRouterContext && dataRouterContext.static && dataRouterContext.staticContext && (match.route.errorElement || match.route.ErrorBoundary)) {
|
451 | dataRouterContext.staticContext._deepestRenderedBoundaryId = match.route.id;
|
452 | }
|
453 | return React.createElement(RouteContext.Provider, {
|
454 | value: routeContext
|
455 | }, children);
|
456 | }
|
457 | function _renderMatches(matches, parentMatches = [], dataRouterState = null) {
|
458 | if (matches == null) {
|
459 | if (dataRouterState?.errors) {
|
460 |
|
461 |
|
462 | matches = dataRouterState.matches;
|
463 | } else {
|
464 | return null;
|
465 | }
|
466 | }
|
467 | let renderedMatches = matches;
|
468 |
|
469 | let errors = dataRouterState?.errors;
|
470 | if (errors != null) {
|
471 | let errorIndex = renderedMatches.findIndex(m => m.route.id && errors?.[m.route.id]);
|
472 | !(errorIndex >= 0) ? UNSAFE_invariant(false, `Could not find a matching route for errors on route IDs: ${Object.keys(errors).join(",")}`) : void 0;
|
473 | renderedMatches = renderedMatches.slice(0, Math.min(renderedMatches.length, errorIndex + 1));
|
474 | }
|
475 | return renderedMatches.reduceRight((outlet, match, index) => {
|
476 | let error = match.route.id ? errors?.[match.route.id] : null;
|
477 |
|
478 | let errorElement = null;
|
479 | if (dataRouterState) {
|
480 | errorElement = match.route.errorElement || defaultErrorElement;
|
481 | }
|
482 | let matches = parentMatches.concat(renderedMatches.slice(0, index + 1));
|
483 | let getChildren = () => {
|
484 | let children;
|
485 | if (error) {
|
486 | children = errorElement;
|
487 | } else if (match.route.Component) {
|
488 |
|
489 |
|
490 |
|
491 |
|
492 |
|
493 |
|
494 | children = React.createElement(match.route.Component, null);
|
495 | } else if (match.route.element) {
|
496 | children = match.route.element;
|
497 | } else {
|
498 | children = outlet;
|
499 | }
|
500 | return React.createElement(RenderedRoute, {
|
501 | match: match,
|
502 | routeContext: {
|
503 | outlet,
|
504 | matches,
|
505 | isDataRoute: dataRouterState != null
|
506 | },
|
507 | children: children
|
508 | });
|
509 | };
|
510 |
|
511 |
|
512 |
|
513 | return dataRouterState && (match.route.ErrorBoundary || match.route.errorElement || index === 0) ? React.createElement(RenderErrorBoundary, {
|
514 | location: dataRouterState.location,
|
515 | revalidation: dataRouterState.revalidation,
|
516 | component: errorElement,
|
517 | error: error,
|
518 | children: getChildren(),
|
519 | routeContext: {
|
520 | outlet: null,
|
521 | matches,
|
522 | isDataRoute: true
|
523 | }
|
524 | }) : getChildren();
|
525 | }, null);
|
526 | }
|
527 | var DataRouterHook;
|
528 | (function (DataRouterHook) {
|
529 | DataRouterHook["UseBlocker"] = "useBlocker";
|
530 | DataRouterHook["UseRevalidator"] = "useRevalidator";
|
531 | DataRouterHook["UseNavigateStable"] = "useNavigate";
|
532 | })(DataRouterHook || (DataRouterHook = {}));
|
533 | var DataRouterStateHook;
|
534 | (function (DataRouterStateHook) {
|
535 | DataRouterStateHook["UseBlocker"] = "useBlocker";
|
536 | DataRouterStateHook["UseLoaderData"] = "useLoaderData";
|
537 | DataRouterStateHook["UseActionData"] = "useActionData";
|
538 | DataRouterStateHook["UseRouteError"] = "useRouteError";
|
539 | DataRouterStateHook["UseNavigation"] = "useNavigation";
|
540 | DataRouterStateHook["UseRouteLoaderData"] = "useRouteLoaderData";
|
541 | DataRouterStateHook["UseMatches"] = "useMatches";
|
542 | DataRouterStateHook["UseRevalidator"] = "useRevalidator";
|
543 | DataRouterStateHook["UseNavigateStable"] = "useNavigate";
|
544 | DataRouterStateHook["UseRouteId"] = "useRouteId";
|
545 | })(DataRouterStateHook || (DataRouterStateHook = {}));
|
546 | function getDataRouterConsoleError(hookName) {
|
547 | return `${hookName} must be used within a data router. See https://reactrouter.com/routers/picking-a-router.`;
|
548 | }
|
549 | function useDataRouterContext(hookName) {
|
550 | let ctx = React.useContext(DataRouterContext);
|
551 | !ctx ? UNSAFE_invariant(false, getDataRouterConsoleError(hookName)) : void 0;
|
552 | return ctx;
|
553 | }
|
554 | function useDataRouterState(hookName) {
|
555 | let state = React.useContext(DataRouterStateContext);
|
556 | !state ? UNSAFE_invariant(false, getDataRouterConsoleError(hookName)) : void 0;
|
557 | return state;
|
558 | }
|
559 | function useRouteContext(hookName) {
|
560 | let route = React.useContext(RouteContext);
|
561 | !route ? UNSAFE_invariant(false, getDataRouterConsoleError(hookName)) : void 0;
|
562 | return route;
|
563 | }
|
564 |
|
565 | function useCurrentRouteId(hookName) {
|
566 | let route = useRouteContext(hookName);
|
567 | let thisRoute = route.matches[route.matches.length - 1];
|
568 | !thisRoute.route.id ? UNSAFE_invariant(false, `${hookName} can only be used on routes that contain a unique "id"`) : void 0;
|
569 | return thisRoute.route.id;
|
570 | }
|
571 |
|
572 |
|
573 |
|
574 | function useRouteId() {
|
575 | return useCurrentRouteId(DataRouterStateHook.UseRouteId);
|
576 | }
|
577 |
|
578 |
|
579 |
|
580 |
|
581 | function useNavigation() {
|
582 | let state = useDataRouterState(DataRouterStateHook.UseNavigation);
|
583 | return state.navigation;
|
584 | }
|
585 |
|
586 |
|
587 |
|
588 |
|
589 | function useRevalidator() {
|
590 | let dataRouterContext = useDataRouterContext(DataRouterHook.UseRevalidator);
|
591 | let state = useDataRouterState(DataRouterStateHook.UseRevalidator);
|
592 | return {
|
593 | revalidate: dataRouterContext.router.revalidate,
|
594 | state: state.revalidation
|
595 | };
|
596 | }
|
597 |
|
598 |
|
599 |
|
600 |
|
601 | function useMatches() {
|
602 | let {
|
603 | matches,
|
604 | loaderData
|
605 | } = useDataRouterState(DataRouterStateHook.UseMatches);
|
606 | return React.useMemo(() => matches.map(match => {
|
607 | let {
|
608 | pathname,
|
609 | params
|
610 | } = match;
|
611 |
|
612 |
|
613 |
|
614 | return {
|
615 | id: match.route.id,
|
616 | pathname,
|
617 | params,
|
618 | data: loaderData[match.route.id],
|
619 | handle: match.route.handle
|
620 | };
|
621 | }), [matches, loaderData]);
|
622 | }
|
623 |
|
624 |
|
625 |
|
626 | function useLoaderData() {
|
627 | let state = useDataRouterState(DataRouterStateHook.UseLoaderData);
|
628 | let routeId = useCurrentRouteId(DataRouterStateHook.UseLoaderData);
|
629 | if (state.errors && state.errors[routeId] != null) {
|
630 | console.error(`You cannot \`useLoaderData\` in an errorElement (routeId: ${routeId})`);
|
631 | return undefined;
|
632 | }
|
633 | return state.loaderData[routeId];
|
634 | }
|
635 |
|
636 |
|
637 |
|
638 | function useRouteLoaderData(routeId) {
|
639 | let state = useDataRouterState(DataRouterStateHook.UseRouteLoaderData);
|
640 | return state.loaderData[routeId];
|
641 | }
|
642 |
|
643 |
|
644 |
|
645 | function useActionData() {
|
646 | let state = useDataRouterState(DataRouterStateHook.UseActionData);
|
647 | let route = React.useContext(RouteContext);
|
648 | !route ? UNSAFE_invariant(false, `useActionData must be used inside a RouteContext`) : void 0;
|
649 | return Object.values(state?.actionData || {})[0];
|
650 | }
|
651 |
|
652 |
|
653 |
|
654 |
|
655 |
|
656 | function useRouteError() {
|
657 | let error = React.useContext(RouteErrorContext);
|
658 | let state = useDataRouterState(DataRouterStateHook.UseRouteError);
|
659 | let routeId = useCurrentRouteId(DataRouterStateHook.UseRouteError);
|
660 |
|
661 |
|
662 | if (error) {
|
663 | return error;
|
664 | }
|
665 |
|
666 | return state.errors?.[routeId];
|
667 | }
|
668 |
|
669 |
|
670 |
|
671 | function useAsyncValue() {
|
672 | let value = React.useContext(AwaitContext);
|
673 | return value?._data;
|
674 | }
|
675 |
|
676 |
|
677 |
|
678 | function useAsyncError() {
|
679 | let value = React.useContext(AwaitContext);
|
680 | return value?._error;
|
681 | }
|
682 | let blockerId = 0;
|
683 |
|
684 |
|
685 |
|
686 |
|
687 |
|
688 |
|
689 | function useBlocker(shouldBlock) {
|
690 | let {
|
691 | router
|
692 | } = useDataRouterContext(DataRouterHook.UseBlocker);
|
693 | let state = useDataRouterState(DataRouterStateHook.UseBlocker);
|
694 | let [blockerKey] = React.useState(() => String(++blockerId));
|
695 | let blockerFunction = React.useCallback(args => {
|
696 | return typeof shouldBlock === "function" ? !!shouldBlock(args) : !!shouldBlock;
|
697 | }, [shouldBlock]);
|
698 | let blocker = router.getBlocker(blockerKey, blockerFunction);
|
699 |
|
700 | React.useEffect(() => () => router.deleteBlocker(blockerKey), [router, blockerKey]);
|
701 |
|
702 |
|
703 | return state.blockers.get(blockerKey) || blocker;
|
704 | }
|
705 |
|
706 |
|
707 |
|
708 |
|
709 | function useNavigateStable() {
|
710 | let {
|
711 | router
|
712 | } = useDataRouterContext(DataRouterHook.UseNavigateStable);
|
713 | let id = useCurrentRouteId(DataRouterStateHook.UseNavigateStable);
|
714 | let activeRef = React.useRef(false);
|
715 | useIsomorphicLayoutEffect(() => {
|
716 | activeRef.current = true;
|
717 | });
|
718 | let navigate = React.useCallback((to, options = {}) => {
|
719 | UNSAFE_warning(activeRef.current, navigateEffectWarning) ;
|
720 |
|
721 |
|
722 | if (!activeRef.current) return;
|
723 | if (typeof to === "number") {
|
724 | router.navigate(to);
|
725 | } else {
|
726 | router.navigate(to, {
|
727 | fromRouteId: id,
|
728 | ...options
|
729 | });
|
730 | }
|
731 | }, [router, id]);
|
732 | return navigate;
|
733 | }
|
734 | const alreadyWarned = {};
|
735 | function warningOnce(key, cond, message) {
|
736 | if (!cond && !alreadyWarned[key]) {
|
737 | alreadyWarned[key] = true;
|
738 | UNSAFE_warning(false, message) ;
|
739 | }
|
740 | }
|
741 |
|
742 |
|
743 |
|
744 |
|
745 | const START_TRANSITION = "startTransition";
|
746 |
|
747 |
|
748 |
|
749 | function RouterProvider({
|
750 | fallbackElement,
|
751 | router
|
752 | }) {
|
753 |
|
754 |
|
755 | let [state, setStateImpl] = React.useState(router.state);
|
756 | let setState = React.useCallback(newState => {
|
757 | START_TRANSITION in React ? React[START_TRANSITION](() => setStateImpl(newState)) : setStateImpl(newState);
|
758 | }, [setStateImpl]);
|
759 | React.useLayoutEffect(() => router.subscribe(setState), [router, setState]);
|
760 | let navigator = React.useMemo(() => {
|
761 | return {
|
762 | createHref: router.createHref,
|
763 | encodeLocation: router.encodeLocation,
|
764 | go: n => router.navigate(n),
|
765 | push: (to, state, opts) => router.navigate(to, {
|
766 | state,
|
767 | preventScrollReset: opts?.preventScrollReset
|
768 | }),
|
769 | replace: (to, state, opts) => router.navigate(to, {
|
770 | replace: true,
|
771 | state,
|
772 | preventScrollReset: opts?.preventScrollReset
|
773 | })
|
774 | };
|
775 | }, [router]);
|
776 | let basename = router.basename || "/";
|
777 | let dataRouterContext = React.useMemo(() => ({
|
778 | router,
|
779 | navigator,
|
780 | static: false,
|
781 | basename
|
782 | }), [router, navigator, basename]);
|
783 |
|
784 |
|
785 |
|
786 |
|
787 |
|
788 |
|
789 | return React.createElement(React.Fragment, null, React.createElement(DataRouterContext.Provider, {
|
790 | value: dataRouterContext
|
791 | }, React.createElement(DataRouterStateContext.Provider, {
|
792 | value: state
|
793 | }, React.createElement(Router, {
|
794 | basename: basename,
|
795 | location: state.location,
|
796 | navigationType: state.historyAction,
|
797 | navigator: navigator
|
798 | }, state.initialized ? React.createElement(DataRoutes, {
|
799 | routes: router.routes,
|
800 | state: state
|
801 | }) : fallbackElement))), null);
|
802 | }
|
803 | function DataRoutes({
|
804 | routes,
|
805 | state
|
806 | }) {
|
807 | return useRoutesImpl(routes, undefined, state);
|
808 | }
|
809 |
|
810 |
|
811 |
|
812 |
|
813 |
|
814 | function MemoryRouter({
|
815 | basename,
|
816 | children,
|
817 | initialEntries,
|
818 | initialIndex
|
819 | }) {
|
820 | let historyRef = React.useRef();
|
821 | if (historyRef.current == null) {
|
822 | historyRef.current = createMemoryHistory({
|
823 | initialEntries,
|
824 | initialIndex,
|
825 | v5Compat: true
|
826 | });
|
827 | }
|
828 | let history = historyRef.current;
|
829 | let [state, setStateImpl] = React.useState({
|
830 | action: history.action,
|
831 | location: history.location
|
832 | });
|
833 | let setState = React.useCallback(newState => {
|
834 | START_TRANSITION in React ? React[START_TRANSITION](() => setStateImpl(newState)) : setStateImpl(newState);
|
835 | }, [setStateImpl]);
|
836 | React.useLayoutEffect(() => history.listen(setState), [history, setState]);
|
837 | return React.createElement(Router, {
|
838 | basename: basename,
|
839 | children: children,
|
840 | location: state.location,
|
841 | navigationType: state.action,
|
842 | navigator: history
|
843 | });
|
844 | }
|
845 |
|
846 |
|
847 |
|
848 |
|
849 |
|
850 |
|
851 |
|
852 |
|
853 |
|
854 | function Navigate({
|
855 | to,
|
856 | replace,
|
857 | state,
|
858 | relative
|
859 | }) {
|
860 | !useInRouterContext() ? UNSAFE_invariant(false,
|
861 |
|
862 |
|
863 | `<Navigate> may be used only in the context of a <Router> component.`) : void 0;
|
864 | UNSAFE_warning(!React.useContext(NavigationContext).static, `<Navigate> must not be used on the initial render in a <StaticRouter>. ` + `This is a no-op, but you should modify your code so the <Navigate> is ` + `only ever rendered in response to some user interaction or state change.`) ;
|
865 | let {
|
866 | matches
|
867 | } = React.useContext(RouteContext);
|
868 | let {
|
869 | pathname: locationPathname
|
870 | } = useLocation();
|
871 | let navigate = useNavigate();
|
872 |
|
873 |
|
874 | let path = resolveTo(to, UNSAFE_getPathContributingMatches(matches).map(match => match.pathnameBase), locationPathname, relative === "path");
|
875 | let jsonPath = JSON.stringify(path);
|
876 | React.useEffect(() => navigate(JSON.parse(jsonPath), {
|
877 | replace,
|
878 | state,
|
879 | relative
|
880 | }), [navigate, jsonPath, relative, replace, state]);
|
881 | return null;
|
882 | }
|
883 |
|
884 |
|
885 |
|
886 |
|
887 |
|
888 | function Outlet(props) {
|
889 | return useOutlet(props.context);
|
890 | }
|
891 |
|
892 |
|
893 |
|
894 |
|
895 |
|
896 | function Route(_props) {
|
897 | UNSAFE_invariant(false, `A <Route> is only ever to be used as the child of <Routes> element, ` + `never rendered directly. Please wrap your <Route> in a <Routes>.`) ;
|
898 | }
|
899 |
|
900 |
|
901 |
|
902 |
|
903 |
|
904 |
|
905 |
|
906 |
|
907 |
|
908 | function Router({
|
909 | basename: basenameProp = "/",
|
910 | children = null,
|
911 | location: locationProp,
|
912 | navigationType = Action.Pop,
|
913 | navigator,
|
914 | static: staticProp = false
|
915 | }) {
|
916 | !!useInRouterContext() ? UNSAFE_invariant(false, `You cannot render a <Router> inside another <Router>.` + ` You should never have more than one in your app.`) : void 0;
|
917 |
|
918 |
|
919 | let basename = basenameProp.replace(/^\/*/, "/");
|
920 | let navigationContext = React.useMemo(() => ({
|
921 | basename,
|
922 | navigator,
|
923 | static: staticProp
|
924 | }), [basename, navigator, staticProp]);
|
925 | if (typeof locationProp === "string") {
|
926 | locationProp = parsePath(locationProp);
|
927 | }
|
928 | let {
|
929 | pathname = "/",
|
930 | search = "",
|
931 | hash = "",
|
932 | state = null,
|
933 | key = "default"
|
934 | } = locationProp;
|
935 | let locationContext = React.useMemo(() => {
|
936 | let trailingPathname = stripBasename(pathname, basename);
|
937 | if (trailingPathname == null) {
|
938 | return null;
|
939 | }
|
940 | return {
|
941 | location: {
|
942 | pathname: trailingPathname,
|
943 | search,
|
944 | hash,
|
945 | state,
|
946 | key
|
947 | },
|
948 | navigationType
|
949 | };
|
950 | }, [basename, pathname, search, hash, state, key, navigationType]);
|
951 | UNSAFE_warning(locationContext != null, `<Router basename="${basename}"> is not able to match the URL ` + `"${pathname}${search}${hash}" because it does not start with the ` + `basename, so the <Router> won't render anything.`) ;
|
952 | if (locationContext == null) {
|
953 | return null;
|
954 | }
|
955 | return React.createElement(NavigationContext.Provider, {
|
956 | value: navigationContext
|
957 | }, React.createElement(LocationContext.Provider, {
|
958 | children: children,
|
959 | value: locationContext
|
960 | }));
|
961 | }
|
962 |
|
963 |
|
964 |
|
965 |
|
966 |
|
967 |
|
968 | function Routes({
|
969 | children,
|
970 | location
|
971 | }) {
|
972 | return useRoutes(createRoutesFromChildren(children), location);
|
973 | }
|
974 |
|
975 |
|
976 |
|
977 |
|
978 | function Await({
|
979 | children,
|
980 | errorElement,
|
981 | resolve
|
982 | }) {
|
983 | return React.createElement(AwaitErrorBoundary, {
|
984 | resolve: resolve,
|
985 | errorElement: errorElement
|
986 | }, React.createElement(ResolveAwait, null, children));
|
987 | }
|
988 | var AwaitRenderStatus;
|
989 | (function (AwaitRenderStatus) {
|
990 | AwaitRenderStatus[AwaitRenderStatus["pending"] = 0] = "pending";
|
991 | AwaitRenderStatus[AwaitRenderStatus["success"] = 1] = "success";
|
992 | AwaitRenderStatus[AwaitRenderStatus["error"] = 2] = "error";
|
993 | })(AwaitRenderStatus || (AwaitRenderStatus = {}));
|
994 | const neverSettledPromise = new Promise(() => {});
|
995 | class AwaitErrorBoundary extends React.Component {
|
996 | constructor(props) {
|
997 | super(props);
|
998 | this.state = {
|
999 | error: null
|
1000 | };
|
1001 | }
|
1002 | static getDerivedStateFromError(error) {
|
1003 | return {
|
1004 | error
|
1005 | };
|
1006 | }
|
1007 | componentDidCatch(error, errorInfo) {
|
1008 | console.error("<Await> caught the following error during render", error, errorInfo);
|
1009 | }
|
1010 | render() {
|
1011 | let {
|
1012 | children,
|
1013 | errorElement,
|
1014 | resolve
|
1015 | } = this.props;
|
1016 | let promise = null;
|
1017 | let status = AwaitRenderStatus.pending;
|
1018 | if (!(resolve instanceof Promise)) {
|
1019 |
|
1020 | status = AwaitRenderStatus.success;
|
1021 | promise = Promise.resolve();
|
1022 | Object.defineProperty(promise, "_tracked", {
|
1023 | get: () => true
|
1024 | });
|
1025 | Object.defineProperty(promise, "_data", {
|
1026 | get: () => resolve
|
1027 | });
|
1028 | } else if (this.state.error) {
|
1029 |
|
1030 | status = AwaitRenderStatus.error;
|
1031 | let renderError = this.state.error;
|
1032 | promise = Promise.reject().catch(() => {});
|
1033 | Object.defineProperty(promise, "_tracked", {
|
1034 | get: () => true
|
1035 | });
|
1036 | Object.defineProperty(promise, "_error", {
|
1037 | get: () => renderError
|
1038 | });
|
1039 | } else if (resolve._tracked) {
|
1040 |
|
1041 | promise = resolve;
|
1042 | status = promise._error !== undefined ? AwaitRenderStatus.error : promise._data !== undefined ? AwaitRenderStatus.success : AwaitRenderStatus.pending;
|
1043 | } else {
|
1044 |
|
1045 | status = AwaitRenderStatus.pending;
|
1046 | Object.defineProperty(resolve, "_tracked", {
|
1047 | get: () => true
|
1048 | });
|
1049 | promise = resolve.then(data => Object.defineProperty(resolve, "_data", {
|
1050 | get: () => data
|
1051 | }), error => Object.defineProperty(resolve, "_error", {
|
1052 | get: () => error
|
1053 | }));
|
1054 | }
|
1055 | if (status === AwaitRenderStatus.error && promise._error instanceof AbortedDeferredError) {
|
1056 |
|
1057 | throw neverSettledPromise;
|
1058 | }
|
1059 | if (status === AwaitRenderStatus.error && !errorElement) {
|
1060 |
|
1061 | throw promise._error;
|
1062 | }
|
1063 | if (status === AwaitRenderStatus.error) {
|
1064 |
|
1065 | return React.createElement(AwaitContext.Provider, {
|
1066 | value: promise,
|
1067 | children: errorElement
|
1068 | });
|
1069 | }
|
1070 | if (status === AwaitRenderStatus.success) {
|
1071 |
|
1072 | return React.createElement(AwaitContext.Provider, {
|
1073 | value: promise,
|
1074 | children: children
|
1075 | });
|
1076 | }
|
1077 |
|
1078 | throw promise;
|
1079 | }
|
1080 | }
|
1081 |
|
1082 |
|
1083 |
|
1084 |
|
1085 | function ResolveAwait({
|
1086 | children
|
1087 | }) {
|
1088 | let data = useAsyncValue();
|
1089 | let toRender = typeof children === "function" ? children(data) : children;
|
1090 | return React.createElement(React.Fragment, null, toRender);
|
1091 | }
|
1092 |
|
1093 |
|
1094 |
|
1095 |
|
1096 |
|
1097 |
|
1098 |
|
1099 |
|
1100 |
|
1101 |
|
1102 | function createRoutesFromChildren(children, parentPath = []) {
|
1103 | let routes = [];
|
1104 | React.Children.forEach(children, (element, index) => {
|
1105 | if (! React.isValidElement(element)) {
|
1106 |
|
1107 |
|
1108 | return;
|
1109 | }
|
1110 | let treePath = [...parentPath, index];
|
1111 | if (element.type === React.Fragment) {
|
1112 |
|
1113 | routes.push.apply(routes, createRoutesFromChildren(element.props.children, treePath));
|
1114 | return;
|
1115 | }
|
1116 | !(element.type === Route) ? UNSAFE_invariant(false, `[${typeof element.type === "string" ? element.type : element.type.name}] is not a <Route> component. All component children of <Routes> must be a <Route> or <React.Fragment>`) : void 0;
|
1117 | !(!element.props.index || !element.props.children) ? UNSAFE_invariant(false, "An index route cannot have child routes.") : void 0;
|
1118 | let route = {
|
1119 | id: element.props.id || treePath.join("-"),
|
1120 | caseSensitive: element.props.caseSensitive,
|
1121 | element: element.props.element,
|
1122 | Component: element.props.Component,
|
1123 | index: element.props.index,
|
1124 | path: element.props.path,
|
1125 | loader: element.props.loader,
|
1126 | action: element.props.action,
|
1127 | errorElement: element.props.errorElement,
|
1128 | ErrorBoundary: element.props.ErrorBoundary,
|
1129 | hasErrorBoundary: element.props.ErrorBoundary != null || element.props.errorElement != null,
|
1130 | shouldRevalidate: element.props.shouldRevalidate,
|
1131 | handle: element.props.handle,
|
1132 | lazy: element.props.lazy
|
1133 | };
|
1134 | if (element.props.children) {
|
1135 | route.children = createRoutesFromChildren(element.props.children, treePath);
|
1136 | }
|
1137 | routes.push(route);
|
1138 | });
|
1139 | return routes;
|
1140 | }
|
1141 |
|
1142 |
|
1143 |
|
1144 | function renderMatches(matches) {
|
1145 | return _renderMatches(matches);
|
1146 | }
|
1147 |
|
1148 | function mapRouteProperties(route) {
|
1149 | let updates = {
|
1150 |
|
1151 |
|
1152 | hasErrorBoundary: route.ErrorBoundary != null || route.errorElement != null
|
1153 | };
|
1154 | if (route.Component) {
|
1155 | {
|
1156 | if (route.element) {
|
1157 | UNSAFE_warning(false, "You should not include both `Component` and `element` on your route - " + "`Component` will be used.") ;
|
1158 | }
|
1159 | }
|
1160 | Object.assign(updates, {
|
1161 | element: React.createElement(route.Component),
|
1162 | Component: undefined
|
1163 | });
|
1164 | }
|
1165 | if (route.ErrorBoundary) {
|
1166 | {
|
1167 | if (route.errorElement) {
|
1168 | UNSAFE_warning(false, "You should not include both `ErrorBoundary` and `errorElement` on your route - " + "`ErrorBoundary` will be used.") ;
|
1169 | }
|
1170 | }
|
1171 | Object.assign(updates, {
|
1172 | errorElement: React.createElement(route.ErrorBoundary),
|
1173 | ErrorBoundary: undefined
|
1174 | });
|
1175 | }
|
1176 | return updates;
|
1177 | }
|
1178 | function createMemoryRouter(routes, opts) {
|
1179 | return createRouter({
|
1180 | basename: opts?.basename,
|
1181 | future: {
|
1182 | ...opts?.future,
|
1183 | v7_prependBasename: true
|
1184 | },
|
1185 | history: createMemoryHistory({
|
1186 | initialEntries: opts?.initialEntries,
|
1187 | initialIndex: opts?.initialIndex
|
1188 | }),
|
1189 | hydrationData: opts?.hydrationData,
|
1190 | routes,
|
1191 | mapRouteProperties
|
1192 | }).initialize();
|
1193 | }
|
1194 |
|
1195 | export { Await, MemoryRouter, Navigate, Outlet, Route, Router, RouterProvider, Routes, DataRouterContext as UNSAFE_DataRouterContext, DataRouterStateContext as UNSAFE_DataRouterStateContext, LocationContext as UNSAFE_LocationContext, NavigationContext as UNSAFE_NavigationContext, RouteContext as UNSAFE_RouteContext, mapRouteProperties as UNSAFE_mapRouteProperties, useRouteId as UNSAFE_useRouteId, useRoutesImpl as UNSAFE_useRoutesImpl, createMemoryRouter, createRoutesFromChildren, createRoutesFromChildren as createRoutesFromElements, renderMatches, useBlocker as unstable_useBlocker, useActionData, useAsyncError, useAsyncValue, useHref, useInRouterContext, useLoaderData, useLocation, useMatch, useMatches, useNavigate, useNavigation, useNavigationType, useOutlet, useOutletContext, useParams, useResolvedPath, useRevalidator, useRouteError, useRouteLoaderData, useRoutes };
|
1196 |
|