@tanstack/react-router 1.98.0 → 1.98.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Match.cjs +60 -22
- package/dist/cjs/Match.cjs.map +1 -1
- package/dist/cjs/Matches.cjs +4 -1
- package/dist/cjs/Matches.cjs.map +1 -1
- package/dist/cjs/ScriptOnce.cjs +1 -1
- package/dist/cjs/ScriptOnce.cjs.map +1 -1
- package/dist/cjs/ScrollRestoration.cjs +39 -0
- package/dist/cjs/ScrollRestoration.cjs.map +1 -0
- package/dist/cjs/ScrollRestoration.d.cts +15 -0
- package/dist/cjs/Transitioner.cjs +3 -33
- package/dist/cjs/Transitioner.cjs.map +1 -1
- package/dist/cjs/index.cjs +3 -4
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +1 -2
- package/dist/cjs/router.cjs +14 -12
- package/dist/cjs/router.cjs.map +1 -1
- package/dist/cjs/router.d.cts +26 -26
- package/dist/cjs/scroll-restoration.cjs +166 -165
- package/dist/cjs/scroll-restoration.cjs.map +1 -1
- package/dist/cjs/scroll-restoration.d.cts +25 -15
- package/dist/esm/Match.js +62 -24
- package/dist/esm/Match.js.map +1 -1
- package/dist/esm/Matches.js +4 -1
- package/dist/esm/Matches.js.map +1 -1
- package/dist/esm/ScriptOnce.js +1 -1
- package/dist/esm/ScriptOnce.js.map +1 -1
- package/dist/esm/ScrollRestoration.d.ts +15 -0
- package/dist/esm/ScrollRestoration.js +39 -0
- package/dist/esm/ScrollRestoration.js.map +1 -0
- package/dist/esm/Transitioner.js +4 -34
- package/dist/esm/Transitioner.js.map +1 -1
- package/dist/esm/index.d.ts +1 -2
- package/dist/esm/index.js +1 -2
- package/dist/esm/router.d.ts +26 -26
- package/dist/esm/router.js +15 -13
- package/dist/esm/router.js.map +1 -1
- package/dist/esm/scroll-restoration.d.ts +25 -15
- package/dist/esm/scroll-restoration.js +166 -148
- package/dist/esm/scroll-restoration.js.map +1 -1
- package/package.json +3 -3
- package/src/Match.tsx +79 -48
- package/src/Matches.tsx +1 -1
- package/src/ScriptOnce.tsx +1 -1
- package/src/ScrollRestoration.tsx +65 -0
- package/src/Transitioner.tsx +4 -40
- package/src/index.tsx +1 -3
- package/src/router.ts +43 -38
- package/src/scroll-restoration.tsx +268 -182
package/dist/cjs/router.d.cts
CHANGED
|
@@ -332,6 +332,14 @@ export interface RouterOptions<TRouteTree extends AnyRoute, TTrailingSlashOption
|
|
|
332
332
|
*/
|
|
333
333
|
pathParamsAllowedCharacters?: Array<';' | ':' | '@' | '&' | '=' | '+' | '$' | ','>;
|
|
334
334
|
defaultRemountDeps?: (opts: MakeRemountDepsOptionsUnion<TRouteTree>) => any;
|
|
335
|
+
/**
|
|
336
|
+
* If `false`, scroll restoration will be disabled
|
|
337
|
+
*
|
|
338
|
+
* @default true
|
|
339
|
+
*/
|
|
340
|
+
scrollRestoration?: boolean;
|
|
341
|
+
getScrollRestorationKey?: (location: ParsedLocation) => string;
|
|
342
|
+
scrollRestorationBehavior?: ScrollBehavior;
|
|
335
343
|
}
|
|
336
344
|
export interface RouterErrorSerializer<TSerializedError> {
|
|
337
345
|
serialize: (err: unknown) => TSerializedError;
|
|
@@ -346,7 +354,7 @@ export interface RouterState<TRouteTree extends AnyRoute = AnyRoute, TRouteMatch
|
|
|
346
354
|
pendingMatches?: Array<TRouteMatch>;
|
|
347
355
|
cachedMatches: Array<TRouteMatch>;
|
|
348
356
|
location: ParsedLocation<FullSearchSchema<TRouteTree>>;
|
|
349
|
-
resolvedLocation
|
|
357
|
+
resolvedLocation?: ParsedLocation<FullSearchSchema<TRouteTree>>;
|
|
350
358
|
statusCode: number;
|
|
351
359
|
redirect?: ResolvedRedirect;
|
|
352
360
|
}
|
|
@@ -375,46 +383,36 @@ export interface MatchedRoutesResult {
|
|
|
375
383
|
}
|
|
376
384
|
export type RouterConstructorOptions<TRouteTree extends AnyRoute, TTrailingSlashOption extends TrailingSlashOption, TDefaultStructuralSharingOption extends boolean, TRouterHistory extends RouterHistory, TDehydrated extends Record<string, any>> = Omit<RouterOptions<TRouteTree, TTrailingSlashOption, TDefaultStructuralSharingOption, TRouterHistory, TDehydrated>, 'context'> & RouterContextOptions<TRouteTree>;
|
|
377
385
|
export declare const componentTypes: readonly ["component", "errorComponent", "pendingComponent", "notFoundComponent"];
|
|
386
|
+
type NavigationEventInfo = {
|
|
387
|
+
fromLocation?: ParsedLocation;
|
|
388
|
+
toLocation: ParsedLocation;
|
|
389
|
+
pathChanged: boolean;
|
|
390
|
+
hrefChanged: boolean;
|
|
391
|
+
hashChanged: boolean;
|
|
392
|
+
};
|
|
378
393
|
export type RouterEvents = {
|
|
379
394
|
onBeforeNavigate: {
|
|
380
395
|
type: 'onBeforeNavigate';
|
|
381
|
-
|
|
382
|
-
toLocation: ParsedLocation;
|
|
383
|
-
pathChanged: boolean;
|
|
384
|
-
hrefChanged: boolean;
|
|
385
|
-
};
|
|
396
|
+
} & NavigationEventInfo;
|
|
386
397
|
onBeforeLoad: {
|
|
387
398
|
type: 'onBeforeLoad';
|
|
388
|
-
|
|
389
|
-
toLocation: ParsedLocation;
|
|
390
|
-
pathChanged: boolean;
|
|
391
|
-
hrefChanged: boolean;
|
|
392
|
-
};
|
|
399
|
+
} & NavigationEventInfo;
|
|
393
400
|
onLoad: {
|
|
394
401
|
type: 'onLoad';
|
|
395
|
-
|
|
396
|
-
toLocation: ParsedLocation;
|
|
397
|
-
pathChanged: boolean;
|
|
398
|
-
hrefChanged: boolean;
|
|
399
|
-
};
|
|
402
|
+
} & NavigationEventInfo;
|
|
400
403
|
onResolved: {
|
|
401
404
|
type: 'onResolved';
|
|
402
|
-
|
|
403
|
-
toLocation: ParsedLocation;
|
|
404
|
-
pathChanged: boolean;
|
|
405
|
-
hrefChanged: boolean;
|
|
406
|
-
};
|
|
405
|
+
} & NavigationEventInfo;
|
|
407
406
|
onBeforeRouteMount: {
|
|
408
407
|
type: 'onBeforeRouteMount';
|
|
409
|
-
|
|
410
|
-
toLocation: ParsedLocation;
|
|
411
|
-
pathChanged: boolean;
|
|
412
|
-
hrefChanged: boolean;
|
|
413
|
-
};
|
|
408
|
+
} & NavigationEventInfo;
|
|
414
409
|
onInjectedHtml: {
|
|
415
410
|
type: 'onInjectedHtml';
|
|
416
411
|
promise: Promise<string>;
|
|
417
412
|
};
|
|
413
|
+
onRendered: {
|
|
414
|
+
type: 'onRendered';
|
|
415
|
+
} & NavigationEventInfo;
|
|
418
416
|
};
|
|
419
417
|
export type RouterEvent = RouterEvents[keyof RouterEvents];
|
|
420
418
|
export type RouterListener<TRouterEvent extends RouterEvent> = {
|
|
@@ -435,6 +433,8 @@ export declare class Router<in out TRouteTree extends AnyRoute, in out TTrailing
|
|
|
435
433
|
isViewTransitionTypesSupported?: boolean;
|
|
436
434
|
subscribers: Set<RouterListener<RouterEvent>>;
|
|
437
435
|
viewTransitionPromise?: ControlledPromise<true>;
|
|
436
|
+
isScrollRestoring: boolean;
|
|
437
|
+
isScrollRestorationSetup: boolean;
|
|
438
438
|
__store: Store<RouterState<TRouteTree>>;
|
|
439
439
|
options: PickAsRequired<RouterOptions<TRouteTree, TTrailingSlashOption, TDefaultStructuralSharingOption, TRouterHistory, TDehydrated>, 'stringifySearch' | 'parseSearch' | 'context'>;
|
|
440
440
|
history: TRouterHistory;
|
|
@@ -1,191 +1,192 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
4
|
const routerCore = require("@tanstack/router-core");
|
|
5
5
|
const useRouter = require("./useRouter.cjs");
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceDefault(React);
|
|
23
|
-
const useLayoutEffect = typeof window !== "undefined" ? React__namespace.useLayoutEffect : React__namespace.useEffect;
|
|
24
|
-
const windowKey = "window";
|
|
25
|
-
const delimiter = "___";
|
|
26
|
-
let weakScrolledElements = /* @__PURE__ */ new WeakSet();
|
|
6
|
+
const ScriptOnce = require("./ScriptOnce.cjs");
|
|
7
|
+
const storageKey = "tsr-scroll-restoration-v1_3";
|
|
27
8
|
const sessionsStorage = typeof window !== "undefined" && window.sessionStorage;
|
|
28
|
-
const
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
9
|
+
const throttle = (fn, wait) => {
|
|
10
|
+
let timeout;
|
|
11
|
+
return (...args) => {
|
|
12
|
+
if (!timeout) {
|
|
13
|
+
timeout = setTimeout(() => {
|
|
14
|
+
fn(...args);
|
|
15
|
+
timeout = null;
|
|
16
|
+
}, wait);
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
const scrollRestorationCache = sessionsStorage ? (() => {
|
|
21
|
+
const state = JSON.parse(window.sessionStorage.getItem(storageKey) || "null") || {};
|
|
33
22
|
return {
|
|
34
23
|
state,
|
|
35
|
-
set
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
24
|
+
// This setter is simply to make sure that we set the sessionStorage right
|
|
25
|
+
// after the state is updated. It doesn't necessarily need to be a functional
|
|
26
|
+
// update.
|
|
27
|
+
set: (updater) => (scrollRestorationCache.state = // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
28
|
+
routerCore.functionalUpdate(updater, scrollRestorationCache.state) || scrollRestorationCache.state, window.sessionStorage.setItem(
|
|
29
|
+
storageKey,
|
|
30
|
+
JSON.stringify(scrollRestorationCache.state)
|
|
31
|
+
))
|
|
39
32
|
};
|
|
40
33
|
})() : void 0;
|
|
41
|
-
const
|
|
34
|
+
const defaultGetScrollRestorationKey = (location) => {
|
|
42
35
|
return location.state.key || location.href;
|
|
43
36
|
};
|
|
44
|
-
function
|
|
45
|
-
const
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
37
|
+
function getCssSelector(el) {
|
|
38
|
+
const path = [];
|
|
39
|
+
let parent;
|
|
40
|
+
while (parent = el.parentNode) {
|
|
41
|
+
path.unshift(
|
|
42
|
+
`${el.tagName}:nth-child(${[].indexOf.call(parent.children, el) + 1})`
|
|
43
|
+
);
|
|
44
|
+
el = parent;
|
|
45
|
+
}
|
|
46
|
+
return `${path.join(" > ")}`.toLowerCase();
|
|
47
|
+
}
|
|
48
|
+
let ignoreScroll = false;
|
|
49
|
+
function restoreScroll(storageKey2, key, behavior, shouldScrollRestoration) {
|
|
50
|
+
var _a;
|
|
51
|
+
let byKey;
|
|
52
|
+
try {
|
|
53
|
+
byKey = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
|
|
54
|
+
} catch (error) {
|
|
55
|
+
console.error(error);
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
const resolvedKey = key || ((_a = window.history.state) == null ? void 0 : _a.key);
|
|
59
|
+
const elementEntries = byKey[resolvedKey];
|
|
60
|
+
ignoreScroll = true;
|
|
61
|
+
(() => {
|
|
62
|
+
if (shouldScrollRestoration && elementEntries) {
|
|
63
|
+
for (const elementSelector in elementEntries) {
|
|
64
|
+
const entry = elementEntries[elementSelector];
|
|
65
|
+
if (elementSelector === "window") {
|
|
66
|
+
window.scrollTo({
|
|
67
|
+
top: entry.scrollY,
|
|
68
|
+
left: entry.scrollX,
|
|
69
|
+
behavior
|
|
70
|
+
});
|
|
71
|
+
} else if (elementSelector) {
|
|
72
|
+
const element = document.querySelector(elementSelector);
|
|
73
|
+
if (element) {
|
|
74
|
+
element.scrollLeft = entry.scrollX;
|
|
75
|
+
element.scrollTop = entry.scrollY;
|
|
75
76
|
}
|
|
76
|
-
}
|
|
77
|
+
}
|
|
77
78
|
}
|
|
78
|
-
|
|
79
|
-
if (typeof document !== "undefined") {
|
|
80
|
-
document.addEventListener("scroll", onScroll, true);
|
|
79
|
+
return;
|
|
81
80
|
}
|
|
82
|
-
const
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
entry.scrollY = window.scrollY || 0;
|
|
90
|
-
} else if (elementSelector) {
|
|
91
|
-
const element = document.querySelector(elementSelector);
|
|
92
|
-
entry.scrollX = (element == null ? void 0 : element.scrollLeft) || 0;
|
|
93
|
-
entry.scrollY = (element == null ? void 0 : element.scrollTop) || 0;
|
|
94
|
-
}
|
|
95
|
-
cache.set((c) => {
|
|
96
|
-
const next = { ...c.next };
|
|
97
|
-
delete next[elementSelector];
|
|
98
|
-
return {
|
|
99
|
-
...c,
|
|
100
|
-
next,
|
|
101
|
-
cached: {
|
|
102
|
-
...c.cached,
|
|
103
|
-
[[restoreKey, elementSelector].join(delimiter)]: entry
|
|
104
|
-
}
|
|
105
|
-
};
|
|
106
|
-
});
|
|
81
|
+
const hash = window.location.hash.split("#")[1];
|
|
82
|
+
if (hash) {
|
|
83
|
+
const hashScrollIntoViewOptions = (window.history.state || {}).__hashScrollIntoViewOptions ?? true;
|
|
84
|
+
if (hashScrollIntoViewOptions) {
|
|
85
|
+
const el = document.getElementById(hash);
|
|
86
|
+
if (el) {
|
|
87
|
+
el.scrollIntoView(hashScrollIntoViewOptions);
|
|
107
88
|
}
|
|
108
89
|
}
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
window.scrollTo({
|
|
93
|
+
top: 0,
|
|
94
|
+
left: 0,
|
|
95
|
+
behavior
|
|
109
96
|
});
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
(event) => {
|
|
113
|
-
if (event.hrefChanged) {
|
|
114
|
-
if (!router.resetNextScroll) {
|
|
115
|
-
return;
|
|
116
|
-
}
|
|
117
|
-
router.resetNextScroll = true;
|
|
118
|
-
const restoreKey = getKey(event.toLocation);
|
|
119
|
-
let windowRestored = false;
|
|
120
|
-
for (const cacheKey in cache.state.cached) {
|
|
121
|
-
const entry = cache.state.cached[cacheKey];
|
|
122
|
-
const [key, elementSelector] = cacheKey.split(delimiter);
|
|
123
|
-
if (key === restoreKey) {
|
|
124
|
-
if (elementSelector === windowKey) {
|
|
125
|
-
windowRestored = true;
|
|
126
|
-
window.scrollTo({
|
|
127
|
-
top: entry.scrollY,
|
|
128
|
-
left: entry.scrollX,
|
|
129
|
-
behavior: options == null ? void 0 : options.scrollBehavior
|
|
130
|
-
});
|
|
131
|
-
} else if (elementSelector) {
|
|
132
|
-
const element = document.querySelector(elementSelector);
|
|
133
|
-
if (element) {
|
|
134
|
-
element.scrollLeft = entry.scrollX;
|
|
135
|
-
element.scrollTop = entry.scrollY;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
if (!windowRestored) {
|
|
141
|
-
window.scrollTo(0, 0);
|
|
142
|
-
}
|
|
143
|
-
cache.set((c) => ({ ...c, next: {} }));
|
|
144
|
-
weakScrolledElements = /* @__PURE__ */ new WeakSet();
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
);
|
|
148
|
-
return () => {
|
|
149
|
-
document.removeEventListener("scroll", onScroll);
|
|
150
|
-
unsubOnBeforeLoad();
|
|
151
|
-
unsubOnBeforeRouteMount();
|
|
152
|
-
};
|
|
153
|
-
}, [options == null ? void 0 : options.getKey, options == null ? void 0 : options.scrollBehavior, router]);
|
|
154
|
-
}
|
|
155
|
-
function ScrollRestoration(props) {
|
|
156
|
-
useScrollRestoration(props);
|
|
157
|
-
return null;
|
|
97
|
+
})();
|
|
98
|
+
ignoreScroll = false;
|
|
158
99
|
}
|
|
159
|
-
function
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
if (
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
|
|
100
|
+
function setupScrollRestoration(router, force) {
|
|
101
|
+
const shouldScrollRestoration = force ?? router.options.scrollRestoration ?? false;
|
|
102
|
+
if (shouldScrollRestoration) {
|
|
103
|
+
router.isScrollRestoring = true;
|
|
104
|
+
}
|
|
105
|
+
if (typeof document === "undefined" || router.isScrollRestorationSetup) {
|
|
106
|
+
return;
|
|
107
|
+
}
|
|
108
|
+
router.isScrollRestorationSetup = true;
|
|
109
|
+
ignoreScroll = false;
|
|
110
|
+
const getKey = router.options.getScrollRestorationKey || defaultGetScrollRestorationKey;
|
|
111
|
+
window.history.scrollRestoration = "manual";
|
|
112
|
+
const onScroll = (event) => {
|
|
113
|
+
if (ignoreScroll || !router.isScrollRestoring) {
|
|
169
114
|
return;
|
|
170
115
|
}
|
|
171
|
-
elementSelector =
|
|
116
|
+
let elementSelector = "";
|
|
117
|
+
if (event.target === document || event.target === window) {
|
|
118
|
+
elementSelector = "window";
|
|
119
|
+
} else {
|
|
120
|
+
const attrId = event.target.getAttribute(
|
|
121
|
+
"data-scroll-restoration-id"
|
|
122
|
+
);
|
|
123
|
+
if (attrId) {
|
|
124
|
+
elementSelector = `[data-scroll-restoration-id="${attrId}"]`;
|
|
125
|
+
} else {
|
|
126
|
+
elementSelector = getCssSelector(event.target);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
const restoreKey = getKey(router.state.location);
|
|
130
|
+
scrollRestorationCache.set((state) => {
|
|
131
|
+
const keyEntry = state[restoreKey] = state[restoreKey] || {};
|
|
132
|
+
const elementEntry = keyEntry[elementSelector] = keyEntry[elementSelector] || {};
|
|
133
|
+
if (elementSelector === "window") {
|
|
134
|
+
elementEntry.scrollX = window.scrollX || 0;
|
|
135
|
+
elementEntry.scrollY = window.scrollY || 0;
|
|
136
|
+
} else if (elementSelector) {
|
|
137
|
+
const element = document.querySelector(elementSelector);
|
|
138
|
+
if (element) {
|
|
139
|
+
elementEntry.scrollX = element.scrollLeft || 0;
|
|
140
|
+
elementEntry.scrollY = element.scrollTop || 0;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
return state;
|
|
144
|
+
});
|
|
145
|
+
};
|
|
146
|
+
if (typeof document !== "undefined") {
|
|
147
|
+
document.addEventListener("scroll", throttle(onScroll, 100), true);
|
|
172
148
|
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
149
|
+
router.subscribe("onRendered", (event) => {
|
|
150
|
+
const cacheKey = getKey(event.toLocation);
|
|
151
|
+
if (!router.resetNextScroll) {
|
|
152
|
+
router.resetNextScroll = true;
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
restoreScroll(
|
|
156
|
+
storageKey,
|
|
157
|
+
cacheKey,
|
|
158
|
+
router.options.scrollRestorationBehavior,
|
|
159
|
+
router.isScrollRestoring
|
|
183
160
|
);
|
|
184
|
-
|
|
161
|
+
if (router.isScrollRestoring) {
|
|
162
|
+
scrollRestorationCache.set((state) => {
|
|
163
|
+
state[cacheKey] = state[cacheKey] || {};
|
|
164
|
+
return state;
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
function ScrollRestoration() {
|
|
170
|
+
const router = useRouter.useRouter();
|
|
171
|
+
const getKey = router.options.getScrollRestorationKey || defaultGetScrollRestorationKey;
|
|
172
|
+
const userKey = getKey(router.latestLocation);
|
|
173
|
+
const resolvedKey = userKey !== defaultGetScrollRestorationKey(router.latestLocation) ? userKey : null;
|
|
174
|
+
if (!router.isScrollRestoring || !router.isServer) {
|
|
175
|
+
return null;
|
|
185
176
|
}
|
|
186
|
-
return
|
|
177
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
178
|
+
ScriptOnce.ScriptOnce,
|
|
179
|
+
{
|
|
180
|
+
children: `(${restoreScroll.toString()})(${JSON.stringify(storageKey)},${JSON.stringify(resolvedKey)}, undefined, true)`,
|
|
181
|
+
log: false
|
|
182
|
+
}
|
|
183
|
+
);
|
|
187
184
|
}
|
|
188
185
|
exports.ScrollRestoration = ScrollRestoration;
|
|
189
|
-
exports.
|
|
190
|
-
exports.
|
|
186
|
+
exports.defaultGetScrollRestorationKey = defaultGetScrollRestorationKey;
|
|
187
|
+
exports.getCssSelector = getCssSelector;
|
|
188
|
+
exports.restoreScroll = restoreScroll;
|
|
189
|
+
exports.scrollRestorationCache = scrollRestorationCache;
|
|
190
|
+
exports.setupScrollRestoration = setupScrollRestoration;
|
|
191
|
+
exports.storageKey = storageKey;
|
|
191
192
|
//# sourceMappingURL=scroll-restoration.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scroll-restoration.cjs","sources":["../../src/scroll-restoration.tsx"],"sourcesContent":["import * as React from 'react'\nimport { functionalUpdate } from '@tanstack/router-core'\nimport { useRouter } from './useRouter'\nimport type { NonNullableUpdater, ParsedLocation } from '@tanstack/router-core'\n\nconst useLayoutEffect =\n typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect\n\nconst windowKey = 'window'\nconst delimiter = '___'\n\nlet weakScrolledElements = new WeakSet<any>()\n\ntype CacheValue = Record<string, { scrollX: number; scrollY: number }>\ntype CacheState = {\n cached: CacheValue\n next: CacheValue\n}\n\ntype Cache = {\n state: CacheState\n set: (updater: NonNullableUpdater<CacheState>) => void\n}\n\nconst sessionsStorage = typeof window !== 'undefined' && window.sessionStorage\n\nconst cache: Cache = sessionsStorage\n ? (() => {\n const storageKey = 'tsr-scroll-restoration-v2'\n\n const state: CacheState = JSON.parse(\n window.sessionStorage.getItem(storageKey) || 'null',\n ) || { cached: {}, next: {} }\n\n return {\n state,\n set: (updater) => {\n cache.state = functionalUpdate(updater, cache.state)\n window.sessionStorage.setItem(storageKey, JSON.stringify(cache.state))\n },\n }\n })()\n : (undefined as any)\n\nexport type ScrollRestorationOptions = {\n getKey?: (location: ParsedLocation) => string\n scrollBehavior?: ScrollToOptions['behavior']\n}\n\n/**\n * The default `getKey` function for `useScrollRestoration`.\n * It returns the `key` from the location state or the `href` of the location.\n *\n * The `location.href` is used as a fallback to support the use case where the location state is not available like the initial render.\n */\nconst defaultGetKey = (location: ParsedLocation) => {\n return location.state.key! || location.href\n}\n\nexport function useScrollRestoration(options?: ScrollRestorationOptions) {\n const router = useRouter()\n\n useLayoutEffect(() => {\n const getKey = options?.getKey || defaultGetKey\n\n const { history } = window\n history.scrollRestoration = 'manual'\n\n const onScroll = (event: Event) => {\n if (weakScrolledElements.has(event.target)) return\n weakScrolledElements.add(event.target)\n\n let elementSelector = ''\n\n if (event.target === document || event.target === window) {\n elementSelector = windowKey\n } else {\n const attrId = (event.target as Element).getAttribute(\n 'data-scroll-restoration-id',\n )\n\n if (attrId) {\n elementSelector = `[data-scroll-restoration-id=\"${attrId}\"]`\n } else {\n elementSelector = getCssSelector(event.target)\n }\n }\n\n if (!cache.state.next[elementSelector]) {\n cache.set((c) => ({\n ...c,\n next: {\n ...c.next,\n [elementSelector]: {\n scrollX: NaN,\n scrollY: NaN,\n },\n },\n }))\n }\n }\n\n if (typeof document !== 'undefined') {\n document.addEventListener('scroll', onScroll, true)\n }\n\n const unsubOnBeforeLoad = router.subscribe('onBeforeLoad', (event) => {\n if (event.hrefChanged) {\n const restoreKey = getKey(event.fromLocation)\n for (const elementSelector in cache.state.next) {\n const entry = cache.state.next[elementSelector]!\n if (elementSelector === windowKey) {\n entry.scrollX = window.scrollX || 0\n entry.scrollY = window.scrollY || 0\n } else if (elementSelector) {\n const element = document.querySelector(elementSelector)\n entry.scrollX = element?.scrollLeft || 0\n entry.scrollY = element?.scrollTop || 0\n }\n\n cache.set((c) => {\n const next = { ...c.next }\n delete next[elementSelector]\n\n return {\n ...c,\n next,\n cached: {\n ...c.cached,\n [[restoreKey, elementSelector].join(delimiter)]: entry,\n },\n }\n })\n }\n }\n })\n\n const unsubOnBeforeRouteMount = router.subscribe(\n 'onBeforeRouteMount',\n (event) => {\n if (event.hrefChanged) {\n if (!router.resetNextScroll) {\n return\n }\n\n router.resetNextScroll = true\n\n const restoreKey = getKey(event.toLocation)\n let windowRestored = false\n\n for (const cacheKey in cache.state.cached) {\n const entry = cache.state.cached[cacheKey]!\n const [key, elementSelector] = cacheKey.split(delimiter)\n if (key === restoreKey) {\n if (elementSelector === windowKey) {\n windowRestored = true\n window.scrollTo({\n top: entry.scrollY,\n left: entry.scrollX,\n behavior: options?.scrollBehavior,\n })\n } else if (elementSelector) {\n const element = document.querySelector(elementSelector)\n if (element) {\n element.scrollLeft = entry.scrollX\n element.scrollTop = entry.scrollY\n }\n }\n }\n }\n\n if (!windowRestored) {\n window.scrollTo(0, 0)\n }\n\n cache.set((c) => ({ ...c, next: {} }))\n weakScrolledElements = new WeakSet<any>()\n }\n },\n )\n\n return () => {\n document.removeEventListener('scroll', onScroll)\n unsubOnBeforeLoad()\n unsubOnBeforeRouteMount()\n }\n }, [options?.getKey, options?.scrollBehavior, router])\n}\n\nexport function ScrollRestoration(props: ScrollRestorationOptions) {\n useScrollRestoration(props)\n return null\n}\n\nexport function useElementScrollRestoration(\n options: (\n | {\n id: string\n getElement?: () => Element | undefined | null\n }\n | {\n id?: string\n getElement: () => Element | undefined | null\n }\n ) & {\n getKey?: (location: ParsedLocation) => string\n },\n) {\n const router = useRouter()\n const getKey = options.getKey || defaultGetKey\n\n let elementSelector = ''\n\n if (options.id) {\n elementSelector = `[data-scroll-restoration-id=\"${options.id}\"]`\n } else {\n const element = options.getElement?.()\n if (!element) {\n return\n }\n elementSelector = getCssSelector(element)\n }\n\n const restoreKey = getKey(router.latestLocation)\n const cacheKey = [restoreKey, elementSelector].join(delimiter)\n return cache.state.cached[cacheKey]\n}\n\nfunction getCssSelector(el: any): string {\n const path = []\n let parent\n while ((parent = el.parentNode)) {\n path.unshift(\n `${el.tagName}:nth-child(${\n ([].indexOf as any).call(parent.children, el) + 1\n })`,\n )\n el = parent\n }\n return `${path.join(' > ')}`.toLowerCase()\n}\n"],"names":["React","functionalUpdate","useRouter"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"scroll-restoration.cjs","sources":["../../src/scroll-restoration.tsx"],"sourcesContent":["import { functionalUpdate } from '@tanstack/router-core'\nimport { useRouter } from './useRouter'\nimport { ScriptOnce } from './ScriptOnce'\nimport type { AnyRouter } from './router'\nimport type { NonNullableUpdater, ParsedLocation } from '@tanstack/router-core'\n\nexport type ScrollRestorationEntry = { scrollX: number; scrollY: number }\n\nexport type ScrollRestorationByElement = Record<string, ScrollRestorationEntry>\n\nexport type ScrollRestorationByKey = Record<string, ScrollRestorationByElement>\n\nexport type ScrollRestorationCache = {\n state: ScrollRestorationByKey\n set: (updater: NonNullableUpdater<ScrollRestorationByKey>) => void\n}\nexport type ScrollRestorationOptions = {\n getKey?: (location: ParsedLocation) => string\n scrollBehavior?: ScrollToOptions['behavior']\n}\n\nexport const storageKey = 'tsr-scroll-restoration-v1_3'\nconst sessionsStorage = typeof window !== 'undefined' && window.sessionStorage\nconst throttle = (fn: (...args: Array<any>) => void, wait: number) => {\n let timeout: any\n return (...args: Array<any>) => {\n if (!timeout) {\n timeout = setTimeout(() => {\n fn(...args)\n timeout = null\n }, wait)\n }\n }\n}\nexport const scrollRestorationCache: ScrollRestorationCache = sessionsStorage\n ? (() => {\n const state: ScrollRestorationByKey =\n JSON.parse(window.sessionStorage.getItem(storageKey) || 'null') || {}\n\n return {\n state,\n // This setter is simply to make sure that we set the sessionStorage right\n // after the state is updated. It doesn't necessarily need to be a functional\n // update.\n set: (updater) => (\n (scrollRestorationCache.state =\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n functionalUpdate(updater, scrollRestorationCache.state) ||\n scrollRestorationCache.state),\n window.sessionStorage.setItem(\n storageKey,\n JSON.stringify(scrollRestorationCache.state),\n )\n ),\n }\n })()\n : (undefined as any)\n/**\n * The default `getKey` function for `useScrollRestoration`.\n * It returns the `key` from the location state or the `href` of the location.\n *\n * The `location.href` is used as a fallback to support the use case where the location state is not available like the initial render.\n */\n\nexport const defaultGetScrollRestorationKey = (location: ParsedLocation) => {\n return location.state.key! || location.href\n}\n\nexport function getCssSelector(el: any): string {\n const path = []\n let parent\n while ((parent = el.parentNode)) {\n path.unshift(\n `${el.tagName}:nth-child(${([].indexOf as any).call(parent.children, el) + 1})`,\n )\n el = parent\n }\n return `${path.join(' > ')}`.toLowerCase()\n}\n\nlet ignoreScroll = false\n\n// NOTE: This function must remain pure and not use any outside variables\n// unless they are passed in as arguments. Why? Because we need to be able to\n// toString() it into a script tag to execute as early as possible in the browser\n// during SSR. Additionally, we also call it from within the router lifecycle\nexport function restoreScroll(\n storageKey: string,\n key?: string,\n behavior?: ScrollToOptions['behavior'],\n shouldScrollRestoration?: boolean,\n) {\n let byKey: ScrollRestorationByKey\n\n try {\n byKey = JSON.parse(sessionStorage.getItem(storageKey) || '{}')\n } catch (error: any) {\n console.error(error)\n return\n }\n\n const resolvedKey = key || window.history.state?.key\n const elementEntries = byKey[resolvedKey]\n\n //\n ignoreScroll = true\n\n //\n ;(() => {\n // If we have a cached entry for this location state,\n // we always need to prefer that over the hash scroll.\n if (shouldScrollRestoration && elementEntries) {\n for (const elementSelector in elementEntries) {\n const entry = elementEntries[elementSelector]!\n if (elementSelector === 'window') {\n window.scrollTo({\n top: entry.scrollY,\n left: entry.scrollX,\n behavior,\n })\n } else if (elementSelector) {\n const element = document.querySelector(elementSelector)\n if (element) {\n element.scrollLeft = entry.scrollX\n element.scrollTop = entry.scrollY\n }\n }\n }\n\n return\n }\n\n // If we don't have a cached entry for the hash,\n // Which means we've never seen this location before,\n // we need to check if there is a hash in the URL.\n // If there is, we need to scroll it's ID into view.\n const hash = window.location.hash.split('#')[1]\n\n if (hash) {\n const hashScrollIntoViewOptions =\n (window.history.state || {}).__hashScrollIntoViewOptions ?? true\n\n if (hashScrollIntoViewOptions) {\n const el = document.getElementById(hash)\n if (el) {\n el.scrollIntoView(hashScrollIntoViewOptions)\n }\n }\n\n return\n }\n\n // If there is no cached entry for the hash and there is no hash in the URL,\n // we need to scroll to the top of the page.\n window.scrollTo({\n top: 0,\n left: 0,\n behavior,\n })\n })()\n\n //\n ignoreScroll = false\n}\n\nexport function setupScrollRestoration(router: AnyRouter, force?: boolean) {\n const shouldScrollRestoration =\n force ?? router.options.scrollRestoration ?? false\n\n if (shouldScrollRestoration) {\n router.isScrollRestoring = true\n }\n\n if (typeof document === 'undefined' || router.isScrollRestorationSetup) {\n return\n }\n\n router.isScrollRestorationSetup = true\n\n //\n ignoreScroll = false\n\n const getKey =\n router.options.getScrollRestorationKey || defaultGetScrollRestorationKey\n\n window.history.scrollRestoration = 'manual'\n\n // // Create a MutationObserver to monitor DOM changes\n // const mutationObserver = new MutationObserver(() => {\n // ;ignoreScroll = true\n // requestAnimationFrame(() => {\n // ;ignoreScroll = false\n\n // // Attempt to restore scroll position on each dom\n // // mutation until the user scrolls. We do this\n // // because dynamic content may come in at different\n // // ticks after the initial render and we want to\n // // keep up with that content as much as possible.\n // // As soon as the user scrolls, we no longer need\n // // to attempt router.\n // // console.log('mutation observer restoreScroll')\n // restoreScroll(\n // storageKey,\n // getKey(router.state.location),\n // router.options.scrollRestorationBehavior,\n // )\n // })\n // })\n\n // const observeDom = () => {\n // // Observe changes to the entire document\n // mutationObserver.observe(document, {\n // childList: true, // Detect added or removed child nodes\n // subtree: true, // Monitor all descendants\n // characterData: true, // Detect text content changes\n // })\n // }\n\n // const unobserveDom = () => {\n // mutationObserver.disconnect()\n // }\n\n // observeDom()\n\n const onScroll = (event: Event) => {\n // unobserveDom()\n\n if (ignoreScroll || !router.isScrollRestoring) {\n return\n }\n\n let elementSelector = ''\n\n if (event.target === document || event.target === window) {\n elementSelector = 'window'\n } else {\n const attrId = (event.target as Element).getAttribute(\n 'data-scroll-restoration-id',\n )\n\n if (attrId) {\n elementSelector = `[data-scroll-restoration-id=\"${attrId}\"]`\n } else {\n elementSelector = getCssSelector(event.target)\n }\n }\n\n const restoreKey = getKey(router.state.location)\n\n scrollRestorationCache.set((state) => {\n const keyEntry = (state[restoreKey] =\n state[restoreKey] || ({} as ScrollRestorationByElement))\n\n const elementEntry = (keyEntry[elementSelector] =\n keyEntry[elementSelector] || ({} as ScrollRestorationEntry))\n\n if (elementSelector === 'window') {\n elementEntry.scrollX = window.scrollX || 0\n elementEntry.scrollY = window.scrollY || 0\n } else if (elementSelector) {\n const element = document.querySelector(elementSelector)\n if (element) {\n elementEntry.scrollX = element.scrollLeft || 0\n elementEntry.scrollY = element.scrollTop || 0\n }\n }\n\n return state\n })\n }\n\n // Throttle the scroll event to avoid excessive updates\n if (typeof document !== 'undefined') {\n document.addEventListener('scroll', throttle(onScroll, 100), true)\n }\n\n router.subscribe('onRendered', (event) => {\n // unobserveDom()\n\n const cacheKey = getKey(event.toLocation)\n\n // If the user doesn't want to restore the scroll position,\n // we don't need to do anything.\n if (!router.resetNextScroll) {\n router.resetNextScroll = true\n return\n }\n\n restoreScroll(\n storageKey,\n cacheKey,\n router.options.scrollRestorationBehavior,\n router.isScrollRestoring,\n )\n\n if (router.isScrollRestoring) {\n // Mark the location as having been seen\n scrollRestorationCache.set((state) => {\n state[cacheKey] = state[cacheKey] || ({} as ScrollRestorationByElement)\n\n return state\n })\n }\n })\n}\n\nexport function ScrollRestoration() {\n const router = useRouter()\n const getKey =\n router.options.getScrollRestorationKey || defaultGetScrollRestorationKey\n const userKey = getKey(router.latestLocation)\n const resolvedKey =\n userKey !== defaultGetScrollRestorationKey(router.latestLocation)\n ? userKey\n : null\n\n if (!router.isScrollRestoring || !router.isServer) {\n return null\n }\n\n return (\n <ScriptOnce\n children={`(${restoreScroll.toString()})(${JSON.stringify(storageKey)},${JSON.stringify(resolvedKey)}, undefined, true)`}\n log={false}\n />\n )\n}\n"],"names":["functionalUpdate","storageKey","useRouter","jsx","ScriptOnce"],"mappings":"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"}
|
|
@@ -1,19 +1,29 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AnyRouter } from './router.cjs';
|
|
2
|
+
import { NonNullableUpdater, ParsedLocation } from '@tanstack/router-core';
|
|
3
|
+
export type ScrollRestorationEntry = {
|
|
4
|
+
scrollX: number;
|
|
5
|
+
scrollY: number;
|
|
6
|
+
};
|
|
7
|
+
export type ScrollRestorationByElement = Record<string, ScrollRestorationEntry>;
|
|
8
|
+
export type ScrollRestorationByKey = Record<string, ScrollRestorationByElement>;
|
|
9
|
+
export type ScrollRestorationCache = {
|
|
10
|
+
state: ScrollRestorationByKey;
|
|
11
|
+
set: (updater: NonNullableUpdater<ScrollRestorationByKey>) => void;
|
|
12
|
+
};
|
|
2
13
|
export type ScrollRestorationOptions = {
|
|
3
14
|
getKey?: (location: ParsedLocation) => string;
|
|
4
15
|
scrollBehavior?: ScrollToOptions['behavior'];
|
|
5
16
|
};
|
|
6
|
-
export declare
|
|
7
|
-
export declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
} | undefined;
|
|
17
|
+
export declare const storageKey = "tsr-scroll-restoration-v1_3";
|
|
18
|
+
export declare const scrollRestorationCache: ScrollRestorationCache;
|
|
19
|
+
/**
|
|
20
|
+
* The default `getKey` function for `useScrollRestoration`.
|
|
21
|
+
* It returns the `key` from the location state or the `href` of the location.
|
|
22
|
+
*
|
|
23
|
+
* The `location.href` is used as a fallback to support the use case where the location state is not available like the initial render.
|
|
24
|
+
*/
|
|
25
|
+
export declare const defaultGetScrollRestorationKey: (location: ParsedLocation) => string;
|
|
26
|
+
export declare function getCssSelector(el: any): string;
|
|
27
|
+
export declare function restoreScroll(storageKey: string, key?: string, behavior?: ScrollToOptions['behavior'], shouldScrollRestoration?: boolean): void;
|
|
28
|
+
export declare function setupScrollRestoration(router: AnyRouter, force?: boolean): void;
|
|
29
|
+
export declare function ScrollRestoration(): import("react/jsx-runtime").JSX.Element | null;
|