@tanstack/react-router 1.98.0 → 1.98.1

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.
Files changed (48) hide show
  1. package/dist/cjs/Match.cjs +60 -22
  2. package/dist/cjs/Match.cjs.map +1 -1
  3. package/dist/cjs/Matches.cjs +4 -1
  4. package/dist/cjs/Matches.cjs.map +1 -1
  5. package/dist/cjs/ScriptOnce.cjs +1 -1
  6. package/dist/cjs/ScriptOnce.cjs.map +1 -1
  7. package/dist/cjs/ScrollRestoration.cjs +39 -0
  8. package/dist/cjs/ScrollRestoration.cjs.map +1 -0
  9. package/dist/cjs/ScrollRestoration.d.cts +15 -0
  10. package/dist/cjs/Transitioner.cjs +3 -33
  11. package/dist/cjs/Transitioner.cjs.map +1 -1
  12. package/dist/cjs/index.cjs +3 -4
  13. package/dist/cjs/index.cjs.map +1 -1
  14. package/dist/cjs/index.d.cts +1 -2
  15. package/dist/cjs/router.cjs +14 -12
  16. package/dist/cjs/router.cjs.map +1 -1
  17. package/dist/cjs/router.d.cts +26 -26
  18. package/dist/cjs/scroll-restoration.cjs +168 -165
  19. package/dist/cjs/scroll-restoration.cjs.map +1 -1
  20. package/dist/cjs/scroll-restoration.d.cts +25 -15
  21. package/dist/esm/Match.js +62 -24
  22. package/dist/esm/Match.js.map +1 -1
  23. package/dist/esm/Matches.js +4 -1
  24. package/dist/esm/Matches.js.map +1 -1
  25. package/dist/esm/ScriptOnce.js +1 -1
  26. package/dist/esm/ScriptOnce.js.map +1 -1
  27. package/dist/esm/ScrollRestoration.d.ts +15 -0
  28. package/dist/esm/ScrollRestoration.js +39 -0
  29. package/dist/esm/ScrollRestoration.js.map +1 -0
  30. package/dist/esm/Transitioner.js +4 -34
  31. package/dist/esm/Transitioner.js.map +1 -1
  32. package/dist/esm/index.d.ts +1 -2
  33. package/dist/esm/index.js +1 -2
  34. package/dist/esm/router.d.ts +26 -26
  35. package/dist/esm/router.js +15 -13
  36. package/dist/esm/router.js.map +1 -1
  37. package/dist/esm/scroll-restoration.d.ts +25 -15
  38. package/dist/esm/scroll-restoration.js +168 -148
  39. package/dist/esm/scroll-restoration.js.map +1 -1
  40. package/package.json +3 -3
  41. package/src/Match.tsx +79 -48
  42. package/src/Matches.tsx +1 -1
  43. package/src/ScriptOnce.tsx +1 -1
  44. package/src/ScrollRestoration.tsx +65 -0
  45. package/src/Transitioner.tsx +4 -40
  46. package/src/index.tsx +1 -3
  47. package/src/router.ts +43 -38
  48. package/src/scroll-restoration.tsx +271 -183
