@octanejs/tanstack-router 0.1.52 → 0.1.53
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/package.json +3 -3
- package/src/useStore.ts +25 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/tanstack-router",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.53",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -62,12 +62,12 @@
|
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@tanstack/react-router": "1.170.18",
|
|
65
|
-
"@tsrx/react": "^0.2.
|
|
65
|
+
"@tsrx/react": "^0.2.67",
|
|
66
66
|
"esbuild": "^0.28.1",
|
|
67
67
|
"react": "^19.2.7",
|
|
68
68
|
"react-dom": "^19.2.7",
|
|
69
69
|
"vitest": "^4.1.10",
|
|
70
|
-
"octane": "0.2.
|
|
70
|
+
"octane": "0.2.4"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"test": "vitest run"
|
package/src/useStore.ts
CHANGED
|
@@ -45,21 +45,35 @@ export function useStore(...args: any[]): any {
|
|
|
45
45
|
subSlot(slot, 'us:cb'),
|
|
46
46
|
);
|
|
47
47
|
|
|
48
|
-
//
|
|
49
|
-
//
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
// A cached snapshot belongs to its atom, selector, and comparator as well as
|
|
49
|
+
// its input. Route parameters captured by a new selector must be re-evaluated
|
|
50
|
+
// even when the atom has already published the current match-id list.
|
|
51
|
+
// Structurally-equal output keeps its previous reference so
|
|
52
|
+
// useSyncExternalStore does not loop on allocating selectors.
|
|
53
|
+
const cache = useRef<{
|
|
54
|
+
atom: Atom<unknown>;
|
|
55
|
+
in: unknown;
|
|
56
|
+
selector: typeof selector;
|
|
57
|
+
compare: typeof compare;
|
|
58
|
+
out: unknown;
|
|
59
|
+
} | null>(null, subSlot(slot, 'us:cache'));
|
|
60
|
+
function getSnapshot(): unknown {
|
|
52
61
|
const input = atom.get();
|
|
53
62
|
const prev = cache.current;
|
|
54
|
-
if (
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
63
|
+
if (
|
|
64
|
+
prev &&
|
|
65
|
+
prev.atom === atom &&
|
|
66
|
+
prev.selector === selector &&
|
|
67
|
+
prev.compare === compare &&
|
|
68
|
+
Object.is(prev.in, input)
|
|
69
|
+
) {
|
|
58
70
|
return prev.out;
|
|
59
71
|
}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
72
|
+
const next = selector(input);
|
|
73
|
+
const out = prev && compare(prev.out, next) ? prev.out : next;
|
|
74
|
+
cache.current = { atom, in: input, selector, compare, out };
|
|
75
|
+
return out;
|
|
76
|
+
}
|
|
63
77
|
|
|
64
78
|
return useSyncExternalStore(subscribe, getSnapshot, getSnapshot, subSlot(slot, 'us:uses'));
|
|
65
79
|
}
|