react-router 7.13.2 → 7.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +67 -0
- package/dist/development/{browser-Bfn3xw9E.d.ts → browser-C9Ar1yxG.d.ts} +13 -10
- package/dist/development/{browser-Di6-vSl-.d.mts → browser-vtIR1Kpe.d.mts} +13 -10
- package/dist/development/{chunk-UALY5CBT.mjs → chunk-2UH5WJXA.mjs} +21 -7
- package/dist/development/{chunk-GO74ODU3.js → chunk-IK6APEEG.js} +191 -118
- package/dist/development/{chunk-HPFFRPKK.js → chunk-NXTEWSJO.js} +99 -99
- package/dist/development/{chunk-UVKPFVEO.mjs → chunk-QFMPRPBF.mjs} +192 -119
- package/dist/development/{chunk-LLP6DRWX.js → chunk-WAVMRYR2.js} +7 -7
- package/dist/development/dom-export.d.mts +1 -1
- package/dist/development/dom-export.d.ts +1 -1
- package/dist/development/dom-export.js +65 -54
- package/dist/development/dom-export.mjs +34 -23
- package/dist/{production/index-react-server-client-BcrVT7Dd.d.mts → development/index-react-server-client-BwWaHAr3.d.mts} +7 -5
- package/dist/development/{index-react-server-client-CCwMoQIT.d.ts → index-react-server-client-luDbagNU.d.ts} +7 -5
- package/dist/development/index-react-server-client.d.mts +1 -1
- package/dist/development/index-react-server-client.d.ts +1 -1
- package/dist/development/index-react-server-client.js +4 -4
- package/dist/development/index-react-server-client.mjs +2 -2
- package/dist/development/index-react-server.d.mts +12 -3
- package/dist/development/index-react-server.d.ts +12 -3
- package/dist/development/index-react-server.js +58 -18
- package/dist/development/index-react-server.mjs +58 -18
- package/dist/development/index.d.mts +4 -4
- package/dist/development/index.d.ts +4 -4
- package/dist/development/index.js +101 -87
- package/dist/development/index.mjs +3 -3
- package/dist/development/lib/types/internal.d.mts +10 -10
- package/dist/development/lib/types/internal.d.ts +10 -10
- package/dist/development/lib/types/internal.js +1 -1
- package/dist/development/lib/types/internal.mjs +1 -1
- package/dist/production/{browser-Bfn3xw9E.d.ts → browser-C9Ar1yxG.d.ts} +13 -10
- package/dist/production/{browser-Di6-vSl-.d.mts → browser-vtIR1Kpe.d.mts} +13 -10
- package/dist/production/{chunk-CAFVLUDY.js → chunk-355DUZMC.js} +7 -7
- package/dist/production/{chunk-LKUVSIBA.js → chunk-4TJ7T2OQ.js} +191 -118
- package/dist/production/{chunk-XAAX7KIK.js → chunk-FPT5DLVJ.js} +99 -99
- package/dist/production/{chunk-2BDJPJTA.mjs → chunk-HZQGQD2X.mjs} +192 -119
- package/dist/production/{chunk-PY35PE22.mjs → chunk-X5LK27NZ.mjs} +21 -7
- package/dist/production/dom-export.d.mts +1 -1
- package/dist/production/dom-export.d.ts +1 -1
- package/dist/production/dom-export.js +65 -54
- package/dist/production/dom-export.mjs +34 -23
- package/dist/{development/index-react-server-client-BcrVT7Dd.d.mts → production/index-react-server-client-BwWaHAr3.d.mts} +7 -5
- package/dist/production/{index-react-server-client-CCwMoQIT.d.ts → index-react-server-client-luDbagNU.d.ts} +7 -5
- package/dist/production/index-react-server-client.d.mts +1 -1
- package/dist/production/index-react-server-client.d.ts +1 -1
- package/dist/production/index-react-server-client.js +4 -4
- package/dist/production/index-react-server-client.mjs +2 -2
- package/dist/production/index-react-server.d.mts +12 -3
- package/dist/production/index-react-server.d.ts +12 -3
- package/dist/production/index-react-server.js +58 -18
- package/dist/production/index-react-server.mjs +58 -18
- package/dist/production/index.d.mts +4 -4
- package/dist/production/index.d.ts +4 -4
- package/dist/production/index.js +101 -87
- package/dist/production/index.mjs +3 -3
- package/dist/production/lib/types/internal.d.mts +10 -10
- package/dist/production/lib/types/internal.d.ts +10 -10
- package/dist/production/lib/types/internal.js +1 -1
- package/dist/production/lib/types/internal.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }/**
|
|
2
|
-
* react-router v7.
|
|
2
|
+
* react-router v7.14.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
var
|
|
54
|
+
var _chunk4TJ7T2OQjs = require('./chunk-4TJ7T2OQ.js');
|
|
55
55
|
|
|
56
56
|
// lib/dom/dom.ts
|
|
57
57
|
var defaultMethod = "get";
|
|
@@ -122,7 +122,7 @@ var supportedFormEncTypes = /* @__PURE__ */ new Set([
|
|
|
122
122
|
]);
|
|
123
123
|
function getFormEncType(encType) {
|
|
124
124
|
if (encType != null && !supportedFormEncTypes.has(encType)) {
|
|
125
|
-
|
|
125
|
+
_chunk4TJ7T2OQjs.warning.call(void 0,
|
|
126
126
|
false,
|
|
127
127
|
`"${encType}" is not a valid \`encType\` for \`<Form>\`/\`<fetcher.Form>\` and will default to "${defaultEncType}"`
|
|
128
128
|
);
|
|
@@ -138,7 +138,7 @@ function getFormSubmissionInfo(target, basename) {
|
|
|
138
138
|
let body;
|
|
139
139
|
if (isFormElement(target)) {
|
|
140
140
|
let attr = target.getAttribute("action");
|
|
141
|
-
action = attr ?
|
|
141
|
+
action = attr ? _chunk4TJ7T2OQjs.stripBasename.call(void 0, attr, basename) : null;
|
|
142
142
|
method = target.getAttribute("method") || defaultMethod;
|
|
143
143
|
encType = getFormEncType(target.getAttribute("enctype")) || defaultEncType;
|
|
144
144
|
formData = new FormData(target);
|
|
@@ -150,7 +150,7 @@ function getFormSubmissionInfo(target, basename) {
|
|
|
150
150
|
);
|
|
151
151
|
}
|
|
152
152
|
let attr = target.getAttribute("formaction") || form.getAttribute("action");
|
|
153
|
-
action = attr ?
|
|
153
|
+
action = attr ? _chunk4TJ7T2OQjs.stripBasename.call(void 0, attr, basename) : null;
|
|
154
154
|
method = target.getAttribute("formmethod") || form.getAttribute("method") || defaultMethod;
|
|
155
155
|
encType = getFormEncType(target.getAttribute("formenctype")) || getFormEncType(form.getAttribute("enctype")) || defaultEncType;
|
|
156
156
|
formData = new FormData(form, target);
|
|
@@ -187,20 +187,20 @@ var isBrowser = typeof window !== "undefined" && typeof window.document !== "und
|
|
|
187
187
|
try {
|
|
188
188
|
if (isBrowser) {
|
|
189
189
|
window.__reactRouterVersion = // @ts-expect-error
|
|
190
|
-
"7.
|
|
190
|
+
"7.14.0";
|
|
191
191
|
}
|
|
192
192
|
} catch (e) {
|
|
193
193
|
}
|
|
194
194
|
function createBrowserRouter(routes, opts) {
|
|
195
|
-
return
|
|
195
|
+
return _chunk4TJ7T2OQjs.createRouter.call(void 0, {
|
|
196
196
|
basename: _optionalChain([opts, 'optionalAccess', _2 => _2.basename]),
|
|
197
197
|
getContext: _optionalChain([opts, 'optionalAccess', _3 => _3.getContext]),
|
|
198
198
|
future: _optionalChain([opts, 'optionalAccess', _4 => _4.future]),
|
|
199
|
-
history:
|
|
199
|
+
history: _chunk4TJ7T2OQjs.createBrowserHistory.call(void 0, { window: _optionalChain([opts, 'optionalAccess', _5 => _5.window]) }),
|
|
200
200
|
hydrationData: _optionalChain([opts, 'optionalAccess', _6 => _6.hydrationData]) || parseHydrationData(),
|
|
201
201
|
routes,
|
|
202
|
-
mapRouteProperties:
|
|
203
|
-
hydrationRouteProperties:
|
|
202
|
+
mapRouteProperties: _chunk4TJ7T2OQjs.mapRouteProperties,
|
|
203
|
+
hydrationRouteProperties: _chunk4TJ7T2OQjs.hydrationRouteProperties,
|
|
204
204
|
dataStrategy: _optionalChain([opts, 'optionalAccess', _7 => _7.dataStrategy]),
|
|
205
205
|
patchRoutesOnNavigation: _optionalChain([opts, 'optionalAccess', _8 => _8.patchRoutesOnNavigation]),
|
|
206
206
|
window: _optionalChain([opts, 'optionalAccess', _9 => _9.window]),
|
|
@@ -208,15 +208,15 @@ function createBrowserRouter(routes, opts) {
|
|
|
208
208
|
}).initialize();
|
|
209
209
|
}
|
|
210
210
|
function createHashRouter(routes, opts) {
|
|
211
|
-
return
|
|
211
|
+
return _chunk4TJ7T2OQjs.createRouter.call(void 0, {
|
|
212
212
|
basename: _optionalChain([opts, 'optionalAccess', _11 => _11.basename]),
|
|
213
213
|
getContext: _optionalChain([opts, 'optionalAccess', _12 => _12.getContext]),
|
|
214
214
|
future: _optionalChain([opts, 'optionalAccess', _13 => _13.future]),
|
|
215
|
-
history:
|
|
215
|
+
history: _chunk4TJ7T2OQjs.createHashHistory.call(void 0, { window: _optionalChain([opts, 'optionalAccess', _14 => _14.window]) }),
|
|
216
216
|
hydrationData: _optionalChain([opts, 'optionalAccess', _15 => _15.hydrationData]) || parseHydrationData(),
|
|
217
217
|
routes,
|
|
218
|
-
mapRouteProperties:
|
|
219
|
-
hydrationRouteProperties:
|
|
218
|
+
mapRouteProperties: _chunk4TJ7T2OQjs.mapRouteProperties,
|
|
219
|
+
hydrationRouteProperties: _chunk4TJ7T2OQjs.hydrationRouteProperties,
|
|
220
220
|
dataStrategy: _optionalChain([opts, 'optionalAccess', _16 => _16.dataStrategy]),
|
|
221
221
|
patchRoutesOnNavigation: _optionalChain([opts, 'optionalAccess', _17 => _17.patchRoutesOnNavigation]),
|
|
222
222
|
window: _optionalChain([opts, 'optionalAccess', _18 => _18.window]),
|
|
@@ -239,7 +239,7 @@ function deserializeErrors(errors) {
|
|
|
239
239
|
let serialized = {};
|
|
240
240
|
for (let [key, val] of entries) {
|
|
241
241
|
if (val && val.__type === "RouteErrorResponse") {
|
|
242
|
-
serialized[key] = new (0,
|
|
242
|
+
serialized[key] = new (0, _chunk4TJ7T2OQjs.ErrorResponseImpl)(
|
|
243
243
|
val.status,
|
|
244
244
|
val.statusText,
|
|
245
245
|
val.data,
|
|
@@ -276,7 +276,7 @@ function BrowserRouter({
|
|
|
276
276
|
}) {
|
|
277
277
|
let historyRef = React.useRef();
|
|
278
278
|
if (historyRef.current == null) {
|
|
279
|
-
historyRef.current =
|
|
279
|
+
historyRef.current = _chunk4TJ7T2OQjs.createBrowserHistory.call(void 0, { window: window2, v5Compat: true });
|
|
280
280
|
}
|
|
281
281
|
let history = historyRef.current;
|
|
282
282
|
let [state, setStateImpl] = React.useState({
|
|
@@ -295,7 +295,7 @@ function BrowserRouter({
|
|
|
295
295
|
);
|
|
296
296
|
React.useLayoutEffect(() => history.listen(setState), [history, setState]);
|
|
297
297
|
return /* @__PURE__ */ React.createElement(
|
|
298
|
-
|
|
298
|
+
_chunk4TJ7T2OQjs.Router,
|
|
299
299
|
{
|
|
300
300
|
basename,
|
|
301
301
|
children,
|
|
@@ -314,7 +314,7 @@ function HashRouter({
|
|
|
314
314
|
}) {
|
|
315
315
|
let historyRef = React.useRef();
|
|
316
316
|
if (historyRef.current == null) {
|
|
317
|
-
historyRef.current =
|
|
317
|
+
historyRef.current = _chunk4TJ7T2OQjs.createHashHistory.call(void 0, { window: window2, v5Compat: true });
|
|
318
318
|
}
|
|
319
319
|
let history = historyRef.current;
|
|
320
320
|
let [state, setStateImpl] = React.useState({
|
|
@@ -333,7 +333,7 @@ function HashRouter({
|
|
|
333
333
|
);
|
|
334
334
|
React.useLayoutEffect(() => history.listen(setState), [history, setState]);
|
|
335
335
|
return /* @__PURE__ */ React.createElement(
|
|
336
|
-
|
|
336
|
+
_chunk4TJ7T2OQjs.Router,
|
|
337
337
|
{
|
|
338
338
|
basename,
|
|
339
339
|
children,
|
|
@@ -366,7 +366,7 @@ function HistoryRouter({
|
|
|
366
366
|
);
|
|
367
367
|
React.useLayoutEffect(() => history.listen(setState), [history, setState]);
|
|
368
368
|
return /* @__PURE__ */ React.createElement(
|
|
369
|
-
|
|
369
|
+
_chunk4TJ7T2OQjs.Router,
|
|
370
370
|
{
|
|
371
371
|
basename,
|
|
372
372
|
children,
|
|
@@ -396,26 +396,26 @@ var Link = React.forwardRef(
|
|
|
396
396
|
unstable_defaultShouldRevalidate,
|
|
397
397
|
...rest
|
|
398
398
|
}, forwardedRef) {
|
|
399
|
-
let { basename, navigator, unstable_useTransitions } = React.useContext(
|
|
399
|
+
let { basename, navigator, unstable_useTransitions } = React.useContext(_chunk4TJ7T2OQjs.NavigationContext);
|
|
400
400
|
let isAbsolute = typeof to === "string" && ABSOLUTE_URL_REGEX.test(to);
|
|
401
|
-
let parsed =
|
|
401
|
+
let parsed = _chunk4TJ7T2OQjs.parseToInfo.call(void 0, to, basename);
|
|
402
402
|
to = parsed.to;
|
|
403
|
-
let href =
|
|
404
|
-
let location =
|
|
403
|
+
let href = _chunk4TJ7T2OQjs.useHref.call(void 0, to, { relative });
|
|
404
|
+
let location = _chunk4TJ7T2OQjs.useLocation.call(void 0, );
|
|
405
405
|
let maskedHref = null;
|
|
406
406
|
if (unstable_mask) {
|
|
407
|
-
let resolved =
|
|
407
|
+
let resolved = _chunk4TJ7T2OQjs.resolveTo.call(void 0,
|
|
408
408
|
unstable_mask,
|
|
409
409
|
[],
|
|
410
410
|
location.unstable_mask ? location.unstable_mask.pathname : "/",
|
|
411
411
|
true
|
|
412
412
|
);
|
|
413
413
|
if (basename !== "/") {
|
|
414
|
-
resolved.pathname = resolved.pathname === "/" ? basename :
|
|
414
|
+
resolved.pathname = resolved.pathname === "/" ? basename : _chunk4TJ7T2OQjs.joinPaths.call(void 0, [basename, resolved.pathname]);
|
|
415
415
|
}
|
|
416
416
|
maskedHref = navigator.createHref(resolved);
|
|
417
417
|
}
|
|
418
|
-
let [shouldPrefetch, prefetchRef, prefetchHandlers] =
|
|
418
|
+
let [shouldPrefetch, prefetchRef, prefetchHandlers] = _chunk4TJ7T2OQjs.usePrefetchBehavior.call(void 0,
|
|
419
419
|
prefetch,
|
|
420
420
|
rest
|
|
421
421
|
);
|
|
@@ -446,13 +446,13 @@ var Link = React.forwardRef(
|
|
|
446
446
|
...prefetchHandlers,
|
|
447
447
|
href: (isSpaLink ? maskedHref : void 0) || parsed.absoluteURL || href,
|
|
448
448
|
onClick: isSpaLink ? handleClick : onClick,
|
|
449
|
-
ref:
|
|
449
|
+
ref: _chunk4TJ7T2OQjs.mergeRefs.call(void 0, forwardedRef, prefetchRef),
|
|
450
450
|
target,
|
|
451
451
|
"data-discover": !isAbsolute && discover === "render" ? "true" : void 0
|
|
452
452
|
}
|
|
453
453
|
)
|
|
454
454
|
);
|
|
455
|
-
return shouldPrefetch && !isAbsolute ? /* @__PURE__ */ React.createElement(React.Fragment, null, link, /* @__PURE__ */ React.createElement(
|
|
455
|
+
return shouldPrefetch && !isAbsolute ? /* @__PURE__ */ React.createElement(React.Fragment, null, link, /* @__PURE__ */ React.createElement(_chunk4TJ7T2OQjs.PrefetchPageLinks, { page: href })) : link;
|
|
456
456
|
}
|
|
457
457
|
);
|
|
458
458
|
Link.displayName = "Link";
|
|
@@ -468,10 +468,10 @@ var NavLink = React.forwardRef(
|
|
|
468
468
|
children,
|
|
469
469
|
...rest
|
|
470
470
|
}, ref) {
|
|
471
|
-
let path =
|
|
472
|
-
let location =
|
|
473
|
-
let routerState = React.useContext(
|
|
474
|
-
let { navigator, basename } = React.useContext(
|
|
471
|
+
let path = _chunk4TJ7T2OQjs.useResolvedPath.call(void 0, to, { relative: rest.relative });
|
|
472
|
+
let location = _chunk4TJ7T2OQjs.useLocation.call(void 0, );
|
|
473
|
+
let routerState = React.useContext(_chunk4TJ7T2OQjs.DataRouterStateContext);
|
|
474
|
+
let { navigator, basename } = React.useContext(_chunk4TJ7T2OQjs.NavigationContext);
|
|
475
475
|
let isTransitioning = routerState != null && // Conditional usage is OK here because the usage of a data router is static
|
|
476
476
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
477
477
|
useViewTransitionState(path) && viewTransition === true;
|
|
@@ -484,7 +484,7 @@ var NavLink = React.forwardRef(
|
|
|
484
484
|
toPathname = toPathname.toLowerCase();
|
|
485
485
|
}
|
|
486
486
|
if (nextLocationPathname && basename) {
|
|
487
|
-
nextLocationPathname =
|
|
487
|
+
nextLocationPathname = _chunk4TJ7T2OQjs.stripBasename.call(void 0, nextLocationPathname, basename) || nextLocationPathname;
|
|
488
488
|
}
|
|
489
489
|
const endSlashPosition = toPathname !== "/" && toPathname.endsWith("/") ? toPathname.length - 1 : toPathname.length;
|
|
490
490
|
let isActive = locationPathname === toPathname || !end && locationPathname.startsWith(toPathname) && locationPathname.charAt(endSlashPosition) === "/";
|
|
@@ -540,7 +540,7 @@ var Form = React.forwardRef(
|
|
|
540
540
|
unstable_defaultShouldRevalidate,
|
|
541
541
|
...props
|
|
542
542
|
}, forwardedRef) => {
|
|
543
|
-
let { unstable_useTransitions } = React.useContext(
|
|
543
|
+
let { unstable_useTransitions } = React.useContext(_chunk4TJ7T2OQjs.NavigationContext);
|
|
544
544
|
let submit = useSubmit();
|
|
545
545
|
let formAction = useFormAction(action, { relative });
|
|
546
546
|
let formMethod = method.toLowerCase() === "get" ? "get" : "post";
|
|
@@ -587,10 +587,10 @@ function ScrollRestoration({
|
|
|
587
587
|
storageKey,
|
|
588
588
|
...props
|
|
589
589
|
}) {
|
|
590
|
-
let remixContext = React.useContext(
|
|
591
|
-
let { basename } = React.useContext(
|
|
592
|
-
let location =
|
|
593
|
-
let matches =
|
|
590
|
+
let remixContext = React.useContext(_chunk4TJ7T2OQjs.FrameworkContext);
|
|
591
|
+
let { basename } = React.useContext(_chunk4TJ7T2OQjs.NavigationContext);
|
|
592
|
+
let location = _chunk4TJ7T2OQjs.useLocation.call(void 0, );
|
|
593
|
+
let matches = _chunk4TJ7T2OQjs.useMatches.call(void 0, );
|
|
594
594
|
useScrollRestoration({ getKey, storageKey });
|
|
595
595
|
let ssrKey = React.useMemo(
|
|
596
596
|
() => {
|
|
@@ -632,9 +632,9 @@ function ScrollRestoration({
|
|
|
632
632
|
...props,
|
|
633
633
|
suppressHydrationWarning: true,
|
|
634
634
|
dangerouslySetInnerHTML: {
|
|
635
|
-
__html: `(${restoreScroll})(${
|
|
635
|
+
__html: `(${restoreScroll})(${_chunk4TJ7T2OQjs.escapeHtml.call(void 0,
|
|
636
636
|
JSON.stringify(storageKey || SCROLL_RESTORATION_STORAGE_KEY)
|
|
637
|
-
)}, ${
|
|
637
|
+
)}, ${_chunk4TJ7T2OQjs.escapeHtml.call(void 0, JSON.stringify(ssrKey))})`
|
|
638
638
|
}
|
|
639
639
|
}
|
|
640
640
|
);
|
|
@@ -644,13 +644,13 @@ function getDataRouterConsoleError(hookName) {
|
|
|
644
644
|
return `${hookName} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`;
|
|
645
645
|
}
|
|
646
646
|
function useDataRouterContext(hookName) {
|
|
647
|
-
let ctx = React.useContext(
|
|
648
|
-
|
|
647
|
+
let ctx = React.useContext(_chunk4TJ7T2OQjs.DataRouterContext);
|
|
648
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0, ctx, getDataRouterConsoleError(hookName));
|
|
649
649
|
return ctx;
|
|
650
650
|
}
|
|
651
651
|
function useDataRouterState(hookName) {
|
|
652
|
-
let state = React.useContext(
|
|
653
|
-
|
|
652
|
+
let state = React.useContext(_chunk4TJ7T2OQjs.DataRouterStateContext);
|
|
653
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0, state, getDataRouterConsoleError(hookName));
|
|
654
654
|
return state;
|
|
655
655
|
}
|
|
656
656
|
function useLinkClickHandler(to, {
|
|
@@ -664,14 +664,14 @@ function useLinkClickHandler(to, {
|
|
|
664
664
|
unstable_defaultShouldRevalidate,
|
|
665
665
|
unstable_useTransitions
|
|
666
666
|
} = {}) {
|
|
667
|
-
let navigate =
|
|
668
|
-
let location =
|
|
669
|
-
let path =
|
|
667
|
+
let navigate = _chunk4TJ7T2OQjs.useNavigate.call(void 0, );
|
|
668
|
+
let location = _chunk4TJ7T2OQjs.useLocation.call(void 0, );
|
|
669
|
+
let path = _chunk4TJ7T2OQjs.useResolvedPath.call(void 0, to, { relative });
|
|
670
670
|
return React.useCallback(
|
|
671
671
|
(event) => {
|
|
672
672
|
if (shouldProcessLinkClick(event, target)) {
|
|
673
673
|
event.preventDefault();
|
|
674
|
-
let replace = replaceProp !== void 0 ? replaceProp :
|
|
674
|
+
let replace = replaceProp !== void 0 ? replaceProp : _chunk4TJ7T2OQjs.createPath.call(void 0, location) === _chunk4TJ7T2OQjs.createPath.call(void 0, path);
|
|
675
675
|
let doNavigate = () => navigate(to, {
|
|
676
676
|
replace,
|
|
677
677
|
unstable_mask,
|
|
@@ -706,13 +706,13 @@ function useLinkClickHandler(to, {
|
|
|
706
706
|
);
|
|
707
707
|
}
|
|
708
708
|
function useSearchParams(defaultInit) {
|
|
709
|
-
|
|
709
|
+
_chunk4TJ7T2OQjs.warning.call(void 0,
|
|
710
710
|
typeof URLSearchParams !== "undefined",
|
|
711
711
|
`You cannot use the \`useSearchParams\` hook in a browser that does not support the URLSearchParams API. If you need to support Internet Explorer 11, we recommend you load a polyfill such as https://github.com/ungap/url-search-params.`
|
|
712
712
|
);
|
|
713
713
|
let defaultSearchParamsRef = React.useRef(createSearchParams(defaultInit));
|
|
714
714
|
let hasSetSearchParamsRef = React.useRef(false);
|
|
715
|
-
let location =
|
|
715
|
+
let location = _chunk4TJ7T2OQjs.useLocation.call(void 0, );
|
|
716
716
|
let searchParams = React.useMemo(
|
|
717
717
|
() => (
|
|
718
718
|
// Only merge in the defaults if we haven't yet called setSearchParams.
|
|
@@ -725,7 +725,7 @@ function useSearchParams(defaultInit) {
|
|
|
725
725
|
),
|
|
726
726
|
[location.search]
|
|
727
727
|
);
|
|
728
|
-
let navigate =
|
|
728
|
+
let navigate = _chunk4TJ7T2OQjs.useNavigate.call(void 0, );
|
|
729
729
|
let setSearchParams = React.useCallback(
|
|
730
730
|
(nextInit, navigateOptions) => {
|
|
731
731
|
const newSearchParams = createSearchParams(
|
|
@@ -742,8 +742,8 @@ var fetcherId = 0;
|
|
|
742
742
|
var getUniqueFetcherId = () => `__${String(++fetcherId)}__`;
|
|
743
743
|
function useSubmit() {
|
|
744
744
|
let { router } = useDataRouterContext("useSubmit" /* UseSubmit */);
|
|
745
|
-
let { basename } = React.useContext(
|
|
746
|
-
let currentRouteId =
|
|
745
|
+
let { basename } = React.useContext(_chunk4TJ7T2OQjs.NavigationContext);
|
|
746
|
+
let currentRouteId = _chunk4TJ7T2OQjs.useRouteId.call(void 0, );
|
|
747
747
|
let routerFetch = router.fetch;
|
|
748
748
|
let routerNavigate = router.navigate;
|
|
749
749
|
return React.useCallback(
|
|
@@ -783,12 +783,12 @@ function useSubmit() {
|
|
|
783
783
|
);
|
|
784
784
|
}
|
|
785
785
|
function useFormAction(action, { relative } = {}) {
|
|
786
|
-
let { basename } = React.useContext(
|
|
787
|
-
let routeContext = React.useContext(
|
|
788
|
-
|
|
786
|
+
let { basename } = React.useContext(_chunk4TJ7T2OQjs.NavigationContext);
|
|
787
|
+
let routeContext = React.useContext(_chunk4TJ7T2OQjs.RouteContext);
|
|
788
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0, routeContext, "useFormAction must be used inside a RouteContext");
|
|
789
789
|
let [match] = routeContext.matches.slice(-1);
|
|
790
|
-
let path = { ...
|
|
791
|
-
let location =
|
|
790
|
+
let path = { ..._chunk4TJ7T2OQjs.useResolvedPath.call(void 0, action ? action : ".", { relative }) };
|
|
791
|
+
let location = _chunk4TJ7T2OQjs.useLocation.call(void 0, );
|
|
792
792
|
if (action == null) {
|
|
793
793
|
path.search = location.search;
|
|
794
794
|
let params = new URLSearchParams(path.search);
|
|
@@ -805,21 +805,21 @@ function useFormAction(action, { relative } = {}) {
|
|
|
805
805
|
path.search = path.search ? path.search.replace(/^\?/, "?index&") : "?index";
|
|
806
806
|
}
|
|
807
807
|
if (basename !== "/") {
|
|
808
|
-
path.pathname = path.pathname === "/" ? basename :
|
|
808
|
+
path.pathname = path.pathname === "/" ? basename : _chunk4TJ7T2OQjs.joinPaths.call(void 0, [basename, path.pathname]);
|
|
809
809
|
}
|
|
810
|
-
return
|
|
810
|
+
return _chunk4TJ7T2OQjs.createPath.call(void 0, path);
|
|
811
811
|
}
|
|
812
812
|
function useFetcher({
|
|
813
813
|
key
|
|
814
814
|
} = {}) {
|
|
815
815
|
let { router } = useDataRouterContext("useFetcher" /* UseFetcher */);
|
|
816
816
|
let state = useDataRouterState("useFetcher" /* UseFetcher */);
|
|
817
|
-
let fetcherData = React.useContext(
|
|
818
|
-
let route = React.useContext(
|
|
817
|
+
let fetcherData = React.useContext(_chunk4TJ7T2OQjs.FetchersContext);
|
|
818
|
+
let route = React.useContext(_chunk4TJ7T2OQjs.RouteContext);
|
|
819
819
|
let routeId = _optionalChain([route, 'access', _23 => _23.matches, 'access', _24 => _24[route.matches.length - 1], 'optionalAccess', _25 => _25.route, 'access', _26 => _26.id]);
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
820
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0, fetcherData, `useFetcher must be used inside a FetchersContext`);
|
|
821
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0, route, `useFetcher must be used inside a RouteContext`);
|
|
822
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0,
|
|
823
823
|
routeId != null,
|
|
824
824
|
`useFetcher can only be used on routes that contain a unique "id"`
|
|
825
825
|
);
|
|
@@ -835,7 +835,7 @@ function useFetcher({
|
|
|
835
835
|
}, [deleteFetcher, getFetcher, fetcherKey]);
|
|
836
836
|
let load = React.useCallback(
|
|
837
837
|
async (href, opts) => {
|
|
838
|
-
|
|
838
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0, routeId, "No routeId available for fetcher.load()");
|
|
839
839
|
await routerFetch(fetcherKey, routeId, href, opts);
|
|
840
840
|
},
|
|
841
841
|
[fetcherKey, routeId, routerFetch]
|
|
@@ -864,7 +864,7 @@ function useFetcher({
|
|
|
864
864
|
FetcherForm2.displayName = "fetcher.Form";
|
|
865
865
|
return FetcherForm2;
|
|
866
866
|
}, [fetcherKey]);
|
|
867
|
-
let fetcher = state.fetchers.get(fetcherKey) ||
|
|
867
|
+
let fetcher = state.fetchers.get(fetcherKey) || _chunk4TJ7T2OQjs.IDLE_FETCHER;
|
|
868
868
|
let data = fetcherData.get(fetcherKey);
|
|
869
869
|
let fetcherWithComponents = React.useMemo(
|
|
870
870
|
() => ({
|
|
@@ -895,7 +895,7 @@ function getScrollRestorationKey(location, matches, basename, getKey) {
|
|
|
895
895
|
key = getKey(
|
|
896
896
|
{
|
|
897
897
|
...location,
|
|
898
|
-
pathname:
|
|
898
|
+
pathname: _chunk4TJ7T2OQjs.stripBasename.call(void 0, location.pathname, basename) || location.pathname
|
|
899
899
|
},
|
|
900
900
|
matches
|
|
901
901
|
);
|
|
@@ -916,10 +916,10 @@ function useScrollRestoration({
|
|
|
916
916
|
let { restoreScrollPosition, preventScrollReset } = useDataRouterState(
|
|
917
917
|
"useScrollRestoration" /* UseScrollRestoration */
|
|
918
918
|
);
|
|
919
|
-
let { basename } = React.useContext(
|
|
920
|
-
let location =
|
|
921
|
-
let matches =
|
|
922
|
-
let navigation =
|
|
919
|
+
let { basename } = React.useContext(_chunk4TJ7T2OQjs.NavigationContext);
|
|
920
|
+
let location = _chunk4TJ7T2OQjs.useLocation.call(void 0, );
|
|
921
|
+
let matches = _chunk4TJ7T2OQjs.useMatches.call(void 0, );
|
|
922
|
+
let navigation = _chunk4TJ7T2OQjs.useNavigation.call(void 0, );
|
|
923
923
|
React.useEffect(() => {
|
|
924
924
|
window.history.scrollRestoration = "manual";
|
|
925
925
|
return () => {
|
|
@@ -938,7 +938,7 @@ function useScrollRestoration({
|
|
|
938
938
|
JSON.stringify(savedScrollPositions)
|
|
939
939
|
);
|
|
940
940
|
} catch (error) {
|
|
941
|
-
|
|
941
|
+
_chunk4TJ7T2OQjs.warning.call(void 0,
|
|
942
942
|
false,
|
|
943
943
|
`Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (${error}).`
|
|
944
944
|
);
|
|
@@ -985,7 +985,7 @@ function useScrollRestoration({
|
|
|
985
985
|
}
|
|
986
986
|
}
|
|
987
987
|
} catch (e2) {
|
|
988
|
-
|
|
988
|
+
_chunk4TJ7T2OQjs.warning.call(void 0,
|
|
989
989
|
false,
|
|
990
990
|
`"${location.hash.slice(
|
|
991
991
|
1
|
|
@@ -1023,7 +1023,7 @@ function usePrompt({
|
|
|
1023
1023
|
when,
|
|
1024
1024
|
message
|
|
1025
1025
|
}) {
|
|
1026
|
-
let blocker =
|
|
1026
|
+
let blocker = _chunk4TJ7T2OQjs.useBlocker.call(void 0, when);
|
|
1027
1027
|
React.useEffect(() => {
|
|
1028
1028
|
if (blocker.state === "blocked") {
|
|
1029
1029
|
let proceed = window.confirm(message);
|
|
@@ -1041,21 +1041,21 @@ function usePrompt({
|
|
|
1041
1041
|
}, [blocker, when]);
|
|
1042
1042
|
}
|
|
1043
1043
|
function useViewTransitionState(to, { relative } = {}) {
|
|
1044
|
-
let vtContext = React.useContext(
|
|
1045
|
-
|
|
1044
|
+
let vtContext = React.useContext(_chunk4TJ7T2OQjs.ViewTransitionContext);
|
|
1045
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0,
|
|
1046
1046
|
vtContext != null,
|
|
1047
1047
|
"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`. Did you accidentally import `RouterProvider` from `react-router`?"
|
|
1048
1048
|
);
|
|
1049
1049
|
let { basename } = useDataRouterContext(
|
|
1050
1050
|
"useViewTransitionState" /* useViewTransitionState */
|
|
1051
1051
|
);
|
|
1052
|
-
let path =
|
|
1052
|
+
let path = _chunk4TJ7T2OQjs.useResolvedPath.call(void 0, to, { relative });
|
|
1053
1053
|
if (!vtContext.isTransitioning) {
|
|
1054
1054
|
return false;
|
|
1055
1055
|
}
|
|
1056
|
-
let currentPath =
|
|
1057
|
-
let nextPath =
|
|
1058
|
-
return
|
|
1056
|
+
let currentPath = _chunk4TJ7T2OQjs.stripBasename.call(void 0, vtContext.currentLocation.pathname, basename) || vtContext.currentLocation.pathname;
|
|
1057
|
+
let nextPath = _chunk4TJ7T2OQjs.stripBasename.call(void 0, vtContext.nextLocation.pathname, basename) || vtContext.nextLocation.pathname;
|
|
1058
|
+
return _chunk4TJ7T2OQjs.matchPath.call(void 0, path.pathname, nextPath) != null || _chunk4TJ7T2OQjs.matchPath.call(void 0, path.pathname, currentPath) != null;
|
|
1059
1059
|
}
|
|
1060
1060
|
|
|
1061
1061
|
// lib/dom/server.tsx
|
|
@@ -1066,7 +1066,7 @@ function StaticRouter({
|
|
|
1066
1066
|
location: locationProp = "/"
|
|
1067
1067
|
}) {
|
|
1068
1068
|
if (typeof locationProp === "string") {
|
|
1069
|
-
locationProp =
|
|
1069
|
+
locationProp = _chunk4TJ7T2OQjs.parsePath.call(void 0, locationProp);
|
|
1070
1070
|
}
|
|
1071
1071
|
let action = "POP" /* Pop */;
|
|
1072
1072
|
let location = {
|
|
@@ -1079,7 +1079,7 @@ function StaticRouter({
|
|
|
1079
1079
|
};
|
|
1080
1080
|
let staticNavigator = getStatelessNavigator();
|
|
1081
1081
|
return /* @__PURE__ */ React2.createElement(
|
|
1082
|
-
|
|
1082
|
+
_chunk4TJ7T2OQjs.Router,
|
|
1083
1083
|
{
|
|
1084
1084
|
basename,
|
|
1085
1085
|
children,
|
|
@@ -1097,7 +1097,7 @@ function StaticRouterProvider({
|
|
|
1097
1097
|
hydrate = true,
|
|
1098
1098
|
nonce
|
|
1099
1099
|
}) {
|
|
1100
|
-
|
|
1100
|
+
_chunk4TJ7T2OQjs.invariant.call(void 0,
|
|
1101
1101
|
router && context,
|
|
1102
1102
|
"You must provide `router` and `context` to <StaticRouterProvider>"
|
|
1103
1103
|
);
|
|
@@ -1116,12 +1116,12 @@ function StaticRouterProvider({
|
|
|
1116
1116
|
actionData: context.actionData,
|
|
1117
1117
|
errors: serializeErrors(context.errors)
|
|
1118
1118
|
};
|
|
1119
|
-
let json =
|
|
1119
|
+
let json = _chunk4TJ7T2OQjs.escapeHtml.call(void 0, JSON.stringify(JSON.stringify(data)));
|
|
1120
1120
|
hydrateScript = `window.__staticRouterHydrationData = JSON.parse(${json});`;
|
|
1121
1121
|
}
|
|
1122
1122
|
let { state } = dataRouterContext.router;
|
|
1123
|
-
return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(
|
|
1124
|
-
|
|
1123
|
+
return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(_chunk4TJ7T2OQjs.DataRouterContext.Provider, { value: dataRouterContext }, /* @__PURE__ */ React2.createElement(_chunk4TJ7T2OQjs.DataRouterStateContext.Provider, { value: state }, /* @__PURE__ */ React2.createElement(_chunk4TJ7T2OQjs.FetchersContext.Provider, { value: fetchersContext }, /* @__PURE__ */ React2.createElement(_chunk4TJ7T2OQjs.ViewTransitionContext.Provider, { value: { isTransitioning: false } }, /* @__PURE__ */ React2.createElement(
|
|
1124
|
+
_chunk4TJ7T2OQjs.Router,
|
|
1125
1125
|
{
|
|
1126
1126
|
basename: dataRouterContext.basename,
|
|
1127
1127
|
location: state.location,
|
|
@@ -1131,7 +1131,7 @@ function StaticRouterProvider({
|
|
|
1131
1131
|
unstable_useTransitions: false
|
|
1132
1132
|
},
|
|
1133
1133
|
/* @__PURE__ */ React2.createElement(
|
|
1134
|
-
|
|
1134
|
+
_chunk4TJ7T2OQjs.DataRoutes,
|
|
1135
1135
|
{
|
|
1136
1136
|
routes: router.routes,
|
|
1137
1137
|
future: router.future,
|
|
@@ -1153,7 +1153,7 @@ function serializeErrors(errors) {
|
|
|
1153
1153
|
let entries = Object.entries(errors);
|
|
1154
1154
|
let serialized = {};
|
|
1155
1155
|
for (let [key, val] of entries) {
|
|
1156
|
-
if (
|
|
1156
|
+
if (_chunk4TJ7T2OQjs.isRouteErrorResponse.call(void 0, val)) {
|
|
1157
1157
|
serialized[key] = { ...val, __type: "RouteErrorResponse" };
|
|
1158
1158
|
} else if (val instanceof Error) {
|
|
1159
1159
|
serialized[key] = {
|
|
@@ -1203,16 +1203,16 @@ function getStatelessNavigator() {
|
|
|
1203
1203
|
};
|
|
1204
1204
|
}
|
|
1205
1205
|
function createStaticHandler2(routes, opts) {
|
|
1206
|
-
return
|
|
1206
|
+
return _chunk4TJ7T2OQjs.createStaticHandler.call(void 0, routes, {
|
|
1207
1207
|
...opts,
|
|
1208
|
-
mapRouteProperties:
|
|
1208
|
+
mapRouteProperties: _chunk4TJ7T2OQjs.mapRouteProperties
|
|
1209
1209
|
});
|
|
1210
1210
|
}
|
|
1211
1211
|
function createStaticRouter(routes, context, opts = {}) {
|
|
1212
1212
|
let manifest = {};
|
|
1213
|
-
let dataRoutes =
|
|
1213
|
+
let dataRoutes = _chunk4TJ7T2OQjs.convertRoutesToDataRoutes.call(void 0,
|
|
1214
1214
|
routes,
|
|
1215
|
-
|
|
1215
|
+
_chunk4TJ7T2OQjs.mapRouteProperties,
|
|
1216
1216
|
void 0,
|
|
1217
1217
|
manifest
|
|
1218
1218
|
);
|
|
@@ -1245,7 +1245,7 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1245
1245
|
errors: context.errors,
|
|
1246
1246
|
initialized: true,
|
|
1247
1247
|
renderFallback: false,
|
|
1248
|
-
navigation:
|
|
1248
|
+
navigation: _chunk4TJ7T2OQjs.IDLE_NAVIGATION,
|
|
1249
1249
|
restoreScrollPosition: null,
|
|
1250
1250
|
preventScrollReset: false,
|
|
1251
1251
|
revalidation: "idle",
|
|
@@ -1280,7 +1280,7 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1280
1280
|
createHref,
|
|
1281
1281
|
encodeLocation,
|
|
1282
1282
|
getFetcher() {
|
|
1283
|
-
return
|
|
1283
|
+
return _chunk4TJ7T2OQjs.IDLE_FETCHER;
|
|
1284
1284
|
},
|
|
1285
1285
|
deleteFetcher() {
|
|
1286
1286
|
throw msg("deleteFetcher");
|
|
@@ -1292,7 +1292,7 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1292
1292
|
throw msg("dispose");
|
|
1293
1293
|
},
|
|
1294
1294
|
getBlocker() {
|
|
1295
|
-
return
|
|
1295
|
+
return _chunk4TJ7T2OQjs.IDLE_BLOCKER;
|
|
1296
1296
|
},
|
|
1297
1297
|
deleteBlocker() {
|
|
1298
1298
|
throw msg("deleteBlocker");
|
|
@@ -1310,10 +1310,10 @@ function createStaticRouter(routes, context, opts = {}) {
|
|
|
1310
1310
|
};
|
|
1311
1311
|
}
|
|
1312
1312
|
function createHref(to) {
|
|
1313
|
-
return typeof to === "string" ? to :
|
|
1313
|
+
return typeof to === "string" ? to : _chunk4TJ7T2OQjs.createPath.call(void 0, to);
|
|
1314
1314
|
}
|
|
1315
1315
|
function encodeLocation(to) {
|
|
1316
|
-
let href = typeof to === "string" ? to :
|
|
1316
|
+
let href = typeof to === "string" ? to : _chunk4TJ7T2OQjs.createPath.call(void 0, to);
|
|
1317
1317
|
href = href.replace(/ $/, "%20");
|
|
1318
1318
|
let encoded = ABSOLUTE_URL_REGEX2.test(href) ? new URL(href) : new URL(href, "http://localhost");
|
|
1319
1319
|
return {
|