@@ -1,19 +1,29 @@
1
- import { ParsedLocation } from '@tanstack/router-core';
1
+ import { AnyRouter } from './router.js';
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 function useScrollRestoration(options?: ScrollRestorationOptions): void;
7
- export declare function ScrollRestoration(props: ScrollRestorationOptions): null;
8
- export declare function useElementScrollRestoration(options: ({
9
- id: string;
10
- getElement?: () => Element | undefined | null;
11
- } | {
12
- id?: string;
13
- getElement: () => Element | undefined | null;
14
- }) & {
15
- getKey?: (location: ParsedLocation) => string;
16
- }): {
17
- scrollX: number;
18
- scrollY: number;
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;
@@ -1,174 +1,194 @@
1
- import * as React from "react";
1
+ import { jsx } from "react/jsx-runtime";
2
2
  import { functionalUpdate } from "@tanstack/router-core";
3
3
  import { useRouter } from "./useRouter.js";
4
- const useLayoutEffect = typeof window !== "undefined" ? React.useLayoutEffect : React.useEffect;
5
- const windowKey = "window";
6
- const delimiter = "___";
7
- let weakScrolledElements = /* @__PURE__ */ new WeakSet();
4
+ import { ScriptOnce } from "./ScriptOnce.js";
5
+ const storageKey = "tsr-scroll-restoration-v1_3";
8
6
  const sessionsStorage = typeof window !== "undefined" && window.sessionStorage;
9
- const cache = sessionsStorage ? (() => {
10
- const storageKey = "tsr-scroll-restoration-v2";
11
- const state = JSON.parse(
12
- window.sessionStorage.getItem(storageKey) || "null"
13
- ) || { cached: {}, next: {} };
7
+ const throttle = (fn, wait) => {
8
+ let timeout;
9
+ return (...args) => {
10
+ if (!timeout) {
11
+ timeout = setTimeout(() => {
12
+ fn(...args);
13
+ timeout = null;
14
+ }, wait);
15
+ }
16
+ };
17
+ };
18
+ const scrollRestorationCache = sessionsStorage ? (() => {
19
+ const state = JSON.parse(window.sessionStorage.getItem(storageKey) || "null") || {};
14
20
  return {
15
21
  state,
16
- set: (updater) => {
17
- cache.state = functionalUpdate(updater, cache.state);
18
- window.sessionStorage.setItem(storageKey, JSON.stringify(cache.state));
19
- }
22
+ // This setter is simply to make sure that we set the sessionStorage right
23
+ // after the state is updated. It doesn't necessarily need to be a functional
24
+ // update.
25
+ set: (updater) => (scrollRestorationCache.state = // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
26
+ functionalUpdate(updater, scrollRestorationCache.state) || scrollRestorationCache.state, window.sessionStorage.setItem(
27
+ storageKey,
28
+ JSON.stringify(scrollRestorationCache.state)
29
+ ))
20
30
  };
21
31
  })() : void 0;
22
- const defaultGetKey = (location) => {
32
+ const defaultGetScrollRestorationKey = (location) => {
23
33
  return location.state.key || location.href;
24
34
  };
25
- function useScrollRestoration(options) {
26
- const router = useRouter();
27
- useLayoutEffect(() => {
28
- const getKey = (options == null ? void 0 : options.getKey) || defaultGetKey;
29
- const { history } = window;
30
- history.scrollRestoration = "manual";
31
- const onScroll = (event) => {
32
- if (weakScrolledElements.has(event.target)) return;
33
- weakScrolledElements.add(event.target);
34
- let elementSelector = "";
35
- if (event.target === document || event.target === window) {
36
- elementSelector = windowKey;
37
- } else {
38
- const attrId = event.target.getAttribute(
39
- "data-scroll-restoration-id"
40
- );
41
- if (attrId) {
42
- elementSelector = `[data-scroll-restoration-id="${attrId}"]`;
43
- } else {
44
- elementSelector = getCssSelector(event.target);
45
- }
46
- }
47
- if (!cache.state.next[elementSelector]) {
48
- cache.set((c) => ({
49
- ...c,
50
- next: {
51
- ...c.next,
52
- [elementSelector]: {
53
- scrollX: NaN,
54
- scrollY: NaN
55
- }
35
+ function getCssSelector(el) {
36
+ const path = [];
37
+ let parent;
38
+ while (parent = el.parentNode) {
39
+ path.unshift(
40
+ `${el.tagName}:nth-child(${[].indexOf.call(parent.children, el) + 1})`
41
+ );
42
+ el = parent;
43
+ }
44
+ return `${path.join(" > ")}`.toLowerCase();
45
+ }
46
+ let ignoreScroll = false;
47
+ function restoreScroll(storageKey2, key, behavior, shouldScrollRestoration) {
48
+ var _a;
49
+ let byKey;
50
+ try {
51
+ byKey = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
52
+ } catch (error) {
53
+ console.error(error);
54
+ return;
55
+ }
56
+ const resolvedKey = key || ((_a = window.history.state) == null ? void 0 : _a.key);
57
+ const elementEntries = byKey[resolvedKey];
58
+ ignoreScroll = true;
59
+ (() => {
60
+ if (shouldScrollRestoration && elementEntries) {
61
+ for (const elementSelector in elementEntries) {
62
+ const entry = elementEntries[elementSelector];
63
+ if (elementSelector === "window") {
64
+ console.log("windowRestored", entry);
65
+ window.scrollTo({
66
+ top: entry.scrollY,
67
+ left: entry.scrollX,
68
+ behavior
69
+ });
70
+ } else if (elementSelector) {
71
+ const element = document.querySelector(elementSelector);
72
+ if (element) {
73
+ element.scrollLeft = entry.scrollX;
74
+ element.scrollTop = entry.scrollY;
56
75
  }
57
- }));
76
+ }
58
77
  }
59
- };
60
- if (typeof document !== "undefined") {
61
- document.addEventListener("scroll", onScroll, true);
78
+ return;
62
79
  }
63
- const unsubOnBeforeLoad = router.subscribe("onBeforeLoad", (event) => {
64
- if (event.hrefChanged) {
65
- const restoreKey = getKey(event.fromLocation);
66
- for (const elementSelector in cache.state.next) {
67
- const entry = cache.state.next[elementSelector];
68
- if (elementSelector === windowKey) {
69
- entry.scrollX = window.scrollX || 0;
70
- entry.scrollY = window.scrollY || 0;
71
- } else if (elementSelector) {
72
- const element = document.querySelector(elementSelector);
73
- entry.scrollX = (element == null ? void 0 : element.scrollLeft) || 0;
74
- entry.scrollY = (element == null ? void 0 : element.scrollTop) || 0;
75
- }
76
- cache.set((c) => {
77
- const next = { ...c.next };
78
- delete next[elementSelector];
79
- return {
80
- ...c,
81
- next,
82
- cached: {
83
- ...c.cached,
84
- [[restoreKey, elementSelector].join(delimiter)]: entry
85
- }
86
- };
87
- });
80
+ const hash = window.location.hash.split("#")[1];
81
+ if (hash) {
82
+ const hashScrollIntoViewOptions = (window.history.state || {}).__hashScrollIntoViewOptions ?? true;
83
+ if (hashScrollIntoViewOptions) {
84
+ console.log("scrollIntoView");
85
+ const el = document.getElementById(hash);
86
+ if (el) {
87
+ el.scrollIntoView(hashScrollIntoViewOptions);
88
88
  }
89
89
  }
90
+ return;
91
+ }
92
+ window.scrollTo({
93
+ top: 0,
94
+ left: 0,
95
+ behavior
90
96
  });
91
- const unsubOnBeforeRouteMount = router.subscribe(
92
- "onBeforeRouteMount",
93
- (event) => {
94
- if (event.hrefChanged) {
95
- if (!router.resetNextScroll) {
96
- return;
97
- }
98
- router.resetNextScroll = true;
99
- const restoreKey = getKey(event.toLocation);
100
- let windowRestored = false;
101
- for (const cacheKey in cache.state.cached) {
102
- const entry = cache.state.cached[cacheKey];
103
- const [key, elementSelector] = cacheKey.split(delimiter);
104
- if (key === restoreKey) {
105
- if (elementSelector === windowKey) {
106
- windowRestored = true;
107
- window.scrollTo({
108
- top: entry.scrollY,
109
- left: entry.scrollX,
110
- behavior: options == null ? void 0 : options.scrollBehavior
111
- });
112
- } else if (elementSelector) {
113
- const element = document.querySelector(elementSelector);
114
- if (element) {
115
- element.scrollLeft = entry.scrollX;
116
- element.scrollTop = entry.scrollY;
117
- }
118
- }
119
- }
120
- }
121
- if (!windowRestored) {
122
- window.scrollTo(0, 0);
123
- }
124
- cache.set((c) => ({ ...c, next: {} }));
125
- weakScrolledElements = /* @__PURE__ */ new WeakSet();
126
- }
127
- }
128
- );
129
- return () => {
130
- document.removeEventListener("scroll", onScroll);
131
- unsubOnBeforeLoad();
132
- unsubOnBeforeRouteMount();
133
- };
134
- }, [options == null ? void 0 : options.getKey, options == null ? void 0 : options.scrollBehavior, router]);
135
- }
136
- function ScrollRestoration(props) {
137
- useScrollRestoration(props);
138
- return null;
97
+ })();
98
+ ignoreScroll = false;
139
99
  }
140
- function useElementScrollRestoration(options) {
141
- var _a;
142
- const router = useRouter();
143
- const getKey = options.getKey || defaultGetKey;
144
- let elementSelector = "";
145
- if (options.id) {
146
- elementSelector = `[data-scroll-restoration-id="${options.id}"]`;
147
- } else {
148
- const element = (_a = options.getElement) == null ? void 0 : _a.call(options);
149
- if (!element) {
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) {
150
114
  return;
151
115
  }
152
- elementSelector = getCssSelector(element);
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);
153
148
  }
154
- const restoreKey = getKey(router.latestLocation);
155
- const cacheKey = [restoreKey, elementSelector].join(delimiter);
156
- return cache.state.cached[cacheKey];
157
- }
158
- function getCssSelector(el) {
159
- const path = [];
160
- let parent;
161
- while (parent = el.parentNode) {
162
- path.unshift(
163
- `${el.tagName}:nth-child(${[].indexOf.call(parent.children, el) + 1})`
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
164
160
  );
165
- el = parent;
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();
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;
166
176
  }
167
- return `${path.join(" > ")}`.toLowerCase();
177
+ return /* @__PURE__ */ jsx(
178
+ ScriptOnce,
179
+ {
180
+ children: `(${restoreScroll.toString()})(${JSON.stringify(storageKey)},${JSON.stringify(resolvedKey)}, undefined, true)`,
181
+ log: false
182
+ }
183
+ );
168
184
  }
169
185
  export {
170
186
  ScrollRestoration,
171
- useElementScrollRestoration,
172
- useScrollRestoration
187
+ defaultGetScrollRestorationKey,
188
+ getCssSelector,
189
+ restoreScroll,
190
+ scrollRestorationCache,
191
+ setupScrollRestoration,
192
+ storageKey
173
193
  };
174
194
  //# sourceMappingURL=scroll-restoration.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"scroll-restoration.js","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":[],"mappings":"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"}
1
+ {"version":3,"file":"scroll-restoration.js","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 console.log('windowRestored', entry)\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 console.log('scrollIntoView')\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":["storageKey"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-router",
3
- "version": "1.98.0",
3
+ "version": "1.98.1",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -53,8 +53,8 @@
53
53
  "jsesc": "^3.1.0",
54
54
  "tiny-invariant": "^1.3.3",
55
55
  "tiny-warning": "^1.0.3",
56
- "@tanstack/history": "1.98.0",
57
- "@tanstack/router-core": "^1.98.0"
56
+ "@tanstack/history": "1.98.1",
57
+ "@tanstack/router-core": "^1.98.1"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@testing-library/jest-dom": "^6.6.3",
package/src/Match.tsx CHANGED
@@ -5,6 +5,7 @@ import invariant from 'tiny-invariant'
5
5
  import warning from 'tiny-warning'
6
6
  import {
7
7
  createControlledPromise,
8
+ getLocationChangeInfo,
8
9
  pick,
9
10
  rootRouteId,
10
11
  } from '@tanstack/router-core'
@@ -16,6 +17,8 @@ import { isRedirect } from './redirects'
16
17
  import { matchContext } from './matchContext'
17
18
  import { SafeFragment } from './SafeFragment'
18
19
  import { renderRouteNotFound } from './renderRouteNotFound'
20
+ import { ScrollRestoration } from './scroll-restoration'
21
+ import type { ParsedLocation } from '@tanstack/router-core'
19
22
  import type { AnyRoute } from './route'
20
23
 
21
24
  export const Match = React.memo(function MatchImpl({
@@ -72,41 +75,88 @@ export const Match = React.memo(function MatchImpl({
72
75
  select: (s) => s.loadedAt,
73
76
  })
74
77
 
78
+ const parentRouteId = useRouterState({
79
+ select: (s) => {
80
+ const index = s.matches.findIndex((d) => d.id === matchId)
81
+ return s.matches[index - 1]?.routeId as string
82
+ },
83
+ })
84
+
75
85
  return (
76
- <matchContext.Provider value={matchId}>
77
- <ResolvedSuspenseBoundary fallback={pendingElement}>
78
- <ResolvedCatchBoundary
79
- getResetKey={() => resetKey}
80
- errorComponent={routeErrorComponent || ErrorComponent}
81
- onCatch={(error, errorInfo) => {
82
- // Forward not found errors (we don't want to show the error component for these)
83
- if (isNotFound(error)) throw error
84
- warning(false, `Error in route match: ${matchId}`)
85
- routeOnCatch?.(error, errorInfo)
86
- }}
87
- >
88
- <ResolvedNotFoundBoundary
89
- fallback={(error) => {
90
- // If the current not found handler doesn't exist or it has a
91
- // route ID which doesn't match the current route, rethrow the error
92
- if (
93
- !routeNotFoundComponent ||
94
- (error.routeId && error.routeId !== routeId) ||
95
- (!error.routeId && !route.isRoot)
96
- )
97
- throw error
98
-
99
- return React.createElement(routeNotFoundComponent, error as any)
86
+ <>
87
+ <matchContext.Provider value={matchId}>
88
+ <ResolvedSuspenseBoundary fallback={pendingElement}>
89
+ <ResolvedCatchBoundary
90
+ getResetKey={() => resetKey}
91
+ errorComponent={routeErrorComponent || ErrorComponent}
92
+ onCatch={(error, errorInfo) => {
93
+ // Forward not found errors (we don't want to show the error component for these)
94
+ if (isNotFound(error)) throw error
95
+ warning(false, `Error in route match: ${matchId}`)
96
+ routeOnCatch?.(error, errorInfo)
100
97
  }}
101
98
  >
102
- <MatchInner matchId={matchId} />
103
- </ResolvedNotFoundBoundary>
104
- </ResolvedCatchBoundary>
105
- </ResolvedSuspenseBoundary>
106
- </matchContext.Provider>
99
+ <ResolvedNotFoundBoundary
100
+ fallback={(error) => {
101
+ // If the current not found handler doesn't exist or it has a
102
+ // route ID which doesn't match the current route, rethrow the error
103
+ if (
104
+ !routeNotFoundComponent ||
105
+ (error.routeId && error.routeId !== routeId) ||
106
+ (!error.routeId && !route.isRoot)
107
+ )
108
+ throw error
109
+
110
+ return React.createElement(routeNotFoundComponent, error as any)
111
+ }}
112
+ >
113
+ <MatchInner matchId={matchId} />
114
+ </ResolvedNotFoundBoundary>
115
+ </ResolvedCatchBoundary>
116
+ </ResolvedSuspenseBoundary>
117
+ </matchContext.Provider>
118
+ {parentRouteId === rootRouteId ? (
119
+ <>
120
+ <OnRendered />
121
+ <ScrollRestoration />
122
+ </>
123
+ ) : null}
124
+ </>
107
125
  )
108
126
  })
109
127
 
128
+ // On Rendered can't happen above the root layout because it actually
129
+ // renders a dummy dom element to track the rendered state of the app.
130
+ // We render a script tag with a key that changes based on the current
131
+ // location state.key. Also, because it's below the root layout, it
132
+ // allows us to fire onRendered events even after a hydration mismatch
133
+ // error that occurred above the root layout (like bad head/link tags,
134
+ // which is common).
135
+ function OnRendered() {
136
+ const router = useRouter()
137
+
138
+ const prevLocationRef = React.useRef<undefined | ParsedLocation<{}>>(
139
+ undefined,
140
+ )
141
+
142
+ return (
143
+ <script
144
+ key={router.state.resolvedLocation?.state.key}
145
+ suppressHydrationWarning
146
+ ref={(el) => {
147
+ if (el) {
148
+ router.emit({
149
+ type: 'onRendered',
150
+ ...getLocationChangeInfo(router.state),
151
+ })
152
+ } else {
153
+ prevLocationRef.current = router.state.resolvedLocation
154
+ }
155
+ }}
156
+ />
157
+ )
158
+ }
159
+
110
160
  export const MatchInner = React.memo(function MatchInnerImpl({
111
161
  matchId,
112
162
  }: {
@@ -150,25 +200,6 @@ export const MatchInner = React.memo(function MatchInnerImpl({
150
200
  return <Outlet />
151
201
  }, [key, route.options.component, router.options.defaultComponent])
152
202
 
153
- // function useChangedDiff(value: any) {
154
- // const ref = React.useRef(value)
155
- // const changed = ref.current !== value
156
- // if (changed) {
157
- // console.log(
158
- // 'Changed:',
159
- // value,
160
- // Object.fromEntries(
161
- // Object.entries(value).filter(
162
- // ([key, val]) => val !== ref.current[key],
163
- // ),
164
- // ),
165
- // )
166
- // }
167
- // ref.current = value
168
- // }
169
-
170
- // useChangedDiff(match)
171
-
172
203
  const RouteErrorComponent =
173
204
  (route.options.errorComponent ?? router.options.defaultErrorComponent) ||
174
205
  ErrorComponent
package/src/Matches.tsx CHANGED
@@ -199,7 +199,7 @@ export function useMatchRoute<TRouter extends AnyRouter = RegisteredRouter>() {
199
199
  const router = useRouter()
200
200
 
201
201
  useRouterState({
202
- select: (s) => [s.location.href, s.resolvedLocation.href, s.status],
202
+ select: (s) => [s.location.href, s.resolvedLocation?.href, s.status],
203
203
  structuralSharing: true as any,
204
204
  })
205
205
 
@@ -22,7 +22,7 @@ export function ScriptOnce({
22
22
  ? `console.info(\`Injected From Server:
23
23
  ${jsesc(children.toString(), { quotes: 'backtick' })}\`)`
24
24
  : '',
25
- 'if (typeof __TSR__ !== "undefined") __TSR__.cleanScripts()',
25
+ 'if (typeof __TSR_SSR__ !== "undefined") __TSR_SSR__.cleanScripts()',
26
26
  ]
27
27
  .filter(Boolean)
28
28
  .join('\n'),