@tanstack/react-router 0.0.1-beta.5 → 0.0.1-beta.50

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.
@@ -9,2826 +9,408 @@
9
9
  * @license MIT
10
10
  */
11
11
  import * as React from 'react';
12
- import { useSyncExternalStore } from 'use-sync-external-store/shim';
12
+ import { functionalUpdate, Router, warning, invariant, last } from '@tanstack/router-core';
13
+ export * from '@tanstack/router-core';
14
+ import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/shim/with-selector';
13
15
 
14
- function _extends$2() {
15
- _extends$2 = Object.assign ? Object.assign.bind() : function (target) {
16
- for (var i = 1; i < arguments.length; i++) {
17
- var source = arguments[i];
18
-
19
- for (var key in source) {
20
- if (Object.prototype.hasOwnProperty.call(source, key)) {
21
- target[key] = source[key];
22
- }
23
- }
24
- }
25
-
26
- return target;
27
- };
28
- return _extends$2.apply(this, arguments);
29
- }
30
-
31
- function _objectWithoutPropertiesLoose(source, excluded) {
32
- if (source == null) return {};
33
- var target = {};
34
- var sourceKeys = Object.keys(source);
35
- var key, i;
36
-
37
- for (i = 0; i < sourceKeys.length; i++) {
38
- key = sourceKeys[i];
39
- if (excluded.indexOf(key) >= 0) continue;
40
- target[key] = source[key];
41
- }
42
-
43
- return target;
44
- }
45
-
46
- /**
47
- * router-core
48
- *
49
- * Copyright (c) TanStack
50
- *
51
- * This source code is licensed under the MIT license found in the
52
- * LICENSE.md file in the root directory of this source tree.
53
- *
54
- * @license MIT
55
- */
56
- function _extends$1() {
57
- _extends$1 = Object.assign ? Object.assign.bind() : function (target) {
58
- for (var i = 1; i < arguments.length; i++) {
59
- var source = arguments[i];
60
-
61
- for (var key in source) {
62
- if (Object.prototype.hasOwnProperty.call(source, key)) {
63
- target[key] = source[key];
64
- }
65
- }
66
- }
67
-
68
- return target;
69
- };
70
- return _extends$1.apply(this, arguments);
71
- }
72
-
73
- /**
74
- * Actions represent the type of change to a location value.
75
- *
76
- * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#action
77
- */
78
- var Action;
79
-
80
- (function (Action) {
81
- /**
82
- * A POP indicates a change to an arbitrary index in the history stack, such
83
- * as a back or forward navigation. It does not describe the direction of the
84
- * navigation, only that the current index changed.
85
- *
86
- * Note: This is the default action for newly created history objects.
87
- */
88
- Action["Pop"] = "POP";
89
- /**
90
- * A PUSH indicates a new entry being added to the history stack, such as when
91
- * a link is clicked and a new page loads. When this happens, all subsequent
92
- * entries in the stack are lost.
93
- */
94
-
95
- Action["Push"] = "PUSH";
96
- /**
97
- * A REPLACE indicates the entry at the current index in the history stack
98
- * being replaced by a new one.
99
- */
100
-
101
- Action["Replace"] = "REPLACE";
102
- })(Action || (Action = {}));
103
-
104
- var readOnly = process.env.NODE_ENV !== "production" ? function (obj) {
105
- return Object.freeze(obj);
106
- } : function (obj) {
107
- return obj;
108
- };
109
-
110
- function warning$1(cond, message) {
111
- if (!cond) {
112
- // eslint-disable-next-line no-console
113
- if (typeof console !== 'undefined') console.warn(message);
114
-
115
- try {
116
- // Welcome to debugging history!
117
- //
118
- // This error is thrown as a convenience so you can more easily
119
- // find the source for a warning that appears in the console by
120
- // enabling "pause on exceptions" in your JavaScript debugger.
121
- throw new Error(message); // eslint-disable-next-line no-empty
122
- } catch (e) {}
123
- }
124
- }
125
-
126
- var BeforeUnloadEventType = 'beforeunload';
127
- var HashChangeEventType = 'hashchange';
128
- var PopStateEventType = 'popstate';
129
- /**
130
- * Browser history stores the location in regular URLs. This is the standard for
131
- * most web apps, but it requires some configuration on the server to ensure you
132
- * serve the same app at multiple URLs.
133
- *
134
- * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#createbrowserhistory
135
- */
136
-
137
- function createBrowserHistory(options) {
138
- if (options === void 0) {
139
- options = {};
140
- }
141
-
142
- var _options = options,
143
- _options$window = _options.window,
144
- window = _options$window === void 0 ? document.defaultView : _options$window;
145
- var globalHistory = window.history;
146
-
147
- function getIndexAndLocation() {
148
- var _window$location = window.location,
149
- pathname = _window$location.pathname,
150
- search = _window$location.search,
151
- hash = _window$location.hash;
152
- var state = globalHistory.state || {};
153
- return [state.idx, readOnly({
154
- pathname: pathname,
155
- search: search,
156
- hash: hash,
157
- state: state.usr || null,
158
- key: state.key || 'default'
159
- })];
160
- }
161
-
162
- var blockedPopTx = null;
163
-
164
- function handlePop() {
165
- if (blockedPopTx) {
166
- blockers.call(blockedPopTx);
167
- blockedPopTx = null;
168
- } else {
169
- var nextAction = Action.Pop;
170
-
171
- var _getIndexAndLocation = getIndexAndLocation(),
172
- nextIndex = _getIndexAndLocation[0],
173
- nextLocation = _getIndexAndLocation[1];
174
-
175
- if (blockers.length) {
176
- if (nextIndex != null) {
177
- var delta = index - nextIndex;
178
-
179
- if (delta) {
180
- // Revert the POP
181
- blockedPopTx = {
182
- action: nextAction,
183
- location: nextLocation,
184
- retry: function retry() {
185
- go(delta * -1);
186
- }
187
- };
188
- go(delta);
189
- }
190
- } else {
191
- // Trying to POP to a location with no index. We did not create
192
- // this location, so we can't effectively block the navigation.
193
- process.env.NODE_ENV !== "production" ? warning$1(false, // TODO: Write up a doc that explains our blocking strategy in
194
- // detail and link to it here so people can understand better what
195
- // is going on and how to avoid it.
196
- "You are trying to block a POP navigation to a location that was not " + "created by the history library. The block will fail silently in " + "production, but in general you should do all navigation with the " + "history library (instead of using window.history.pushState directly) " + "to avoid this situation.") : void 0;
197
- }
198
- } else {
199
- applyTx(nextAction);
200
- }
201
- }
202
- }
203
-
204
- window.addEventListener(PopStateEventType, handlePop);
205
- var action = Action.Pop;
206
-
207
- var _getIndexAndLocation2 = getIndexAndLocation(),
208
- index = _getIndexAndLocation2[0],
209
- location = _getIndexAndLocation2[1];
210
-
211
- var listeners = createEvents();
212
- var blockers = createEvents();
213
-
214
- if (index == null) {
215
- index = 0;
216
- globalHistory.replaceState(_extends$1({}, globalHistory.state, {
217
- idx: index
218
- }), '');
219
- }
220
-
221
- function createHref(to) {
222
- return typeof to === 'string' ? to : createPath(to);
223
- } // state defaults to `null` because `window.history.state` does
224
-
225
-
226
- function getNextLocation(to, state) {
227
- if (state === void 0) {
228
- state = null;
229
- }
230
-
231
- return readOnly(_extends$1({
232
- pathname: location.pathname,
233
- hash: '',
234
- search: ''
235
- }, typeof to === 'string' ? parsePath(to) : to, {
236
- state: state,
237
- key: createKey()
238
- }));
239
- }
240
-
241
- function getHistoryStateAndUrl(nextLocation, index) {
242
- return [{
243
- usr: nextLocation.state,
244
- key: nextLocation.key,
245
- idx: index
246
- }, createHref(nextLocation)];
247
- }
248
-
249
- function allowTx(action, location, retry) {
250
- return !blockers.length || (blockers.call({
251
- action: action,
252
- location: location,
253
- retry: retry
254
- }), false);
255
- }
256
-
257
- function applyTx(nextAction) {
258
- action = nextAction;
259
-
260
- var _getIndexAndLocation3 = getIndexAndLocation();
261
-
262
- index = _getIndexAndLocation3[0];
263
- location = _getIndexAndLocation3[1];
264
- listeners.call({
265
- action: action,
266
- location: location
267
- });
268
- }
269
-
270
- function push(to, state) {
271
- var nextAction = Action.Push;
272
- var nextLocation = getNextLocation(to, state);
273
-
274
- function retry() {
275
- push(to, state);
276
- }
277
-
278
- if (allowTx(nextAction, nextLocation, retry)) {
279
- var _getHistoryStateAndUr = getHistoryStateAndUrl(nextLocation, index + 1),
280
- historyState = _getHistoryStateAndUr[0],
281
- url = _getHistoryStateAndUr[1]; // TODO: Support forced reloading
282
- // try...catch because iOS limits us to 100 pushState calls :/
283
-
284
-
285
- try {
286
- globalHistory.pushState(historyState, '', url);
287
- } catch (error) {
288
- // They are going to lose state here, but there is no real
289
- // way to warn them about it since the page will refresh...
290
- window.location.assign(url);
291
- }
292
-
293
- applyTx(nextAction);
294
- }
295
- }
296
-
297
- function replace(to, state) {
298
- var nextAction = Action.Replace;
299
- var nextLocation = getNextLocation(to, state);
300
-
301
- function retry() {
302
- replace(to, state);
303
- }
304
-
305
- if (allowTx(nextAction, nextLocation, retry)) {
306
- var _getHistoryStateAndUr2 = getHistoryStateAndUrl(nextLocation, index),
307
- historyState = _getHistoryStateAndUr2[0],
308
- url = _getHistoryStateAndUr2[1]; // TODO: Support forced reloading
309
-
310
-
311
- globalHistory.replaceState(historyState, '', url);
312
- applyTx(nextAction);
313
- }
314
- }
315
-
316
- function go(delta) {
317
- globalHistory.go(delta);
318
- }
319
-
320
- var history = {
321
- get action() {
322
- return action;
323
- },
324
-
325
- get location() {
326
- return location;
327
- },
328
-
329
- createHref: createHref,
330
- push: push,
331
- replace: replace,
332
- go: go,
333
- back: function back() {
334
- go(-1);
335
- },
336
- forward: function forward() {
337
- go(1);
338
- },
339
- listen: function listen(listener) {
340
- return listeners.push(listener);
341
- },
342
- block: function block(blocker) {
343
- var unblock = blockers.push(blocker);
344
-
345
- if (blockers.length === 1) {
346
- window.addEventListener(BeforeUnloadEventType, promptBeforeUnload);
347
- }
348
-
349
- return function () {
350
- unblock(); // Remove the beforeunload listener so the document may
351
- // still be salvageable in the pagehide event.
352
- // See https://html.spec.whatwg.org/#unloading-documents
353
-
354
- if (!blockers.length) {
355
- window.removeEventListener(BeforeUnloadEventType, promptBeforeUnload);
356
- }
357
- };
358
- }
359
- };
360
- return history;
361
- }
362
- /**
363
- * Hash history stores the location in window.location.hash. This makes it ideal
364
- * for situations where you don't want to send the location to the server for
365
- * some reason, either because you do cannot configure it or the URL space is
366
- * reserved for something else.
367
- *
368
- * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#createhashhistory
369
- */
370
-
371
- function createHashHistory(options) {
372
- if (options === void 0) {
373
- options = {};
374
- }
375
-
376
- var _options2 = options,
377
- _options2$window = _options2.window,
378
- window = _options2$window === void 0 ? document.defaultView : _options2$window;
379
- var globalHistory = window.history;
380
-
381
- function getIndexAndLocation() {
382
- var _parsePath = parsePath(window.location.hash.substr(1)),
383
- _parsePath$pathname = _parsePath.pathname,
384
- pathname = _parsePath$pathname === void 0 ? '/' : _parsePath$pathname,
385
- _parsePath$search = _parsePath.search,
386
- search = _parsePath$search === void 0 ? '' : _parsePath$search,
387
- _parsePath$hash = _parsePath.hash,
388
- hash = _parsePath$hash === void 0 ? '' : _parsePath$hash;
389
-
390
- var state = globalHistory.state || {};
391
- return [state.idx, readOnly({
392
- pathname: pathname,
393
- search: search,
394
- hash: hash,
395
- state: state.usr || null,
396
- key: state.key || 'default'
397
- })];
398
- }
399
-
400
- var blockedPopTx = null;
401
-
402
- function handlePop() {
403
- if (blockedPopTx) {
404
- blockers.call(blockedPopTx);
405
- blockedPopTx = null;
406
- } else {
407
- var nextAction = Action.Pop;
408
-
409
- var _getIndexAndLocation4 = getIndexAndLocation(),
410
- nextIndex = _getIndexAndLocation4[0],
411
- nextLocation = _getIndexAndLocation4[1];
412
-
413
- if (blockers.length) {
414
- if (nextIndex != null) {
415
- var delta = index - nextIndex;
416
-
417
- if (delta) {
418
- // Revert the POP
419
- blockedPopTx = {
420
- action: nextAction,
421
- location: nextLocation,
422
- retry: function retry() {
423
- go(delta * -1);
424
- }
425
- };
426
- go(delta);
427
- }
428
- } else {
429
- // Trying to POP to a location with no index. We did not create
430
- // this location, so we can't effectively block the navigation.
431
- process.env.NODE_ENV !== "production" ? warning$1(false, // TODO: Write up a doc that explains our blocking strategy in
432
- // detail and link to it here so people can understand better
433
- // what is going on and how to avoid it.
434
- "You are trying to block a POP navigation to a location that was not " + "created by the history library. The block will fail silently in " + "production, but in general you should do all navigation with the " + "history library (instead of using window.history.pushState directly) " + "to avoid this situation.") : void 0;
435
- }
436
- } else {
437
- applyTx(nextAction);
438
- }
439
- }
440
- }
441
-
442
- window.addEventListener(PopStateEventType, handlePop); // popstate does not fire on hashchange in IE 11 and old (trident) Edge
443
- // https://developer.mozilla.org/de/docs/Web/API/Window/popstate_event
444
-
445
- window.addEventListener(HashChangeEventType, function () {
446
- var _getIndexAndLocation5 = getIndexAndLocation(),
447
- nextLocation = _getIndexAndLocation5[1]; // Ignore extraneous hashchange events.
448
-
449
-
450
- if (createPath(nextLocation) !== createPath(location)) {
451
- handlePop();
452
- }
453
- });
454
- var action = Action.Pop;
455
-
456
- var _getIndexAndLocation6 = getIndexAndLocation(),
457
- index = _getIndexAndLocation6[0],
458
- location = _getIndexAndLocation6[1];
459
-
460
- var listeners = createEvents();
461
- var blockers = createEvents();
462
-
463
- if (index == null) {
464
- index = 0;
465
- globalHistory.replaceState(_extends$1({}, globalHistory.state, {
466
- idx: index
467
- }), '');
468
- }
469
-
470
- function getBaseHref() {
471
- var base = document.querySelector('base');
472
- var href = '';
473
-
474
- if (base && base.getAttribute('href')) {
475
- var url = window.location.href;
476
- var hashIndex = url.indexOf('#');
477
- href = hashIndex === -1 ? url : url.slice(0, hashIndex);
478
- }
479
-
480
- return href;
481
- }
482
-
483
- function createHref(to) {
484
- return getBaseHref() + '#' + (typeof to === 'string' ? to : createPath(to));
485
- }
486
-
487
- function getNextLocation(to, state) {
488
- if (state === void 0) {
489
- state = null;
490
- }
491
-
492
- return readOnly(_extends$1({
493
- pathname: location.pathname,
494
- hash: '',
495
- search: ''
496
- }, typeof to === 'string' ? parsePath(to) : to, {
497
- state: state,
498
- key: createKey()
499
- }));
500
- }
501
-
502
- function getHistoryStateAndUrl(nextLocation, index) {
503
- return [{
504
- usr: nextLocation.state,
505
- key: nextLocation.key,
506
- idx: index
507
- }, createHref(nextLocation)];
508
- }
509
-
510
- function allowTx(action, location, retry) {
511
- return !blockers.length || (blockers.call({
512
- action: action,
513
- location: location,
514
- retry: retry
515
- }), false);
516
- }
517
-
518
- function applyTx(nextAction) {
519
- action = nextAction;
520
-
521
- var _getIndexAndLocation7 = getIndexAndLocation();
522
-
523
- index = _getIndexAndLocation7[0];
524
- location = _getIndexAndLocation7[1];
525
- listeners.call({
526
- action: action,
527
- location: location
528
- });
529
- }
530
-
531
- function push(to, state) {
532
- var nextAction = Action.Push;
533
- var nextLocation = getNextLocation(to, state);
534
-
535
- function retry() {
536
- push(to, state);
537
- }
538
-
539
- process.env.NODE_ENV !== "production" ? warning$1(nextLocation.pathname.charAt(0) === '/', "Relative pathnames are not supported in hash history.push(" + JSON.stringify(to) + ")") : void 0;
540
-
541
- if (allowTx(nextAction, nextLocation, retry)) {
542
- var _getHistoryStateAndUr3 = getHistoryStateAndUrl(nextLocation, index + 1),
543
- historyState = _getHistoryStateAndUr3[0],
544
- url = _getHistoryStateAndUr3[1]; // TODO: Support forced reloading
545
- // try...catch because iOS limits us to 100 pushState calls :/
546
-
547
-
548
- try {
549
- globalHistory.pushState(historyState, '', url);
550
- } catch (error) {
551
- // They are going to lose state here, but there is no real
552
- // way to warn them about it since the page will refresh...
553
- window.location.assign(url);
554
- }
555
-
556
- applyTx(nextAction);
557
- }
558
- }
559
-
560
- function replace(to, state) {
561
- var nextAction = Action.Replace;
562
- var nextLocation = getNextLocation(to, state);
563
-
564
- function retry() {
565
- replace(to, state);
566
- }
567
-
568
- process.env.NODE_ENV !== "production" ? warning$1(nextLocation.pathname.charAt(0) === '/', "Relative pathnames are not supported in hash history.replace(" + JSON.stringify(to) + ")") : void 0;
569
-
570
- if (allowTx(nextAction, nextLocation, retry)) {
571
- var _getHistoryStateAndUr4 = getHistoryStateAndUrl(nextLocation, index),
572
- historyState = _getHistoryStateAndUr4[0],
573
- url = _getHistoryStateAndUr4[1]; // TODO: Support forced reloading
574
-
575
-
576
- globalHistory.replaceState(historyState, '', url);
577
- applyTx(nextAction);
578
- }
579
- }
580
-
581
- function go(delta) {
582
- globalHistory.go(delta);
583
- }
584
-
585
- var history = {
586
- get action() {
587
- return action;
588
- },
589
-
590
- get location() {
591
- return location;
592
- },
593
-
594
- createHref: createHref,
595
- push: push,
596
- replace: replace,
597
- go: go,
598
- back: function back() {
599
- go(-1);
600
- },
601
- forward: function forward() {
602
- go(1);
603
- },
604
- listen: function listen(listener) {
605
- return listeners.push(listener);
606
- },
607
- block: function block(blocker) {
608
- var unblock = blockers.push(blocker);
609
-
610
- if (blockers.length === 1) {
611
- window.addEventListener(BeforeUnloadEventType, promptBeforeUnload);
612
- }
613
-
614
- return function () {
615
- unblock(); // Remove the beforeunload listener so the document may
616
- // still be salvageable in the pagehide event.
617
- // See https://html.spec.whatwg.org/#unloading-documents
618
-
619
- if (!blockers.length) {
620
- window.removeEventListener(BeforeUnloadEventType, promptBeforeUnload);
621
- }
622
- };
623
- }
624
- };
625
- return history;
626
- }
627
- /**
628
- * Memory history stores the current location in memory. It is designed for use
629
- * in stateful non-browser environments like tests and React Native.
630
- *
631
- * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#creatememoryhistory
632
- */
633
-
634
- function createMemoryHistory(options) {
635
- if (options === void 0) {
636
- options = {};
637
- }
638
-
639
- var _options3 = options,
640
- _options3$initialEntr = _options3.initialEntries,
641
- initialEntries = _options3$initialEntr === void 0 ? ['/'] : _options3$initialEntr,
642
- initialIndex = _options3.initialIndex;
643
- var entries = initialEntries.map(function (entry) {
644
- var location = readOnly(_extends$1({
645
- pathname: '/',
646
- search: '',
647
- hash: '',
648
- state: null,
649
- key: createKey()
650
- }, typeof entry === 'string' ? parsePath(entry) : entry));
651
- process.env.NODE_ENV !== "production" ? warning$1(location.pathname.charAt(0) === '/', "Relative pathnames are not supported in createMemoryHistory({ initialEntries }) (invalid entry: " + JSON.stringify(entry) + ")") : void 0;
652
- return location;
653
- });
654
- var index = clamp(initialIndex == null ? entries.length - 1 : initialIndex, 0, entries.length - 1);
655
- var action = Action.Pop;
656
- var location = entries[index];
657
- var listeners = createEvents();
658
- var blockers = createEvents();
659
-
660
- function createHref(to) {
661
- return typeof to === 'string' ? to : createPath(to);
662
- }
663
-
664
- function getNextLocation(to, state) {
665
- if (state === void 0) {
666
- state = null;
667
- }
668
-
669
- return readOnly(_extends$1({
670
- pathname: location.pathname,
671
- search: '',
672
- hash: ''
673
- }, typeof to === 'string' ? parsePath(to) : to, {
674
- state: state,
675
- key: createKey()
676
- }));
677
- }
678
-
679
- function allowTx(action, location, retry) {
680
- return !blockers.length || (blockers.call({
681
- action: action,
682
- location: location,
683
- retry: retry
684
- }), false);
685
- }
686
-
687
- function applyTx(nextAction, nextLocation) {
688
- action = nextAction;
689
- location = nextLocation;
690
- listeners.call({
691
- action: action,
692
- location: location
693
- });
694
- }
695
-
696
- function push(to, state) {
697
- var nextAction = Action.Push;
698
- var nextLocation = getNextLocation(to, state);
699
-
700
- function retry() {
701
- push(to, state);
702
- }
703
-
704
- process.env.NODE_ENV !== "production" ? warning$1(location.pathname.charAt(0) === '/', "Relative pathnames are not supported in memory history.push(" + JSON.stringify(to) + ")") : void 0;
705
-
706
- if (allowTx(nextAction, nextLocation, retry)) {
707
- index += 1;
708
- entries.splice(index, entries.length, nextLocation);
709
- applyTx(nextAction, nextLocation);
710
- }
711
- }
712
-
713
- function replace(to, state) {
714
- var nextAction = Action.Replace;
715
- var nextLocation = getNextLocation(to, state);
716
-
717
- function retry() {
718
- replace(to, state);
719
- }
720
-
721
- process.env.NODE_ENV !== "production" ? warning$1(location.pathname.charAt(0) === '/', "Relative pathnames are not supported in memory history.replace(" + JSON.stringify(to) + ")") : void 0;
722
-
723
- if (allowTx(nextAction, nextLocation, retry)) {
724
- entries[index] = nextLocation;
725
- applyTx(nextAction, nextLocation);
726
- }
727
- }
728
-
729
- function go(delta) {
730
- var nextIndex = clamp(index + delta, 0, entries.length - 1);
731
- var nextAction = Action.Pop;
732
- var nextLocation = entries[nextIndex];
733
-
734
- function retry() {
735
- go(delta);
736
- }
737
-
738
- if (allowTx(nextAction, nextLocation, retry)) {
739
- index = nextIndex;
740
- applyTx(nextAction, nextLocation);
741
- }
742
- }
743
-
744
- var history = {
745
- get index() {
746
- return index;
747
- },
748
-
749
- get action() {
750
- return action;
751
- },
752
-
753
- get location() {
754
- return location;
755
- },
756
-
757
- createHref: createHref,
758
- push: push,
759
- replace: replace,
760
- go: go,
761
- back: function back() {
762
- go(-1);
763
- },
764
- forward: function forward() {
765
- go(1);
766
- },
767
- listen: function listen(listener) {
768
- return listeners.push(listener);
769
- },
770
- block: function block(blocker) {
771
- return blockers.push(blocker);
772
- }
773
- };
774
- return history;
775
- } ////////////////////////////////////////////////////////////////////////////////
776
- // UTILS
777
- ////////////////////////////////////////////////////////////////////////////////
778
-
779
- function clamp(n, lowerBound, upperBound) {
780
- return Math.min(Math.max(n, lowerBound), upperBound);
781
- }
782
-
783
- function promptBeforeUnload(event) {
784
- // Cancel the event.
785
- event.preventDefault(); // Chrome (and legacy IE) requires returnValue to be set.
786
-
787
- event.returnValue = '';
788
- }
789
-
790
- function createEvents() {
791
- var handlers = [];
792
- return {
793
- get length() {
794
- return handlers.length;
795
- },
796
-
797
- push: function push(fn) {
798
- handlers.push(fn);
799
- return function () {
800
- handlers = handlers.filter(function (handler) {
801
- return handler !== fn;
802
- });
803
- };
804
- },
805
- call: function call(arg) {
806
- handlers.forEach(function (fn) {
807
- return fn && fn(arg);
808
- });
809
- }
810
- };
811
- }
812
-
813
- function createKey() {
814
- return Math.random().toString(36).substr(2, 8);
815
- }
816
- /**
817
- * Creates a string URL path from the given pathname, search, and hash components.
818
- *
819
- * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#createpath
820
- */
821
-
822
-
823
- function createPath(_ref) {
824
- var _ref$pathname = _ref.pathname,
825
- pathname = _ref$pathname === void 0 ? '/' : _ref$pathname,
826
- _ref$search = _ref.search,
827
- search = _ref$search === void 0 ? '' : _ref$search,
828
- _ref$hash = _ref.hash,
829
- hash = _ref$hash === void 0 ? '' : _ref$hash;
830
- if (search && search !== '?') pathname += search.charAt(0) === '?' ? search : '?' + search;
831
- if (hash && hash !== '#') pathname += hash.charAt(0) === '#' ? hash : '#' + hash;
832
- return pathname;
833
- }
834
- /**
835
- * Parses a string URL path into its separate pathname, search, and hash components.
836
- *
837
- * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#parsepath
838
- */
839
-
840
- function parsePath(path) {
841
- var parsedPath = {};
842
-
843
- if (path) {
844
- var hashIndex = path.indexOf('#');
845
-
846
- if (hashIndex >= 0) {
847
- parsedPath.hash = path.substr(hashIndex);
848
- path = path.substr(0, hashIndex);
849
- }
850
-
851
- var searchIndex = path.indexOf('?');
852
-
853
- if (searchIndex >= 0) {
854
- parsedPath.search = path.substr(searchIndex);
855
- path = path.substr(0, searchIndex);
856
- }
857
-
858
- if (path) {
859
- parsedPath.pathname = path;
860
- }
861
- }
862
-
863
- return parsedPath;
864
- }
865
-
866
- var isProduction = process.env.NODE_ENV === 'production';
867
- var prefix = 'Invariant failed';
868
- function invariant(condition, message) {
869
- if (condition) {
870
- return;
871
- }
872
- if (isProduction) {
873
- throw new Error(prefix);
874
- }
875
- var provided = typeof message === 'function' ? message() : message;
876
- var value = provided ? "".concat(prefix, ": ").concat(provided) : prefix;
877
- throw new Error(value);
878
- }
879
-
880
- // type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (
881
- // k: infer I,
882
- // ) => any
883
- // ? I
884
- // : never
885
-
886
- /**
887
- * This function returns `a` if `b` is deeply equal.
888
- * If not, it will replace any deeply equal children of `b` with those of `a`.
889
- * This can be used for structural sharing between JSON values for example.
890
- */
891
- function replaceEqualDeep(prev, next) {
892
- if (prev === next) {
893
- return prev;
894
- }
895
-
896
- const array = Array.isArray(prev) && Array.isArray(next);
897
-
898
- if (array || isPlainObject(prev) && isPlainObject(next)) {
899
- const aSize = array ? prev.length : Object.keys(prev).length;
900
- const bItems = array ? next : Object.keys(next);
901
- const bSize = bItems.length;
902
- const copy = array ? [] : {};
903
- let equalItems = 0;
904
-
905
- for (let i = 0; i < bSize; i++) {
906
- const key = array ? i : bItems[i];
907
- copy[key] = replaceEqualDeep(prev[key], next[key]);
908
-
909
- if (copy[key] === prev[key]) {
910
- equalItems++;
911
- }
912
- }
913
-
914
- return aSize === bSize && equalItems === aSize ? prev : copy;
915
- }
916
-
917
- return next;
918
- } // Copied from: https://github.com/jonschlinkert/is-plain-object
919
-
920
- function isPlainObject(o) {
921
- if (!hasObjectPrototype(o)) {
922
- return false;
923
- } // If has modified constructor
924
-
925
-
926
- const ctor = o.constructor;
927
-
928
- if (typeof ctor === 'undefined') {
929
- return true;
930
- } // If has modified prototype
931
-
932
-
933
- const prot = ctor.prototype;
934
-
935
- if (!hasObjectPrototype(prot)) {
936
- return false;
937
- } // If constructor does not have an Object-specific method
938
-
939
-
940
- if (!prot.hasOwnProperty('isPrototypeOf')) {
941
- return false;
942
- } // Most likely a plain Object
943
-
944
-
945
- return true;
946
- }
947
-
948
- function hasObjectPrototype(o) {
949
- return Object.prototype.toString.call(o) === '[object Object]';
950
- }
951
-
952
- function last(arr) {
953
- return arr[arr.length - 1];
954
- }
955
- function warning(cond, message) {
956
- if (cond) {
957
- if (typeof console !== 'undefined') console.warn(message);
958
-
959
- try {
960
- throw new Error(message);
961
- } catch (_unused) {}
962
- }
963
-
964
- return true;
965
- }
966
-
967
- function isFunction(d) {
968
- return typeof d === 'function';
969
- }
970
-
971
- function functionalUpdate(updater, previous) {
972
- if (isFunction(updater)) {
973
- return updater(previous);
974
- }
975
-
976
- return updater;
977
- }
978
-
979
- function joinPaths(paths) {
980
- return cleanPath(paths.filter(Boolean).join('/'));
981
- }
982
- function cleanPath(path) {
983
- // remove double slashes
984
- return path.replace(/\/{2,}/g, '/');
985
- }
986
- function trimPathLeft(path) {
987
- return path === '/' ? path : path.replace(/^\/{1,}/, '');
988
- }
989
- function trimPathRight(path) {
990
- return path === '/' ? path : path.replace(/\/{1,}$/, '');
991
- }
992
- function trimPath(path) {
993
- return trimPathRight(trimPathLeft(path));
994
- }
995
- function resolvePath(basepath, base, to) {
996
- base = base.replace(new RegExp("^" + basepath), '/');
997
- to = to.replace(new RegExp("^" + basepath), '/');
998
- let baseSegments = parsePathname(base);
999
- const toSegments = parsePathname(to);
1000
- toSegments.forEach((toSegment, index) => {
1001
- if (toSegment.value === '/') {
1002
- if (!index) {
1003
- // Leading slash
1004
- baseSegments = [toSegment];
1005
- } else if (index === toSegments.length - 1) {
1006
- // Trailing Slash
1007
- baseSegments.push(toSegment);
1008
- } else ;
1009
- } else if (toSegment.value === '..') {
1010
- var _last;
1011
-
1012
- // Extra trailing slash? pop it off
1013
- if (baseSegments.length > 1 && ((_last = last(baseSegments)) == null ? void 0 : _last.value) === '/') {
1014
- baseSegments.pop();
1015
- }
1016
-
1017
- baseSegments.pop();
1018
- } else if (toSegment.value === '.') {
1019
- return;
1020
- } else {
1021
- baseSegments.push(toSegment);
1022
- }
1023
- });
1024
- const joined = joinPaths([basepath, ...baseSegments.map(d => d.value)]);
1025
- return cleanPath(joined);
1026
- }
1027
- function parsePathname(pathname) {
1028
- if (!pathname) {
1029
- return [];
1030
- }
1031
-
1032
- pathname = cleanPath(pathname);
1033
- const segments = [];
1034
-
1035
- if (pathname.slice(0, 1) === '/') {
1036
- pathname = pathname.substring(1);
1037
- segments.push({
1038
- type: 'pathname',
1039
- value: '/'
1040
- });
1041
- }
1042
-
1043
- if (!pathname) {
1044
- return segments;
1045
- } // Remove empty segments and '.' segments
1046
-
1047
-
1048
- const split = pathname.split('/').filter(Boolean);
1049
- segments.push(...split.map(part => {
1050
- if (part.startsWith('*')) {
1051
- return {
1052
- type: 'wildcard',
1053
- value: part
1054
- };
1055
- }
1056
-
1057
- if (part.charAt(0) === ':') {
1058
- return {
1059
- type: 'param',
1060
- value: part
1061
- };
1062
- }
1063
-
1064
- return {
1065
- type: 'pathname',
1066
- value: part
1067
- };
1068
- }));
1069
-
1070
- if (pathname.slice(-1) === '/') {
1071
- pathname = pathname.substring(1);
1072
- segments.push({
1073
- type: 'pathname',
1074
- value: '/'
1075
- });
1076
- }
1077
-
1078
- return segments;
1079
- }
1080
- function interpolatePath(path, params, leaveWildcard) {
1081
- const interpolatedPathSegments = parsePathname(path);
1082
- return joinPaths(interpolatedPathSegments.map(segment => {
1083
- if (segment.value === '*' && !leaveWildcard) {
1084
- return '';
1085
- }
1086
-
1087
- if (segment.type === 'param') {
1088
- var _segment$value$substr;
1089
-
1090
- return (_segment$value$substr = params[segment.value.substring(1)]) != null ? _segment$value$substr : '';
1091
- }
1092
-
1093
- return segment.value;
1094
- }));
1095
- }
1096
- function matchPathname(currentPathname, matchLocation) {
1097
- const pathParams = matchByPath(currentPathname, matchLocation); // const searchMatched = matchBySearch(currentLocation.search, matchLocation)
1098
-
1099
- if (matchLocation.to && !pathParams) {
1100
- return;
1101
- } // if (matchLocation.search && !searchMatched) {
1102
- // return
1103
- // }
1104
-
1105
-
1106
- return pathParams != null ? pathParams : {};
1107
- }
1108
- function matchByPath(from, matchLocation) {
1109
- var _matchLocation$to;
1110
-
1111
- const baseSegments = parsePathname(from);
1112
- const routeSegments = parsePathname("" + ((_matchLocation$to = matchLocation.to) != null ? _matchLocation$to : '*'));
1113
- const params = {};
1114
-
1115
- let isMatch = (() => {
1116
- for (let i = 0; i < Math.max(baseSegments.length, routeSegments.length); i++) {
1117
- const baseSegment = baseSegments[i];
1118
- const routeSegment = routeSegments[i];
1119
- const isLastRouteSegment = i === routeSegments.length - 1;
1120
- const isLastBaseSegment = i === baseSegments.length - 1;
1121
-
1122
- if (routeSegment) {
1123
- if (routeSegment.type === 'wildcard') {
1124
- if (baseSegment != null && baseSegment.value) {
1125
- params['*'] = joinPaths(baseSegments.slice(i).map(d => d.value));
1126
- return true;
1127
- }
1128
-
1129
- return false;
1130
- }
1131
-
1132
- if (routeSegment.type === 'pathname') {
1133
- if (routeSegment.value === '/' && !(baseSegment != null && baseSegment.value)) {
1134
- return true;
1135
- }
1136
-
1137
- if (baseSegment) {
1138
- if (matchLocation.caseSensitive) {
1139
- if (routeSegment.value !== baseSegment.value) {
1140
- return false;
1141
- }
1142
- } else if (routeSegment.value.toLowerCase() !== baseSegment.value.toLowerCase()) {
1143
- return false;
1144
- }
1145
- }
1146
- }
1147
-
1148
- if (!baseSegment) {
1149
- return false;
1150
- }
1151
-
1152
- if (routeSegment.type === 'param') {
1153
- if ((baseSegment == null ? void 0 : baseSegment.value) === '/') {
1154
- return false;
1155
- }
1156
-
1157
- if (!baseSegment.value.startsWith(':')) {
1158
- params[routeSegment.value.substring(1)] = baseSegment.value;
1159
- }
1160
- }
1161
- }
1162
-
1163
- if (isLastRouteSegment && !isLastBaseSegment) {
1164
- return !!matchLocation.fuzzy;
1165
- }
1166
- }
1167
-
1168
- return true;
1169
- })();
1170
-
1171
- return isMatch ? params : undefined;
1172
- }
1173
-
1174
- // @ts-nocheck
1175
- // qss has been slightly modified and inlined here for our use cases (and compression's sake). We've included it as a hard dependency for MIT license attribution.
1176
- function encode(obj, pfx) {
1177
- var k,
1178
- i,
1179
- tmp,
1180
- str = '';
1181
-
1182
- for (k in obj) {
1183
- if ((tmp = obj[k]) !== void 0) {
1184
- if (Array.isArray(tmp)) {
1185
- for (i = 0; i < tmp.length; i++) {
1186
- str && (str += '&');
1187
- str += encodeURIComponent(k) + '=' + encodeURIComponent(tmp[i]);
1188
- }
1189
- } else {
1190
- str && (str += '&');
1191
- str += encodeURIComponent(k) + '=' + encodeURIComponent(tmp);
1192
- }
1193
- }
1194
- }
1195
-
1196
- return (pfx || '') + str;
1197
- }
1198
-
1199
- function toValue(mix) {
1200
- if (!mix) return '';
1201
- var str = decodeURIComponent(mix);
1202
- if (str === 'false') return false;
1203
- if (str === 'true') return true;
1204
- if (str.charAt(0) === '0') return str;
1205
- return +str * 0 === 0 ? +str : str;
1206
- }
1207
-
1208
- function decode(str) {
1209
- var tmp,
1210
- k,
1211
- out = {},
1212
- arr = str.split('&');
1213
-
1214
- while (tmp = arr.shift()) {
1215
- tmp = tmp.split('=');
1216
- k = tmp.shift();
1217
-
1218
- if (out[k] !== void 0) {
1219
- out[k] = [].concat(out[k], toValue(tmp.shift()));
1220
- } else {
1221
- out[k] = toValue(tmp.shift());
1222
- }
1223
- }
1224
-
1225
- return out;
1226
- }
1227
-
1228
- function _extends() {
1229
- _extends = Object.assign ? Object.assign.bind() : function (target) {
1230
- for (var i = 1; i < arguments.length; i++) {
1231
- var source = arguments[i];
1232
-
1233
- for (var key in source) {
1234
- if (Object.prototype.hasOwnProperty.call(source, key)) {
1235
- target[key] = source[key];
1236
- }
1237
- }
1238
- }
1239
-
1240
- return target;
1241
- };
1242
- return _extends.apply(this, arguments);
1243
- }
1244
-
1245
- function createRoute(routeConfig, options, parent, router) {
1246
- const {
1247
- id,
1248
- routeId,
1249
- path: routePath,
1250
- fullPath
1251
- } = routeConfig;
1252
-
1253
- const action = router.state.actions[id] || (() => {
1254
- router.state.actions[id] = {
1255
- pending: [],
1256
- submit: async (submission, actionOpts) => {
1257
- var _actionOpts$invalidat;
1258
-
1259
- if (!route) {
1260
- return;
1261
- }
1262
-
1263
- const invalidate = (_actionOpts$invalidat = actionOpts == null ? void 0 : actionOpts.invalidate) != null ? _actionOpts$invalidat : true;
1264
- const actionState = {
1265
- submittedAt: Date.now(),
1266
- status: 'pending',
1267
- submission
1268
- };
1269
- action.current = actionState;
1270
- action.latest = actionState;
1271
- action.pending.push(actionState);
1272
- router.state = _extends({}, router.state, {
1273
- currentAction: actionState,
1274
- latestAction: actionState
1275
- });
1276
- router.notify();
1277
-
1278
- try {
1279
- const res = await (route.options.action == null ? void 0 : route.options.action(submission));
1280
- actionState.data = res;
1281
-
1282
- if (invalidate) {
1283
- router.invalidateRoute({
1284
- to: '.',
1285
- fromCurrent: true
1286
- });
1287
- await router.reload();
1288
- }
1289
-
1290
- actionState.status = 'success';
1291
- return res;
1292
- } catch (err) {
1293
- console.error(err);
1294
- actionState.error = err;
1295
- actionState.status = 'error';
1296
- } finally {
1297
- action.pending = action.pending.filter(d => d !== actionState);
1298
- router.removeActionQueue.push({
1299
- action,
1300
- actionState
1301
- });
1302
- router.notify();
1303
- }
1304
- }
1305
- };
1306
- return router.state.actions[id];
1307
- })();
1308
-
1309
- const loader = router.state.loaders[id] || (() => {
1310
- router.state.loaders[id] = {
1311
- pending: [],
1312
- fetch: async loaderContext => {
1313
- if (!route) {
1314
- return;
1315
- }
1316
-
1317
- const loaderState = {
1318
- loadedAt: Date.now(),
1319
- loaderContext
1320
- };
1321
- loader.current = loaderState;
1322
- loader.latest = loaderState;
1323
- loader.pending.push(loaderState); // router.state = {
1324
- // ...router.state,
1325
- // currentAction: loaderState,
1326
- // latestAction: loaderState,
1327
- // }
1328
-
1329
- router.notify();
1330
-
1331
- try {
1332
- return await (route.options.loader == null ? void 0 : route.options.loader(loaderContext));
1333
- } finally {
1334
- loader.pending = loader.pending.filter(d => d !== loaderState); // router.removeActionQueue.push({ loader, loaderState })
1335
-
1336
- router.notify();
1337
- }
1338
- }
1339
- };
1340
- return router.state.loaders[id];
1341
- })();
1342
-
1343
- let route = {
1344
- routeId: id,
1345
- routeRouteId: routeId,
1346
- routePath,
1347
- fullPath,
1348
- options,
1349
- router,
1350
- childRoutes: undefined,
1351
- parentRoute: parent,
1352
- action,
1353
- loader: loader,
1354
- buildLink: options => {
1355
- return router.buildLink(_extends({}, options, {
1356
- from: fullPath
1357
- }));
1358
- },
1359
- navigate: options => {
1360
- return router.navigate(_extends({}, options, {
1361
- from: fullPath
1362
- }));
1363
- },
1364
- matchRoute: (matchLocation, opts) => {
1365
- return router.matchRoute(_extends({}, matchLocation, {
1366
- from: fullPath
1367
- }), opts);
1368
- }
1369
- };
1370
- router.options.createRoute == null ? void 0 : router.options.createRoute({
1371
- router,
1372
- route
1373
- });
1374
- return route;
1375
- }
1376
- function cascadeLoaderData(matches) {
1377
- matches.forEach((match, index) => {
1378
- const parent = matches[index - 1];
1379
-
1380
- if (parent) {
1381
- match.loaderData = replaceEqualDeep(match.loaderData, _extends({}, parent.loaderData, match.routeLoaderData));
1382
- }
1383
- });
1384
- }
1385
-
1386
- const rootRouteId = '__root__';
1387
- const createRouteConfig = function createRouteConfig(options, children, isRoot, parentId, parentPath) {
1388
- if (options === void 0) {
1389
- options = {};
1390
- }
1391
-
1392
- if (isRoot === void 0) {
1393
- isRoot = true;
1394
- }
1395
-
1396
- if (isRoot) {
1397
- options.path = rootRouteId;
1398
- } // Strip the root from parentIds
1399
-
1400
-
1401
- if (parentId === rootRouteId) {
1402
- parentId = '';
1403
- }
1404
-
1405
- let path = isRoot ? rootRouteId : options.path; // If the path is anything other than an index path, trim it up
1406
-
1407
- if (path && path !== '/') {
1408
- path = trimPath(path);
1409
- }
1410
-
1411
- const routeId = path || options.id;
1412
- let id = joinPaths([parentId, routeId]);
1413
-
1414
- if (path === rootRouteId) {
1415
- path = '/';
1416
- }
1417
-
1418
- if (id !== rootRouteId) {
1419
- id = joinPaths(['/', id]);
1420
- }
1421
-
1422
- const fullPath = id === rootRouteId ? '/' : trimPathRight(joinPaths([parentPath, path]));
1423
- return {
1424
- id: id,
1425
- routeId: routeId,
1426
- path: path,
1427
- fullPath: fullPath,
1428
- options: options,
1429
- children,
1430
- createChildren: cb => createRouteConfig(options, cb(childOptions => createRouteConfig(childOptions, undefined, false, id, fullPath)), false, parentId, parentPath),
1431
- addChildren: children => createRouteConfig(options, children, false, parentId, parentPath),
1432
- createRoute: childOptions => createRouteConfig(childOptions, undefined, false, id, fullPath)
1433
- };
1434
- };
1435
-
1436
- const elementTypes = ['element', 'errorElement', 'catchElement', 'pendingElement'];
1437
- function createRouteMatch(router, route, opts) {
1438
- const routeMatch = _extends({}, route, opts, {
1439
- router,
1440
- routeSearch: {},
1441
- search: {},
1442
- childMatches: [],
1443
- status: 'idle',
1444
- routeLoaderData: {},
1445
- loaderData: {},
1446
- isPending: false,
1447
- isFetching: false,
1448
- isInvalid: false,
1449
- invalidAt: Infinity,
1450
- getIsInvalid: () => {
1451
- const now = Date.now();
1452
- return routeMatch.isInvalid || routeMatch.invalidAt < now;
1453
- },
1454
- __: {
1455
- abortController: new AbortController(),
1456
- latestId: '',
1457
- resolve: () => {},
1458
- notify: () => {
1459
- routeMatch.__.resolve();
1460
-
1461
- routeMatch.router.notify();
1462
- },
1463
- startPending: () => {
1464
- var _routeMatch$options$p, _routeMatch$options$p2;
1465
-
1466
- const pendingMs = (_routeMatch$options$p = routeMatch.options.pendingMs) != null ? _routeMatch$options$p : router.options.defaultPendingMs;
1467
- const pendingMinMs = (_routeMatch$options$p2 = routeMatch.options.pendingMinMs) != null ? _routeMatch$options$p2 : router.options.defaultPendingMinMs;
1468
-
1469
- if (routeMatch.__.pendingTimeout || routeMatch.status !== 'loading' || typeof pendingMs === 'undefined') {
1470
- return;
1471
- }
1472
-
1473
- routeMatch.__.pendingTimeout = setTimeout(() => {
1474
- routeMatch.isPending = true;
1475
-
1476
- routeMatch.__.resolve();
1477
-
1478
- if (typeof pendingMinMs !== 'undefined') {
1479
- routeMatch.__.pendingMinPromise = new Promise(r => routeMatch.__.pendingMinTimeout = setTimeout(r, pendingMinMs));
1480
- }
1481
- }, pendingMs);
1482
- },
1483
- cancelPending: () => {
1484
- routeMatch.isPending = false;
1485
- clearTimeout(routeMatch.__.pendingTimeout);
1486
- clearTimeout(routeMatch.__.pendingMinTimeout);
1487
- delete routeMatch.__.pendingMinPromise;
1488
- },
1489
- // setParentMatch: (parentMatch?: RouteMatch) => {
1490
- // routeMatch.parentMatch = parentMatch
1491
- // },
1492
- // addChildMatch: (childMatch: RouteMatch) => {
1493
- // if (
1494
- // routeMatch.childMatches.find((d) => d.matchId === childMatch.matchId)
1495
- // ) {
1496
- // return
1497
- // }
1498
- // routeMatch.childMatches.push(childMatch)
1499
- // },
1500
- validate: () => {
1501
- var _routeMatch$parentMat, _routeMatch$parentMat2;
1502
-
1503
- // Validate the search params and stabilize them
1504
- const parentSearch = (_routeMatch$parentMat = (_routeMatch$parentMat2 = routeMatch.parentMatch) == null ? void 0 : _routeMatch$parentMat2.search) != null ? _routeMatch$parentMat : router.location.search;
1505
-
1506
- try {
1507
- const prevSearch = routeMatch.routeSearch;
1508
- const validator = typeof routeMatch.options.validateSearch === 'object' ? routeMatch.options.validateSearch.parse : routeMatch.options.validateSearch;
1509
- let nextSearch = replaceEqualDeep(prevSearch, validator == null ? void 0 : validator(parentSearch)); // Invalidate route matches when search param stability changes
1510
-
1511
- if (prevSearch !== nextSearch) {
1512
- routeMatch.isInvalid = true;
1513
- }
1514
-
1515
- routeMatch.routeSearch = nextSearch;
1516
- routeMatch.search = replaceEqualDeep(parentSearch, _extends({}, parentSearch, nextSearch));
1517
- } catch (err) {
1518
- console.error(err);
1519
- const error = new Error('Invalid search params found', {
1520
- cause: err
1521
- });
1522
- error.code = 'INVALID_SEARCH_PARAMS';
1523
- routeMatch.status = 'error';
1524
- routeMatch.error = error; // Do not proceed with loading the route
1525
-
1526
- return;
1527
- }
1528
- }
1529
- },
1530
- cancel: () => {
1531
- var _routeMatch$__$abortC;
1532
-
1533
- (_routeMatch$__$abortC = routeMatch.__.abortController) == null ? void 0 : _routeMatch$__$abortC.abort();
1534
-
1535
- routeMatch.__.cancelPending();
1536
- },
1537
- invalidate: () => {
1538
- routeMatch.isInvalid = true;
1539
- },
1540
- hasLoaders: () => {
1541
- return !!(route.options.loader || elementTypes.some(d => typeof route.options[d] === 'function'));
1542
- },
1543
- load: async loaderOpts => {
1544
- const now = Date.now();
1545
- const minMaxAge = loaderOpts != null && loaderOpts.preload ? Math.max(loaderOpts == null ? void 0 : loaderOpts.maxAge, loaderOpts == null ? void 0 : loaderOpts.gcMaxAge) : 0; // If this is a preload, add it to the preload cache
1546
-
1547
- if (loaderOpts != null && loaderOpts.preload && minMaxAge > 0) {
1548
- // If the match is currently active, don't preload it
1549
- if (router.state.matches.find(d => d.matchId === routeMatch.matchId)) {
1550
- return;
1551
- }
1552
-
1553
- router.matchCache[routeMatch.matchId] = {
1554
- gc: now + loaderOpts.gcMaxAge,
1555
- match: routeMatch
1556
- };
1557
- } // If the match is invalid, errored or idle, trigger it to load
1558
-
1559
-
1560
- if (routeMatch.status === 'success' && routeMatch.getIsInvalid() || routeMatch.status === 'error' || routeMatch.status === 'idle') {
1561
- const maxAge = loaderOpts != null && loaderOpts.preload ? loaderOpts == null ? void 0 : loaderOpts.maxAge : undefined;
1562
- routeMatch.fetch({
1563
- maxAge
1564
- });
1565
- }
1566
- },
1567
- fetch: async opts => {
1568
- const id = '' + Date.now() + Math.random();
1569
- routeMatch.__.latestId = id; // If the match was in an error state, set it
1570
- // to a loading state again. Otherwise, keep it
1571
- // as loading or resolved
1572
-
1573
- if (routeMatch.status === 'idle') {
1574
- routeMatch.status = 'loading';
1575
- } // We started loading the route, so it's no longer invalid
1576
-
1577
-
1578
- routeMatch.isInvalid = false;
1579
- routeMatch.__.loadPromise = new Promise(async resolve => {
1580
- // We are now fetching, even if it's in the background of a
1581
- // resolved state
1582
- routeMatch.isFetching = true;
1583
- routeMatch.__.resolve = resolve;
1584
-
1585
- const loaderPromise = (async () => {
1586
- // Load the elements and data in parallel
1587
- routeMatch.__.elementsPromise = (async () => {
1588
- // then run all element and data loaders in parallel
1589
- // For each element type, potentially load it asynchronously
1590
- await Promise.all(elementTypes.map(async type => {
1591
- const routeElement = routeMatch.options[type];
1592
-
1593
- if (routeMatch.__[type]) {
1594
- return;
1595
- }
1596
-
1597
- routeMatch.__[type] = await router.options.createElement(routeElement);
1598
- }));
1599
- })();
1600
-
1601
- routeMatch.__.dataPromise = Promise.resolve().then(async () => {
1602
- try {
1603
- var _ref, _ref2, _opts$maxAge;
1604
-
1605
- if (routeMatch.options.loader) {
1606
- const data = await routeMatch.options.loader({
1607
- params: routeMatch.params,
1608
- search: routeMatch.routeSearch,
1609
- signal: routeMatch.__.abortController.signal
1610
- });
1611
-
1612
- if (id !== routeMatch.__.latestId) {
1613
- return routeMatch.__.loaderPromise;
1614
- }
1615
-
1616
- routeMatch.routeLoaderData = replaceEqualDeep(routeMatch.routeLoaderData, data);
1617
- }
1618
-
1619
- routeMatch.error = undefined;
1620
- routeMatch.status = 'success';
1621
- routeMatch.updatedAt = Date.now();
1622
- routeMatch.invalidAt = routeMatch.updatedAt + ((_ref = (_ref2 = (_opts$maxAge = opts == null ? void 0 : opts.maxAge) != null ? _opts$maxAge : routeMatch.options.loaderMaxAge) != null ? _ref2 : router.options.defaultLoaderMaxAge) != null ? _ref : 0);
1623
- } catch (err) {
1624
- if (id !== routeMatch.__.latestId) {
1625
- return routeMatch.__.loaderPromise;
1626
- }
1627
-
1628
- if (process.env.NODE_ENV !== 'production') {
1629
- console.error(err);
1630
- }
1631
-
1632
- routeMatch.error = err;
1633
- routeMatch.status = 'error';
1634
- routeMatch.updatedAt = Date.now();
1635
- }
1636
- });
1637
-
1638
- try {
1639
- await Promise.all([routeMatch.__.elementsPromise, routeMatch.__.dataPromise]);
1640
-
1641
- if (id !== routeMatch.__.latestId) {
1642
- return routeMatch.__.loaderPromise;
1643
- }
1644
-
1645
- if (routeMatch.__.pendingMinPromise) {
1646
- await routeMatch.__.pendingMinPromise;
1647
- delete routeMatch.__.pendingMinPromise;
1648
- }
1649
- } finally {
1650
- if (id !== routeMatch.__.latestId) {
1651
- return routeMatch.__.loaderPromise;
1652
- }
1653
-
1654
- routeMatch.__.cancelPending();
1655
-
1656
- routeMatch.isPending = false;
1657
- routeMatch.isFetching = false;
1658
-
1659
- routeMatch.__.notify();
1660
- }
1661
- })();
1662
-
1663
- routeMatch.__.loaderPromise = loaderPromise;
1664
- await loaderPromise;
1665
-
1666
- if (id !== routeMatch.__.latestId) {
1667
- return routeMatch.__.loaderPromise;
1668
- }
1669
-
1670
- delete routeMatch.__.loaderPromise;
1671
- });
1672
- return await routeMatch.__.loadPromise;
1673
- }
1674
- });
1675
-
1676
- if (!routeMatch.hasLoaders()) {
1677
- routeMatch.status = 'success';
1678
- }
1679
-
1680
- return routeMatch;
1681
- }
1682
-
1683
- const defaultParseSearch = parseSearchWith(JSON.parse);
1684
- const defaultStringifySearch = stringifySearchWith(JSON.stringify);
1685
- function parseSearchWith(parser) {
1686
- return searchStr => {
1687
- if (searchStr.substring(0, 1) === '?') {
1688
- searchStr = searchStr.substring(1);
1689
- }
1690
-
1691
- let query = decode(searchStr); // Try to parse any query params that might be json
1692
-
1693
- for (let key in query) {
1694
- const value = query[key];
1695
-
1696
- if (typeof value === 'string') {
1697
- try {
1698
- query[key] = parser(value);
1699
- } catch (err) {//
1700
- }
1701
- }
1702
- }
1703
-
1704
- return query;
1705
- };
1706
- }
1707
- function stringifySearchWith(stringify) {
1708
- return search => {
1709
- search = _extends({}, search);
1710
-
1711
- if (search) {
1712
- Object.keys(search).forEach(key => {
1713
- const val = search[key];
1714
-
1715
- if (typeof val === 'undefined' || val === undefined) {
1716
- delete search[key];
1717
- } else if (val && typeof val === 'object' && val !== null) {
1718
- try {
1719
- search[key] = stringify(val);
1720
- } catch (err) {// silent
1721
- }
1722
- }
1723
- });
1724
- }
1725
-
1726
- const searchStr = encode(search).toString();
1727
- return searchStr ? "?" + searchStr : '';
1728
- };
1729
- }
1730
-
1731
- var _window$document;
1732
- // Detect if we're in the DOM
1733
- const isServer = typeof window === 'undefined' || !((_window$document = window.document) != null && _window$document.createElement); // This is the default history object if none is defined
1734
-
1735
- const createDefaultHistory = () => isServer ? createMemoryHistory() : createBrowserHistory();
1736
-
1737
- function createRouter(userOptions) {
1738
- var _userOptions$stringif, _userOptions$parseSea;
1739
-
1740
- const history = (userOptions == null ? void 0 : userOptions.history) || createDefaultHistory();
1741
-
1742
- const originalOptions = _extends({
1743
- defaultLoaderGcMaxAge: 5 * 60 * 1000,
1744
- defaultLoaderMaxAge: 0,
1745
- defaultPreloadMaxAge: 2000,
1746
- defaultPreloadDelay: 50
1747
- }, userOptions, {
1748
- stringifySearch: (_userOptions$stringif = userOptions == null ? void 0 : userOptions.stringifySearch) != null ? _userOptions$stringif : defaultStringifySearch,
1749
- parseSearch: (_userOptions$parseSea = userOptions == null ? void 0 : userOptions.parseSearch) != null ? _userOptions$parseSea : defaultParseSearch
1750
- });
1751
-
1752
- let router = {
1753
- history,
1754
- options: originalOptions,
1755
- listeners: [],
1756
- removeActionQueue: [],
1757
- // Resolved after construction
1758
- basepath: '',
1759
- routeTree: undefined,
1760
- routesById: {},
1761
- location: undefined,
1762
- allRouteInfo: undefined,
1763
- //
1764
- navigationPromise: Promise.resolve(),
1765
- resolveNavigation: () => {},
1766
- matchCache: {},
1767
- state: {
1768
- status: 'idle',
1769
- location: null,
1770
- matches: [],
1771
- actions: {},
1772
- loaders: {},
1773
- lastUpdated: Date.now(),
1774
- isFetching: false,
1775
- isPreloading: false
1776
- },
1777
- startedLoadingAt: Date.now(),
1778
- subscribe: listener => {
1779
- router.listeners.push(listener);
1780
- return () => {
1781
- router.listeners = router.listeners.filter(x => x !== listener);
1782
- };
1783
- },
1784
- getRoute: id => {
1785
- return router.routesById[id];
1786
- },
1787
- notify: () => {
1788
- router.state = _extends({}, router.state, {
1789
- isFetching: router.state.status === 'loading' || router.state.matches.some(d => d.isFetching),
1790
- isPreloading: Object.values(router.matchCache).some(d => d.match.isFetching && !router.state.matches.find(dd => dd.matchId === d.match.matchId))
1791
- });
1792
- cascadeLoaderData(router.state.matches);
1793
- router.listeners.forEach(listener => listener(router));
1794
- },
1795
- mount: () => {
1796
- const next = router.__.buildLocation({
1797
- to: '.',
1798
- search: true,
1799
- hash: true
1800
- }); // If the current location isn't updated, trigger a navigation
1801
- // to the current location. Otherwise, load the current location.
1802
-
1803
-
1804
- if (next.href !== router.location.href) {
1805
- router.__.commitLocation(next, true);
1806
- }
1807
-
1808
- router.loadLocation();
1809
- const unsub = router.history.listen(event => {
1810
- console.log(event.location);
1811
- router.loadLocation(router.__.parseLocation(event.location, router.location));
1812
- }); // addEventListener does not exist in React Native, but window does
1813
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1814
-
1815
- if (!isServer && window.addEventListener) {
1816
- // Listen to visibillitychange and focus
1817
- window.addEventListener('visibilitychange', router.onFocus, false);
1818
- window.addEventListener('focus', router.onFocus, false);
1819
- }
1820
-
1821
- return () => {
1822
- unsub(); // Be sure to unsubscribe if a new handler is set
1823
-
1824
- window.removeEventListener('visibilitychange', router.onFocus);
1825
- window.removeEventListener('focus', router.onFocus);
1826
- };
1827
- },
1828
- onFocus: () => {
1829
- router.loadLocation();
1830
- },
1831
- update: opts => {
1832
- const newHistory = (opts == null ? void 0 : opts.history) !== router.history;
1833
-
1834
- if (!router.location || newHistory) {
1835
- if (opts != null && opts.history) {
1836
- router.history = opts.history;
1837
- }
1838
-
1839
- router.location = router.__.parseLocation(router.history.location);
1840
- router.state.location = router.location;
1841
- }
1842
-
1843
- Object.assign(router.options, opts);
1844
- const {
1845
- basepath,
1846
- routeConfig
1847
- } = router.options;
1848
- router.basepath = cleanPath("/" + (basepath != null ? basepath : ''));
1849
-
1850
- if (routeConfig) {
1851
- router.routesById = {};
1852
- router.routeTree = router.__.buildRouteTree(routeConfig);
1853
- }
1854
-
1855
- return router;
1856
- },
1857
- cancelMatches: () => {
1858
- var _router$state$pending, _router$state$pending2;
1859
- [...router.state.matches, ...((_router$state$pending = (_router$state$pending2 = router.state.pending) == null ? void 0 : _router$state$pending2.matches) != null ? _router$state$pending : [])].forEach(match => {
1860
- match.cancel();
1861
- });
1862
- },
1863
- loadLocation: async next => {
1864
- const id = Math.random();
1865
- router.startedLoadingAt = id;
1866
-
1867
- if (next) {
1868
- // Ingest the new location
1869
- router.location = next;
1870
- } // Clear out old actions
1871
-
1872
-
1873
- router.removeActionQueue.forEach(_ref => {
1874
- let {
1875
- action,
1876
- actionState
1877
- } = _ref;
1878
-
1879
- if (router.state.currentAction === actionState) {
1880
- router.state.currentAction = undefined;
1881
- }
1882
-
1883
- if (action.current === actionState) {
1884
- action.current = undefined;
1885
- }
1886
- });
1887
- router.removeActionQueue = []; // Cancel any pending matches
1888
-
1889
- router.cancelMatches(); // Match the routes
1890
-
1891
- const matches = router.matchRoutes(router.location.pathname, {
1892
- strictParseParams: true
1893
- });
1894
- router.state = _extends({}, router.state, {
1895
- pending: {
1896
- matches: matches,
1897
- location: router.location
1898
- },
1899
- status: 'loading'
1900
- });
1901
- router.notify(); // Load the matches
1902
-
1903
- await router.loadMatches(matches, {
1904
- withPending: true
1905
- });
1906
-
1907
- if (router.startedLoadingAt !== id) {
1908
- // Ignore side-effects of match loading
1909
- return router.navigationPromise;
1910
- }
1911
-
1912
- const previousMatches = router.state.matches;
1913
- const exiting = [],
1914
- staying = [];
1915
- previousMatches.forEach(d => {
1916
- if (matches.find(dd => dd.matchId === d.matchId)) {
1917
- staying.push(d);
1918
- } else {
1919
- exiting.push(d);
1920
- }
1921
- });
1922
- const now = Date.now();
1923
- exiting.forEach(d => {
1924
- var _ref2, _d$options$loaderGcMa, _ref3, _d$options$loaderMaxA;
1925
-
1926
- d.__.onExit == null ? void 0 : d.__.onExit({
1927
- params: d.params,
1928
- search: d.routeSearch
1929
- }); // Clear idle error states when match leaves
1930
-
1931
- if (d.status === 'error' && !d.isFetching) {
1932
- d.status = 'idle';
1933
- d.error = undefined;
1934
- }
1935
-
1936
- const gc = Math.max((_ref2 = (_d$options$loaderGcMa = d.options.loaderGcMaxAge) != null ? _d$options$loaderGcMa : router.options.defaultLoaderGcMaxAge) != null ? _ref2 : 0, (_ref3 = (_d$options$loaderMaxA = d.options.loaderMaxAge) != null ? _d$options$loaderMaxA : router.options.defaultLoaderMaxAge) != null ? _ref3 : 0);
1937
-
1938
- if (gc > 0) {
1939
- router.matchCache[d.matchId] = {
1940
- gc: gc == Infinity ? Number.MAX_SAFE_INTEGER : now + gc,
1941
- match: d
1942
- };
1943
- }
1944
- });
1945
- staying.forEach(d => {
1946
- d.options.onTransition == null ? void 0 : d.options.onTransition({
1947
- params: d.params,
1948
- search: d.routeSearch
1949
- });
1950
- });
1951
- const entering = matches.filter(d => {
1952
- return !previousMatches.find(dd => dd.matchId === d.matchId);
1953
- });
1954
- entering.forEach(d => {
1955
- d.__.onExit = d.options.onMatch == null ? void 0 : d.options.onMatch({
1956
- params: d.params,
1957
- search: d.search
1958
- });
1959
- delete router.matchCache[d.matchId];
1960
- });
1961
-
1962
- if (matches.some(d => d.status === 'loading')) {
1963
- router.notify();
1964
- await Promise.all(matches.map(d => d.__.loaderPromise || Promise.resolve()));
1965
- }
1966
-
1967
- if (router.startedLoadingAt !== id) {
1968
- // Ignore side-effects of match loading
1969
- return;
1970
- }
1971
-
1972
- router.state = _extends({}, router.state, {
1973
- location: router.location,
1974
- matches,
1975
- pending: undefined,
1976
- status: 'idle'
1977
- });
1978
- router.notify();
1979
- router.resolveNavigation();
1980
- },
1981
- cleanMatchCache: () => {
1982
- const now = Date.now();
1983
- Object.keys(router.matchCache).forEach(matchId => {
1984
- const entry = router.matchCache[matchId]; // Don't remove loading matches
1985
-
1986
- if (entry.match.status === 'loading') {
1987
- return;
1988
- } // Do not remove successful matches that are still valid
1989
-
1990
-
1991
- if (entry.gc > 0 && entry.gc > now) {
1992
- return;
1993
- } // Everything else gets removed
1994
-
1995
-
1996
- delete router.matchCache[matchId];
1997
- });
1998
- },
1999
- loadRoute: async function loadRoute(navigateOpts) {
2000
- if (navigateOpts === void 0) {
2001
- navigateOpts = router.location;
2002
- }
2003
-
2004
- const next = router.buildNext(navigateOpts);
2005
- const matches = router.matchRoutes(next.pathname, {
2006
- strictParseParams: true
2007
- });
2008
- await router.loadMatches(matches);
2009
- return matches;
2010
- },
2011
- preloadRoute: async function preloadRoute(navigateOpts, loaderOpts) {
2012
- var _ref4, _ref5, _loaderOpts$maxAge, _ref6, _ref7, _loaderOpts$gcMaxAge;
2013
-
2014
- if (navigateOpts === void 0) {
2015
- navigateOpts = router.location;
2016
- }
2017
-
2018
- const next = router.buildNext(navigateOpts);
2019
- const matches = router.matchRoutes(next.pathname, {
2020
- strictParseParams: true
2021
- });
2022
- await router.loadMatches(matches, {
2023
- preload: true,
2024
- maxAge: (_ref4 = (_ref5 = (_loaderOpts$maxAge = loaderOpts.maxAge) != null ? _loaderOpts$maxAge : router.options.defaultPreloadMaxAge) != null ? _ref5 : router.options.defaultLoaderMaxAge) != null ? _ref4 : 0,
2025
- gcMaxAge: (_ref6 = (_ref7 = (_loaderOpts$gcMaxAge = loaderOpts.gcMaxAge) != null ? _loaderOpts$gcMaxAge : router.options.defaultPreloadGcMaxAge) != null ? _ref7 : router.options.defaultLoaderGcMaxAge) != null ? _ref6 : 0
2026
- });
2027
- return matches;
2028
- },
2029
- matchRoutes: (pathname, opts) => {
2030
- var _router$state$pending3, _router$state$pending4;
2031
-
2032
- router.cleanMatchCache();
2033
- const matches = [];
2034
-
2035
- if (!router.routeTree) {
2036
- return matches;
2037
- }
2038
-
2039
- const existingMatches = [...router.state.matches, ...((_router$state$pending3 = (_router$state$pending4 = router.state.pending) == null ? void 0 : _router$state$pending4.matches) != null ? _router$state$pending3 : [])];
2040
-
2041
- const recurse = async routes => {
2042
- var _parentMatch$params, _router$options$filte, _foundRoute$childRout;
2043
-
2044
- const parentMatch = last(matches);
2045
- let params = (_parentMatch$params = parentMatch == null ? void 0 : parentMatch.params) != null ? _parentMatch$params : {};
2046
- const filteredRoutes = (_router$options$filte = router.options.filterRoutes == null ? void 0 : router.options.filterRoutes(routes)) != null ? _router$options$filte : routes;
2047
- let foundRoutes = [];
2048
-
2049
- const findMatchInRoutes = (parentRoutes, routes) => {
2050
- routes.some(route => {
2051
- var _route$childRoutes, _route$childRoutes2, _route$options$caseSe;
2052
-
2053
- if (!route.routePath && (_route$childRoutes = route.childRoutes) != null && _route$childRoutes.length) {
2054
- return findMatchInRoutes([...foundRoutes, route], route.childRoutes);
2055
- }
2056
-
2057
- const fuzzy = !!(route.routePath !== '/' || (_route$childRoutes2 = route.childRoutes) != null && _route$childRoutes2.length);
2058
- const matchParams = matchPathname(pathname, {
2059
- to: route.fullPath,
2060
- fuzzy,
2061
- caseSensitive: (_route$options$caseSe = route.options.caseSensitive) != null ? _route$options$caseSe : router.options.caseSensitive
2062
- });
2063
-
2064
- if (matchParams) {
2065
- let parsedParams;
2066
-
2067
- try {
2068
- var _route$options$parseP;
2069
-
2070
- parsedParams = (_route$options$parseP = route.options.parseParams == null ? void 0 : route.options.parseParams(matchParams)) != null ? _route$options$parseP : matchParams;
2071
- } catch (err) {
2072
- if (opts != null && opts.strictParseParams) {
2073
- throw err;
2074
- }
2075
- }
2076
-
2077
- params = _extends({}, params, parsedParams);
2078
- }
2079
-
2080
- if (!!matchParams) {
2081
- foundRoutes = [...parentRoutes, route];
2082
- }
2083
-
2084
- return !!foundRoutes.length;
2085
- });
2086
- return !!foundRoutes.length;
2087
- };
2088
-
2089
- findMatchInRoutes([], filteredRoutes);
2090
-
2091
- if (!foundRoutes.length) {
2092
- return;
2093
- }
2094
-
2095
- foundRoutes.forEach(foundRoute => {
2096
- var _router$matchCache$ma;
2097
-
2098
- const interpolatedPath = interpolatePath(foundRoute.routePath, params);
2099
- const matchId = interpolatePath(foundRoute.routeId, params, true);
2100
- const match = existingMatches.find(d => d.matchId === matchId) || ((_router$matchCache$ma = router.matchCache[matchId]) == null ? void 0 : _router$matchCache$ma.match) || createRouteMatch(router, foundRoute, {
2101
- matchId,
2102
- params,
2103
- pathname: joinPaths([pathname, interpolatedPath])
2104
- });
2105
- matches.push(match);
2106
- });
2107
- const foundRoute = last(foundRoutes);
2108
-
2109
- if ((_foundRoute$childRout = foundRoute.childRoutes) != null && _foundRoute$childRout.length) {
2110
- recurse(foundRoute.childRoutes);
2111
- }
2112
- };
2113
-
2114
- recurse([router.routeTree]);
2115
- cascadeLoaderData(matches);
2116
- return matches;
2117
- },
2118
- loadMatches: async (resolvedMatches, loaderOpts) => {
2119
- const matchPromises = resolvedMatches.map(async match => {
2120
- // Validate the match (loads search params etc)
2121
- match.__.validate();
2122
-
2123
- match.load(loaderOpts);
2124
-
2125
- if (match.status === 'loading') {
2126
- // If requested, start the pending timers
2127
- if (loaderOpts != null && loaderOpts.withPending) match.__.startPending(); // Wait for the first sign of activity from the match
2128
- // This might be completion, error, or a pending state
2129
-
2130
- await match.__.loadPromise;
2131
- }
2132
- });
2133
- router.notify();
2134
- await Promise.all(matchPromises);
2135
- },
2136
- invalidateRoute: opts => {
2137
- var _router$state$pending5, _router$state$pending6;
2138
-
2139
- const next = router.buildNext(opts);
2140
- const unloadedMatchIds = router.matchRoutes(next.pathname).map(d => d.matchId);
2141
- [...router.state.matches, ...((_router$state$pending5 = (_router$state$pending6 = router.state.pending) == null ? void 0 : _router$state$pending6.matches) != null ? _router$state$pending5 : [])].forEach(match => {
2142
- if (unloadedMatchIds.includes(match.matchId)) {
2143
- match.invalidate();
2144
- }
2145
- });
2146
- },
2147
- reload: () => router.__.navigate({
2148
- fromCurrent: true,
2149
- replace: true,
2150
- search: true
2151
- }),
2152
- resolvePath: (from, path) => {
2153
- return resolvePath(router.basepath, from, cleanPath(path));
2154
- },
2155
- matchRoute: (location, opts) => {
2156
- var _location$from;
2157
-
2158
- // const location = router.buildNext(opts)
2159
- location = _extends({}, location, {
2160
- to: location.to ? router.resolvePath((_location$from = location.from) != null ? _location$from : '', location.to) : undefined
2161
- });
2162
- const next = router.buildNext(location);
2163
-
2164
- if (opts != null && opts.pending) {
2165
- var _router$state$pending7;
2166
-
2167
- if (!((_router$state$pending7 = router.state.pending) != null && _router$state$pending7.location)) {
2168
- return false;
16
+ function _extends() {
17
+ _extends = Object.assign ? Object.assign.bind() : function (target) {
18
+ for (var i = 1; i < arguments.length; i++) {
19
+ var source = arguments[i];
20
+ for (var key in source) {
21
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
22
+ target[key] = source[key];
2169
23
  }
2170
-
2171
- return !!matchPathname(router.state.pending.location.pathname, _extends({}, opts, {
2172
- to: next.pathname
2173
- }));
2174
24
  }
25
+ }
26
+ return target;
27
+ };
28
+ return _extends.apply(this, arguments);
29
+ }
2175
30
 
2176
- return !!matchPathname(router.state.location.pathname, _extends({}, opts, {
2177
- to: next.pathname
2178
- }));
2179
- },
2180
- navigate: async _ref8 => {
2181
- let {
2182
- from,
2183
- to = '.',
2184
- search,
2185
- hash,
2186
- replace,
2187
- params
2188
- } = _ref8;
2189
- // If this link simply reloads the current route,
2190
- // make sure it has a new key so it will trigger a data refresh
2191
- // If this `to` is a valid external URL, return
2192
- // null for LinkUtils
2193
- const toString = String(to);
2194
- const fromString = String(from);
2195
- let isExternal;
2196
-
2197
- try {
2198
- new URL("" + toString);
2199
- isExternal = true;
2200
- } catch (e) {}
2201
-
2202
- invariant(!isExternal, 'Attempting to navigate to external url with router.navigate!');
2203
- return router.__.navigate({
2204
- from: fromString,
2205
- to: toString,
2206
- search,
2207
- hash,
2208
- replace,
2209
- params
2210
- });
2211
- },
2212
- buildLink: _ref9 => {
2213
- var _preload, _ref10;
2214
-
2215
- let {
2216
- from,
2217
- to = '.',
2218
- search,
2219
- params,
2220
- hash,
2221
- target,
2222
- replace,
2223
- activeOptions,
2224
- preload,
2225
- preloadMaxAge: userPreloadMaxAge,
2226
- preloadGcMaxAge: userPreloadGcMaxAge,
2227
- preloadDelay: userPreloadDelay,
2228
- disabled
2229
- } = _ref9;
2230
-
2231
- // If this link simply reloads the current route,
2232
- // make sure it has a new key so it will trigger a data refresh
2233
- // If this `to` is a valid external URL, return
2234
- // null for LinkUtils
2235
- try {
2236
- new URL("" + to);
2237
- return {
2238
- type: 'external',
2239
- href: to
2240
- };
2241
- } catch (e) {}
2242
-
2243
- const nextOpts = {
2244
- from,
2245
- to,
2246
- search,
2247
- params,
2248
- hash,
2249
- replace
2250
- };
2251
- const next = router.buildNext(nextOpts);
2252
- preload = (_preload = preload) != null ? _preload : router.options.defaultPreload;
2253
- const preloadDelay = (_ref10 = userPreloadDelay != null ? userPreloadDelay : router.options.defaultPreloadDelay) != null ? _ref10 : 0; // Compare path/hash for matches
2254
-
2255
- const pathIsEqual = router.state.location.pathname === next.pathname;
2256
- const currentPathSplit = router.state.location.pathname.split('/');
2257
- const nextPathSplit = next.pathname.split('/');
2258
- const pathIsFuzzyEqual = nextPathSplit.every((d, i) => d === currentPathSplit[i]);
2259
- const hashIsEqual = router.state.location.hash === next.hash; // Combine the matches based on user options
2260
-
2261
- const pathTest = activeOptions != null && activeOptions.exact ? pathIsEqual : pathIsFuzzyEqual;
2262
- const hashTest = activeOptions != null && activeOptions.includeHash ? hashIsEqual : true; // The final "active" test
2263
-
2264
- const isActive = pathTest && hashTest; // The click handler
2265
-
2266
- const handleClick = e => {
2267
- if (!disabled && !isCtrlEvent(e) && !e.defaultPrevented && (!target || target === '_self') && e.button === 0) {
2268
- e.preventDefault();
2269
-
2270
- if (pathIsEqual && !search && !hash) {
2271
- router.invalidateRoute(nextOpts);
2272
- } // All is well? Navigate!)
2273
-
2274
-
2275
- router.__.navigate(nextOpts);
2276
- }
2277
- }; // The click handler
2278
-
2279
-
2280
- const handleFocus = e => {
2281
- if (preload) {
2282
- router.preloadRoute(nextOpts, {
2283
- maxAge: userPreloadMaxAge,
2284
- gcMaxAge: userPreloadGcMaxAge
2285
- });
2286
- }
2287
- };
2288
-
2289
- const handleEnter = e => {
2290
- const target = e.target || {};
2291
-
2292
- if (preload) {
2293
- if (target.preloadTimeout) {
2294
- return;
2295
- }
2296
-
2297
- target.preloadTimeout = setTimeout(() => {
2298
- target.preloadTimeout = null;
2299
- router.preloadRoute(nextOpts, {
2300
- maxAge: userPreloadMaxAge,
2301
- gcMaxAge: userPreloadGcMaxAge
2302
- });
2303
- }, preloadDelay);
2304
- }
2305
- };
2306
-
2307
- const handleLeave = e => {
2308
- const target = e.target || {};
2309
-
2310
- if (target.preloadTimeout) {
2311
- clearTimeout(target.preloadTimeout);
2312
- target.preloadTimeout = null;
2313
- }
2314
- };
2315
-
2316
- return {
2317
- type: 'internal',
2318
- next,
2319
- handleFocus,
2320
- handleClick,
2321
- handleEnter,
2322
- handleLeave,
2323
- isActive,
2324
- disabled
2325
- };
2326
- },
2327
- buildNext: opts => {
2328
- const next = router.__.buildLocation(opts);
2329
-
2330
- const matches = router.matchRoutes(next.pathname);
2331
-
2332
- const __preSearchFilters = matches.map(match => {
2333
- var _match$options$preSea;
2334
-
2335
- return (_match$options$preSea = match.options.preSearchFilters) != null ? _match$options$preSea : [];
2336
- }).flat().filter(Boolean);
2337
-
2338
- const __postSearchFilters = matches.map(match => {
2339
- var _match$options$postSe;
2340
-
2341
- return (_match$options$postSe = match.options.postSearchFilters) != null ? _match$options$postSe : [];
2342
- }).flat().filter(Boolean);
2343
-
2344
- return router.__.buildLocation(_extends({}, opts, {
2345
- __preSearchFilters,
2346
- __postSearchFilters
2347
- }));
2348
- },
2349
- __: {
2350
- buildRouteTree: rootRouteConfig => {
2351
- const recurseRoutes = (routeConfigs, parent) => {
2352
- return routeConfigs.map(routeConfig => {
2353
- const routeOptions = routeConfig.options;
2354
- const route = createRoute(routeConfig, routeOptions, parent, router); // {
2355
- // pendingMs: routeOptions.pendingMs ?? router.defaultPendingMs,
2356
- // pendingMinMs: routeOptions.pendingMinMs ?? router.defaultPendingMinMs,
2357
- // }
2358
-
2359
- const existingRoute = router.routesById[route.routeId];
2360
-
2361
- if (existingRoute) {
2362
- if (process.env.NODE_ENV !== 'production') {
2363
- console.warn("Duplicate routes found with id: " + String(route.routeId), router.routesById, route);
2364
- }
2365
-
2366
- throw new Error();
2367
- }
2368
- router.routesById[route.routeId] = route;
2369
- const children = routeConfig.children;
2370
- route.childRoutes = children != null && children.length ? recurseRoutes(children, route) : undefined;
2371
- return route;
2372
- });
2373
- };
2374
-
2375
- const routes = recurseRoutes([rootRouteConfig]);
2376
- return routes[0];
2377
- },
2378
- parseLocation: (location, previousLocation) => {
2379
- var _location$hash$split$;
2380
-
2381
- const parsedSearch = router.options.parseSearch(location.search);
2382
- return {
2383
- pathname: location.pathname,
2384
- searchStr: location.search,
2385
- search: replaceEqualDeep(previousLocation == null ? void 0 : previousLocation.search, parsedSearch),
2386
- hash: (_location$hash$split$ = location.hash.split('#').reverse()[0]) != null ? _location$hash$split$ : '',
2387
- href: "" + location.pathname + location.search + location.hash,
2388
- state: location.state,
2389
- key: location.key
2390
- };
2391
- },
2392
- navigate: location => {
2393
- const next = router.buildNext(location);
2394
- return router.__.commitLocation(next, location.replace);
2395
- },
2396
- buildLocation: function buildLocation(dest) {
2397
- var _dest$from, _router$basepath, _dest$to, _last, _dest$params, _dest$__preSearchFilt, _functionalUpdate, _dest$__preSearchFilt2, _dest$__postSearchFil;
2398
-
2399
- if (dest === void 0) {
2400
- dest = {};
2401
- }
2402
-
2403
- // const resolvedFrom: Location = {
2404
- // ...router.location,
2405
- const fromPathname = dest.fromCurrent ? router.location.pathname : (_dest$from = dest.from) != null ? _dest$from : router.location.pathname;
2406
-
2407
- let pathname = resolvePath((_router$basepath = router.basepath) != null ? _router$basepath : '/', fromPathname, "" + ((_dest$to = dest.to) != null ? _dest$to : '.'));
2408
-
2409
- const fromMatches = router.matchRoutes(router.location.pathname, {
2410
- strictParseParams: true
2411
- });
2412
- const toMatches = router.matchRoutes(pathname);
2413
-
2414
- const prevParams = _extends({}, (_last = last(fromMatches)) == null ? void 0 : _last.params);
2415
-
2416
- let nextParams = ((_dest$params = dest.params) != null ? _dest$params : true) === true ? prevParams : functionalUpdate(dest.params, prevParams);
2417
-
2418
- if (nextParams) {
2419
- toMatches.map(d => d.options.stringifyParams).filter(Boolean).forEach(fn => {
2420
- Object.assign({}, nextParams, fn(nextParams));
2421
- });
2422
- }
2423
-
2424
- pathname = interpolatePath(pathname, nextParams != null ? nextParams : {}); // Pre filters first
2425
-
2426
- const preFilteredSearch = (_dest$__preSearchFilt = dest.__preSearchFilters) != null && _dest$__preSearchFilt.length ? dest.__preSearchFilters.reduce((prev, next) => next(prev), router.location.search) : router.location.search; // Then the link/navigate function
2427
-
2428
- const destSearch = dest.search === true ? preFilteredSearch // Preserve resolvedFrom true
2429
- : dest.search ? (_functionalUpdate = functionalUpdate(dest.search, preFilteredSearch)) != null ? _functionalUpdate : {} // Updater
2430
- : (_dest$__preSearchFilt2 = dest.__preSearchFilters) != null && _dest$__preSearchFilt2.length ? preFilteredSearch // Preserve resolvedFrom filters
2431
- : {}; // Then post filters
2432
-
2433
- const postFilteredSearch = (_dest$__postSearchFil = dest.__postSearchFilters) != null && _dest$__postSearchFil.length ? dest.__postSearchFilters.reduce((prev, next) => next(prev), destSearch) : destSearch;
2434
- const search = replaceEqualDeep(router.location.search, postFilteredSearch);
2435
- const searchStr = router.options.stringifySearch(search);
2436
- let hash = dest.hash === true ? router.location.hash : functionalUpdate(dest.hash, router.location.hash);
2437
- hash = hash ? "#" + hash : '';
2438
- return {
2439
- pathname,
2440
- search,
2441
- searchStr,
2442
- state: router.location.state,
2443
- hash,
2444
- href: "" + pathname + searchStr + hash,
2445
- key: dest.key
2446
- };
2447
- },
2448
- commitLocation: (next, replace) => {
2449
- const id = '' + Date.now() + Math.random();
2450
- if (router.navigateTimeout) clearTimeout(router.navigateTimeout);
2451
- let nextAction = 'replace';
2452
-
2453
- if (!replace) {
2454
- nextAction = 'push';
2455
- }
31
+ function useStore(store, selector = d => d, compareShallow) {
32
+ const slice = useSyncExternalStoreWithSelector(store.subscribe, () => store.state, () => store.state, selector, compareShallow ? shallow : undefined);
33
+ return slice;
34
+ }
35
+ function shallow(objA, objB) {
36
+ if (Object.is(objA, objB)) {
37
+ return true;
38
+ }
39
+ if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {
40
+ return false;
41
+ }
2456
42
 
2457
- const isSameUrl = router.__.parseLocation(history.location).href === next.href;
43
+ // if (objA instanceof Map && objB instanceof Map) {
44
+ // if (objA.size !== objB.size) return false
2458
45
 
2459
- if (isSameUrl && !next.key) {
2460
- nextAction = 'replace';
2461
- }
46
+ // for (const [key, value] of objA) {
47
+ // if (!Object.is(value, objB.get(key))) {
48
+ // return false
49
+ // }
50
+ // }
51
+ // return true
52
+ // }
2462
53
 
2463
- if (nextAction === 'replace') {
2464
- history.replace({
2465
- pathname: next.pathname,
2466
- hash: next.hash,
2467
- search: next.searchStr
2468
- }, {
2469
- id
2470
- });
2471
- } else {
2472
- history.push({
2473
- pathname: next.pathname,
2474
- hash: next.hash,
2475
- search: next.searchStr
2476
- }, {
2477
- id
2478
- });
2479
- }
54
+ // if (objA instanceof Set && objB instanceof Set) {
55
+ // if (objA.size !== objB.size) return false
2480
56
 
2481
- router.navigationPromise = new Promise(resolve => {
2482
- const previousNavigationResolve = router.resolveNavigation;
57
+ // for (const value of objA) {
58
+ // if (!objB.has(value)) {
59
+ // return false
60
+ // }
61
+ // }
62
+ // return true
63
+ // }
2483
64
 
2484
- router.resolveNavigation = () => {
2485
- previousNavigationResolve();
2486
- resolve();
2487
- };
2488
- });
2489
- return router.navigationPromise;
2490
- }
65
+ const keysA = Object.keys(objA);
66
+ if (keysA.length !== Object.keys(objB).length) {
67
+ return false;
68
+ }
69
+ for (let i = 0; i < keysA.length; i++) {
70
+ if (!Object.prototype.hasOwnProperty.call(objB, keysA[i]) || !Object.is(objA[keysA[i]], objB[keysA[i]])) {
71
+ return false;
2491
72
  }
2492
- };
2493
- router.update(userOptions); // Allow frameworks to hook into the router creation
2494
-
2495
- router.options.createRouter == null ? void 0 : router.options.createRouter(router);
2496
- return router;
2497
- }
2498
-
2499
- function isCtrlEvent(e) {
2500
- return !!(e.metaKey || e.altKey || e.ctrlKey || e.shiftKey);
73
+ }
74
+ return true;
2501
75
  }
2502
76
 
2503
- const _excluded = ["type", "children", "target", "activeProps", "inactiveProps", "activeOptions", "disabled", "hash", "search", "params", "to", "preload", "preloadDelay", "preloadMaxAge", "replace", "style", "className", "onClick", "onFocus", "onMouseEnter", "onMouseLeave", "onTouchStart", "onTouchEnd"],
2504
- _excluded2 = ["pending", "caseSensitive", "children"],
2505
- _excluded3 = ["children", "router"];
2506
77
  //
2507
- const matchesContext = /*#__PURE__*/React.createContext(null);
2508
- const routerContext = /*#__PURE__*/React.createContext(null); // Detect if we're in the DOM
2509
78
 
2510
- const isDOM = Boolean(typeof window !== 'undefined' && window.document && window.document.createElement);
2511
- const useLayoutEffect = isDOM ? React.useLayoutEffect : React.useEffect;
2512
- function MatchesProvider(props) {
2513
- return /*#__PURE__*/React.createElement(matchesContext.Provider, props);
79
+ function lazy(importer) {
80
+ const lazyComp = /*#__PURE__*/React.lazy(importer);
81
+ const finalComp = lazyComp;
82
+ finalComp.preload = async () => {
83
+ {
84
+ await importer();
85
+ }
86
+ };
87
+ return finalComp;
2514
88
  }
89
+ //
2515
90
 
2516
- const useRouterSubscription = router => {
2517
- useSyncExternalStore(cb => router.subscribe(() => cb()), () => router.state, () => router.state);
2518
- };
2519
-
2520
- function createReactRouter(opts) {
2521
- const makeRouteExt = (route, router) => {
91
+ function useLinkProps(options) {
92
+ const router = useRouter();
93
+ const {
94
+ // custom props
95
+ type,
96
+ children,
97
+ target,
98
+ activeProps = () => ({
99
+ className: 'active'
100
+ }),
101
+ inactiveProps = () => ({}),
102
+ activeOptions,
103
+ disabled,
104
+ // fromCurrent,
105
+ hash,
106
+ search,
107
+ params,
108
+ to = '.',
109
+ preload,
110
+ preloadDelay,
111
+ preloadMaxAge,
112
+ replace,
113
+ // element props
114
+ style,
115
+ className,
116
+ onClick,
117
+ onFocus,
118
+ onMouseEnter,
119
+ onMouseLeave,
120
+ onTouchStart,
121
+ onTouchEnd,
122
+ ...rest
123
+ } = options;
124
+ const linkInfo = router.buildLink(options);
125
+ if (linkInfo.type === 'external') {
126
+ const {
127
+ href
128
+ } = linkInfo;
2522
129
  return {
2523
- useRoute: function useRoute(subRouteId) {
2524
- if (subRouteId === void 0) {
2525
- subRouteId = '.';
2526
- }
2527
-
2528
- const resolvedRouteId = router.resolvePath(route.routeId, subRouteId);
2529
- const resolvedRoute = router.getRoute(resolvedRouteId);
2530
- useRouterSubscription(router);
2531
- invariant(resolvedRoute, "Could not find a route for route \"" + resolvedRouteId + "\"! Did you forget to add it to your route config?");
2532
- return resolvedRoute;
2533
- },
2534
- linkProps: options => {
2535
- var _functionalUpdate, _functionalUpdate2;
2536
-
2537
- const {
2538
- // custom props
2539
- target,
2540
- activeProps = () => ({
2541
- className: 'active'
2542
- }),
2543
- inactiveProps = () => ({}),
2544
- disabled,
2545
- // element props
2546
- style,
2547
- className,
2548
- onClick,
2549
- onFocus,
2550
- onMouseEnter,
2551
- onMouseLeave
2552
- } = options,
2553
- rest = _objectWithoutPropertiesLoose(options, _excluded);
2554
-
2555
- const linkInfo = route.buildLink(options);
2556
-
2557
- if (linkInfo.type === 'external') {
2558
- const {
2559
- href
2560
- } = linkInfo;
2561
- return {
2562
- href
2563
- };
2564
- }
2565
-
2566
- const {
2567
- handleClick,
2568
- handleFocus,
2569
- handleEnter,
2570
- handleLeave,
2571
- isActive,
2572
- next
2573
- } = linkInfo;
2574
-
2575
- const composeHandlers = handlers => e => {
2576
- e.persist();
2577
- handlers.forEach(handler => {
2578
- if (handler) handler(e);
2579
- });
2580
- }; // Get the active props
2581
-
2582
-
2583
- const resolvedActiveProps = isActive ? (_functionalUpdate = functionalUpdate(activeProps, {})) != null ? _functionalUpdate : {} : {}; // Get the inactive props
2584
-
2585
- const resolvedInactiveProps = isActive ? {} : (_functionalUpdate2 = functionalUpdate(inactiveProps, {})) != null ? _functionalUpdate2 : {};
2586
- return _extends$2({}, resolvedActiveProps, resolvedInactiveProps, rest, {
2587
- href: disabled ? undefined : next.href,
2588
- onClick: composeHandlers([handleClick, onClick]),
2589
- onFocus: composeHandlers([handleFocus, onFocus]),
2590
- onMouseEnter: composeHandlers([handleEnter, onMouseEnter]),
2591
- onMouseLeave: composeHandlers([handleLeave, onMouseLeave]),
2592
- target,
2593
- style: _extends$2({}, style, resolvedActiveProps.style, resolvedInactiveProps.style),
2594
- className: [className, resolvedActiveProps.className, resolvedInactiveProps.className].filter(Boolean).join(' ') || undefined
2595
- }, disabled ? {
2596
- role: 'link',
2597
- 'aria-disabled': true
2598
- } : undefined, {
2599
- ['data-status']: isActive ? 'active' : undefined
2600
- });
2601
- },
2602
- Link: /*#__PURE__*/React.forwardRef((props, ref) => {
2603
- const linkProps = route.linkProps(props);
2604
- useRouterSubscription(router);
2605
- return /*#__PURE__*/React.createElement("a", _extends$2({
2606
- ref: ref
2607
- }, linkProps, {
2608
- children: typeof props.children === 'function' ? props.children({
2609
- isActive: linkProps['data-status'] === 'active'
2610
- }) : props.children
2611
- }));
2612
- }),
2613
- MatchRoute: opts => {
2614
- const {
2615
- pending,
2616
- caseSensitive
2617
- } = opts,
2618
- rest = _objectWithoutPropertiesLoose(opts, _excluded2);
2619
-
2620
- const params = route.matchRoute(rest, {
2621
- pending,
2622
- caseSensitive
2623
- });
2624
-
2625
- if (!params) {
2626
- return null;
2627
- }
2628
-
2629
- return typeof opts.children === 'function' ? opts.children(params) : opts.children;
2630
- }
130
+ href
2631
131
  };
132
+ }
133
+ const {
134
+ handleClick,
135
+ handleFocus,
136
+ handleEnter,
137
+ handleLeave,
138
+ isActive,
139
+ next
140
+ } = linkInfo;
141
+ const reactHandleClick = e => {
142
+ if (React.startTransition) {
143
+ // This is a hack for react < 18
144
+ React.startTransition(() => {
145
+ handleClick(e);
146
+ });
147
+ } else {
148
+ handleClick(e);
149
+ }
150
+ };
151
+ const composeHandlers = handlers => e => {
152
+ if (e.persist) e.persist();
153
+ handlers.filter(Boolean).forEach(handler => {
154
+ if (e.defaultPrevented) return;
155
+ handler(e);
156
+ });
2632
157
  };
2633
158
 
2634
- const coreRouter = createRouter(_extends$2({}, opts, {
2635
- createRouter: router => {
2636
- const routerExt = {
2637
- useState: () => {
2638
- useRouterSubscription(router);
2639
- return router.state;
2640
- },
2641
- useMatch: routeId => {
2642
- useRouterSubscription(router);
2643
- invariant(routeId !== rootRouteId, "\"" + rootRouteId + "\" cannot be used with useMatch! Did you mean to useRoute(\"" + rootRouteId + "\")?");
2644
-
2645
- const runtimeMatch = _useMatch();
2646
-
2647
- const match = router.state.matches.find(d => d.routeId === routeId);
2648
- invariant(match, "Could not find a match for route \"" + routeId + "\" being rendered in this component!");
2649
- invariant(runtimeMatch.routeId == (match == null ? void 0 : match.routeId), "useMatch('" + (match == null ? void 0 : match.routeId) + "') is being called in a component that is meant to render the '" + runtimeMatch.routeId + "' route. Did you mean to 'useRoute(" + (match == null ? void 0 : match.routeId) + ")' instead?");
2650
-
2651
- if (!match) {
2652
- invariant('Match not found!');
2653
- }
2654
-
2655
- return match;
2656
- }
2657
- };
2658
- const routeExt = makeRouteExt(router.getRoute('/'), router);
2659
- Object.assign(router, routerExt, routeExt);
2660
- },
2661
- createRoute: _ref => {
2662
- let {
2663
- router,
2664
- route
2665
- } = _ref;
2666
- const routeExt = makeRouteExt(route, router);
2667
- Object.assign(route, routeExt);
2668
- },
2669
- createElement: async element => {
2670
- if (typeof element === 'function') {
2671
- const res = await element(); // Support direct import() calls
159
+ // Get the active props
160
+ const resolvedActiveProps = isActive ? functionalUpdate(activeProps, {}) ?? {} : {};
2672
161
 
2673
- if (typeof res === 'object' && res.default) {
2674
- return /*#__PURE__*/React.createElement(res.default);
2675
- } else {
2676
- return res;
162
+ // Get the inactive props
163
+ const resolvedInactiveProps = isActive ? {} : functionalUpdate(inactiveProps, {}) ?? {};
164
+ return {
165
+ ...resolvedActiveProps,
166
+ ...resolvedInactiveProps,
167
+ ...rest,
168
+ href: disabled ? undefined : next.href,
169
+ onClick: composeHandlers([onClick, reactHandleClick]),
170
+ onFocus: composeHandlers([onFocus, handleFocus]),
171
+ onMouseEnter: composeHandlers([onMouseEnter, handleEnter]),
172
+ onMouseLeave: composeHandlers([onMouseLeave, handleLeave]),
173
+ target,
174
+ style: {
175
+ ...style,
176
+ ...resolvedActiveProps.style,
177
+ ...resolvedInactiveProps.style
178
+ },
179
+ className: [className, resolvedActiveProps.className, resolvedInactiveProps.className].filter(Boolean).join(' ') || undefined,
180
+ ...(disabled ? {
181
+ role: 'link',
182
+ 'aria-disabled': true
183
+ } : undefined),
184
+ ['data-status']: isActive ? 'active' : undefined
185
+ };
186
+ }
187
+ const Link = /*#__PURE__*/React.forwardRef((props, ref) => {
188
+ const linkProps = useLinkProps(props);
189
+ return /*#__PURE__*/React.createElement("a", _extends({
190
+ ref: ref
191
+ }, linkProps, {
192
+ children: typeof props.children === 'function' ? props.children({
193
+ isActive: linkProps['data-status'] === 'active'
194
+ }) : props.children
195
+ }));
196
+ });
197
+ const matchesContext = /*#__PURE__*/React.createContext(null);
198
+ const routerContext = /*#__PURE__*/React.createContext(null);
199
+ class ReactRouter extends Router {
200
+ constructor(opts) {
201
+ super({
202
+ ...opts,
203
+ loadComponent: async component => {
204
+ if (component.preload) {
205
+ await component.preload();
2677
206
  }
207
+ return component;
2678
208
  }
2679
-
2680
- return element;
2681
- }
2682
- }));
2683
- return coreRouter;
209
+ });
210
+ }
2684
211
  }
2685
- function RouterProvider(_ref2) {
2686
- let {
2687
- children,
2688
- router
2689
- } = _ref2,
2690
- rest = _objectWithoutPropertiesLoose(_ref2, _excluded3);
2691
-
212
+ function RouterProvider({
213
+ router,
214
+ ...rest
215
+ }) {
2692
216
  router.update(rest);
2693
- useRouterSubscription(router);
2694
- useLayoutEffect(() => {
2695
- return router.mount();
2696
- }, [router]);
2697
- return /*#__PURE__*/React.createElement(routerContext.Provider, {
217
+ const [,, currentMatches] = useStore(router.store, s => [s.status, s.pendingMatches, s.currentMatches], true);
218
+ React.useEffect(router.mount, [router]);
219
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(routerContext.Provider, {
2698
220
  value: {
2699
- router
221
+ router: router
2700
222
  }
2701
- }, /*#__PURE__*/React.createElement(MatchesProvider, {
2702
- value: router.state.matches
2703
- }, children != null ? children : /*#__PURE__*/React.createElement(Outlet, null)));
223
+ }, /*#__PURE__*/React.createElement(matchesContext.Provider, {
224
+ value: [undefined, ...currentMatches]
225
+ }, /*#__PURE__*/React.createElement(Outlet, null))));
2704
226
  }
2705
-
2706
227
  function useRouter() {
2707
228
  const value = React.useContext(routerContext);
2708
229
  warning(!value, 'useRouter must be used inside a <Router> component!');
2709
- useRouterSubscription(value.router);
2710
230
  return value.router;
2711
231
  }
2712
-
232
+ function useRouterStore(selector, shallow) {
233
+ const router = useRouter();
234
+ return useStore(router.store, selector, shallow);
235
+ }
2713
236
  function useMatches() {
2714
237
  return React.useContext(matchesContext);
2715
- } // function useParentMatches(): RouteMatch[] {
2716
- // const router = useRouter()
2717
- // const match = useMatch()
2718
- // const matches = router.state.matches
2719
- // return matches.slice(
2720
- // 0,
2721
- // matches.findIndex((d) => d.matchId === match.matchId) - 1,
2722
- // )
2723
- // }
2724
-
2725
-
2726
- function _useMatch() {
2727
- var _useMatches;
2728
-
2729
- return (_useMatches = useMatches()) == null ? void 0 : _useMatches[0];
2730
238
  }
2731
-
239
+ function useMatch(opts) {
240
+ const router = useRouter();
241
+ const nearestMatch = useMatches()[0];
242
+ const match = opts?.from ? router.store.state.currentMatches.find(d => d.route.id === opts?.from) : nearestMatch;
243
+ invariant(match, `Could not find ${opts?.from ? `an active match from "${opts.from}"` : 'a nearest match!'}`);
244
+ if (opts?.strict ?? true) {
245
+ invariant(nearestMatch.route.id == match?.route.id, `useMatch("${match?.route.id}") is being called in a component that is meant to render the '${nearestMatch.route.id}' route. Did you mean to 'useMatch("${match?.route.id}", { strict: false })' or 'useRoute("${match?.route.id}")' instead?`);
246
+ }
247
+ useStore(match.store, d => opts?.track?.(match) ?? match, opts?.shallow);
248
+ return match;
249
+ }
250
+ function useRoute(routeId) {
251
+ const router = useRouter();
252
+ const resolvedRoute = router.getRoute(routeId);
253
+ invariant(resolvedRoute, `Could not find a route for route "${routeId}"! Did you forget to add it to your route config?`);
254
+ return resolvedRoute;
255
+ }
256
+ function useLoaderData(opts) {
257
+ const match = useMatch(opts);
258
+ invariant(match, `Could not find ${opts?.from ? `an active match from "${opts.from}"` : 'a nearest match!'}`);
259
+ useStore(match.store, d => opts?.track?.(d.loaderData) ?? d.loaderData);
260
+ return match.store.state.loaderData;
261
+ }
262
+ function useSearch(opts) {
263
+ const match = useMatch(opts);
264
+ useStore(match.store, d => opts?.track?.(d.search) ?? d.search);
265
+ return match.store.state.search;
266
+ }
267
+ function useParams(opts) {
268
+ const router = useRouter();
269
+ useStore(router.store, d => {
270
+ const params = last(d.currentMatches)?.params;
271
+ return opts?.track?.(params) ?? params;
272
+ });
273
+ return last(router.store.state.currentMatches)?.params;
274
+ }
275
+ function useNavigate(defaultOpts) {
276
+ const router = useRouter();
277
+ return opts => {
278
+ return router.navigate({
279
+ ...defaultOpts,
280
+ ...opts
281
+ });
282
+ };
283
+ }
284
+ function useMatchRoute() {
285
+ const router = useRouter();
286
+ return opts => {
287
+ const {
288
+ pending,
289
+ caseSensitive,
290
+ ...rest
291
+ } = opts;
292
+ return router.matchRoute(rest, {
293
+ pending,
294
+ caseSensitive
295
+ });
296
+ };
297
+ }
298
+ function MatchRoute(props) {
299
+ const matchRoute = useMatchRoute();
300
+ const params = matchRoute(props);
301
+ if (!params) {
302
+ return null;
303
+ }
304
+ if (typeof props.children === 'function') {
305
+ return props.children(params);
306
+ }
307
+ return params ? props.children : null;
308
+ }
2732
309
  function Outlet() {
2733
- var _childMatch$options$c;
2734
-
310
+ const matches = useMatches().slice(1);
311
+ const match = matches[0];
312
+ if (!match) {
313
+ return null;
314
+ }
315
+ return /*#__PURE__*/React.createElement(SubOutlet, {
316
+ matches: matches,
317
+ match: match
318
+ });
319
+ }
320
+ function SubOutlet({
321
+ matches,
322
+ match
323
+ }) {
2735
324
  const router = useRouter();
2736
- const [, ...matches] = useMatches();
2737
- const childMatch = matches[0];
2738
- if (!childMatch) return null;
2739
-
2740
- const element = (() => {
2741
- var _childMatch$__$errorE, _ref4;
2742
-
2743
- if (!childMatch) {
2744
- return null;
2745
- }
2746
-
2747
- const errorElement = (_childMatch$__$errorE = childMatch.__.errorElement) != null ? _childMatch$__$errorE : router.options.defaultErrorElement;
2748
-
2749
- if (childMatch.status === 'error') {
2750
- if (errorElement) {
2751
- return errorElement;
2752
- }
2753
-
2754
- if (childMatch.options.useErrorBoundary || router.options.useErrorBoundary) {
2755
- throw childMatch.error;
2756
- }
2757
-
2758
- return /*#__PURE__*/React.createElement(DefaultErrorBoundary, {
2759
- error: childMatch.error
2760
- });
2761
- }
2762
-
2763
- if (childMatch.status === 'loading' || childMatch.status === 'idle') {
2764
- if (childMatch.isPending) {
2765
- var _childMatch$__$pendin;
2766
-
2767
- const pendingElement = (_childMatch$__$pendin = childMatch.__.pendingElement) != null ? _childMatch$__$pendin : router.options.defaultPendingElement;
2768
-
2769
- if (childMatch.options.pendingMs || pendingElement) {
2770
- var _ref3;
2771
-
2772
- return (_ref3 = pendingElement) != null ? _ref3 : null;
2773
- }
2774
- }
2775
-
2776
- return null;
2777
- }
2778
-
2779
- return (_ref4 = childMatch.__.element) != null ? _ref4 : router.options.defaultElement;
2780
- })();
2781
-
2782
- const catchElement = (_childMatch$options$c = childMatch == null ? void 0 : childMatch.options.catchElement) != null ? _childMatch$options$c : router.options.defaultCatchElement;
2783
- return /*#__PURE__*/React.createElement(MatchesProvider, {
2784
- value: matches,
2785
- key: childMatch.matchId
325
+ useStore(match.store);
326
+ const defaultPending = React.useCallback(() => null, []);
327
+ const Inner = React.useCallback(props => {
328
+ if (props.match.store.state.status === 'error') {
329
+ throw props.match.store.state.error;
330
+ }
331
+ if (props.match.store.state.status === 'success') {
332
+ return /*#__PURE__*/React.createElement(props.match.component ?? router.options.defaultComponent ?? Outlet);
333
+ }
334
+ if (props.match.store.state.status === 'loading') {
335
+ throw props.match.__loadPromise;
336
+ }
337
+ invariant(false, 'Idle routeMatch status encountered during rendering! You should never see this. File an issue!');
338
+ }, []);
339
+ const PendingComponent = match.pendingComponent ?? router.options.defaultPendingComponent ?? defaultPending;
340
+ const errorComponent = match.errorComponent ?? router.options.defaultErrorComponent;
341
+ return /*#__PURE__*/React.createElement(matchesContext.Provider, {
342
+ value: matches
343
+ }, /*#__PURE__*/React.createElement(React.Suspense, {
344
+ fallback: /*#__PURE__*/React.createElement(PendingComponent, null)
2786
345
  }, /*#__PURE__*/React.createElement(CatchBoundary, {
2787
- catchElement: catchElement
2788
- }, element));
346
+ key: match.route.id,
347
+ errorComponent: errorComponent,
348
+ match: match
349
+ }, /*#__PURE__*/React.createElement(Inner, {
350
+ match: match
351
+ }))));
2789
352
  }
2790
-
2791
353
  class CatchBoundary extends React.Component {
2792
- constructor() {
2793
- super(...arguments);
2794
- this.state = {
2795
- error: false
2796
- };
2797
-
2798
- this.reset = () => {
2799
- this.setState({
2800
- error: false,
2801
- info: false
2802
- });
2803
- };
2804
- }
2805
-
354
+ state = {
355
+ error: false,
356
+ info: undefined
357
+ };
2806
358
  componentDidCatch(error, info) {
359
+ console.error(`Error in route match: ${this.props.match.id}`);
2807
360
  console.error(error);
2808
361
  this.setState({
2809
362
  error,
2810
363
  info
2811
364
  });
2812
365
  }
2813
-
2814
366
  render() {
2815
- var _this$props$catchElem;
367
+ return /*#__PURE__*/React.createElement(CatchBoundaryInner, _extends({}, this.props, {
368
+ errorState: this.state,
369
+ reset: () => this.setState({})
370
+ }));
371
+ }
372
+ }
2816
373
 
2817
- const catchElement = (_this$props$catchElem = this.props.catchElement) != null ? _this$props$catchElem : DefaultErrorBoundary;
374
+ // This is the messiest thing ever... I'm either seriously tired (likely) or
375
+ // there has to be a better way to reset error boundaries when the
376
+ // router's location key changes.
377
+ function CatchBoundaryInner(props) {
378
+ const [activeErrorState, setActiveErrorState] = React.useState(props.errorState);
379
+ useRouter();
380
+ const errorComponent = props.errorComponent ?? DefaultErrorBoundary;
2818
381
 
2819
- if (this.state.error) {
2820
- return typeof catchElement === 'function' ? catchElement(this.state) : catchElement;
2821
- }
382
+ // React.useEffect(() => {
383
+ // if (activeErrorState) {
384
+ // let prevKey = router.store.currentLocation.key
385
+ // return createRoot((dispose) => {
386
+ // createEffect(() => {
387
+ // if (router.store.currentLocation.key !== prevKey) {
388
+ // prevKey = router.store.currentLocation.key
389
+ // setActiveErrorState({} as any)
390
+ // }
391
+ // })
2822
392
 
2823
- return this.props.children;
2824
- }
393
+ // return dispose
394
+ // })
395
+ // }
2825
396
 
2826
- }
397
+ // return
398
+ // }, [activeErrorState])
2827
399
 
2828
- function DefaultErrorBoundary(_ref5) {
2829
- let {
2830
- error
2831
- } = _ref5;
400
+ React.useEffect(() => {
401
+ if (props.errorState.error) {
402
+ setActiveErrorState(props.errorState);
403
+ }
404
+ props.reset();
405
+ }, [props.errorState.error]);
406
+ if (props.errorState.error) {
407
+ return /*#__PURE__*/React.createElement(errorComponent, activeErrorState);
408
+ }
409
+ return props.children;
410
+ }
411
+ function DefaultErrorBoundary({
412
+ error
413
+ }) {
2832
414
  return /*#__PURE__*/React.createElement("div", {
2833
415
  style: {
2834
416
  padding: '.5rem',
@@ -2850,43 +432,45 @@ function DefaultErrorBoundary(_ref5) {
2850
432
  padding: '.5rem',
2851
433
  color: 'red'
2852
434
  }
2853
- }, error.message) : null)), /*#__PURE__*/React.createElement("div", {
2854
- style: {
2855
- height: '1rem'
2856
- }
2857
- }), /*#__PURE__*/React.createElement("div", {
2858
- style: {
2859
- fontSize: '.8em',
2860
- borderLeft: '3px solid rgba(127, 127, 127, 1)',
2861
- paddingLeft: '.5rem',
2862
- opacity: 0.5
2863
- }
2864
- }, "If you are the owner of this website, it's highly recommended that you configure your own custom Catch/Error boundaries for the router. You can optionally configure a boundary for each route."));
2865
- }
2866
- function usePrompt(message, when) {
2867
- const router = useRouter();
2868
- React.useEffect(() => {
2869
- if (!when) return;
2870
- let unblock = router.history.block(transition => {
2871
- if (window.confirm(message)) {
2872
- unblock();
2873
- transition.retry();
2874
- } else {
2875
- router.location.pathname = window.location.pathname;
2876
- }
2877
- });
2878
- return unblock;
2879
- }, [when, location, message]);
435
+ }, error.message) : null)));
2880
436
  }
2881
- function Prompt(_ref6) {
2882
- let {
2883
- message,
2884
- when,
2885
- children
2886
- } = _ref6;
2887
- usePrompt(message, when != null ? when : true);
2888
- return children != null ? children : null;
437
+ function useAction(action, opts) {
438
+ useStore(action.store, d => opts?.track?.(d) ?? d, true);
439
+ const [ref] = React.useState({});
440
+ Object.assign(ref, {
441
+ ...action,
442
+ latestSubmission: action.store.state.submissions[action.store.state.submissions.length - 1],
443
+ pendingSubmissions: React.useMemo(() => action.store.state.submissions.filter(d => d.status === 'pending'), [action.store.state.submissions])
444
+ });
445
+ return ref;
2889
446
  }
2890
447
 
2891
- export { DefaultErrorBoundary, MatchesProvider, Outlet, Prompt, RouterProvider, cascadeLoaderData, cleanPath, createBrowserHistory, createHashHistory, createMemoryHistory, createReactRouter, createRoute, createRouteConfig, createRouteMatch, createRouter, decode, defaultParseSearch, defaultStringifySearch, encode, functionalUpdate, interpolatePath, invariant, joinPaths, last, matchByPath, matchPathname, parsePathname, parseSearchWith, replaceEqualDeep, resolvePath, rootRouteId, stringifySearchWith, trimPath, trimPathLeft, trimPathRight, usePrompt, warning };
448
+ // TODO: While we migrate away from the history package, these need to be disabled
449
+ // export function usePrompt(message: string, when: boolean | any): void {
450
+ // const router = useRouter()
451
+
452
+ // React.useEffect(() => {
453
+ // if (!when) return
454
+
455
+ // let unblock = router.getHistory().block((transition) => {
456
+ // if (window.confirm(message)) {
457
+ // unblock()
458
+ // transition.retry()
459
+ // } else {
460
+ // router.setStore((s) => {
461
+ // s.currentLocation.pathname = window.location.pathname
462
+ // })
463
+ // }
464
+ // })
465
+
466
+ // return unblock
467
+ // }, [when, message])
468
+ // }
469
+
470
+ // export function Prompt({ message, when, children }: PromptProps) {
471
+ // usePrompt(message, when ?? true)
472
+ // return (children ?? null) as ReactNode
473
+ // }
474
+
475
+ export { DefaultErrorBoundary, Link, MatchRoute, Outlet, ReactRouter, RouterProvider, lazy, matchesContext, routerContext, useAction, useLinkProps, useLoaderData, useMatch, useMatchRoute, useMatches, useNavigate, useParams, useRoute, useRouter, useRouterStore, useSearch, useStore };
2892
476
  //# sourceMappingURL=index.js.map