wenay-react2 1.0.30 → 1.0.32
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/README.md
CHANGED
|
@@ -4,8 +4,8 @@ Common React UI primitives for wenay apps.
|
|
|
4
4
|
|
|
5
5
|
Use the new concise API guide first:
|
|
6
6
|
|
|
7
|
-
- [wenay-react2.md](
|
|
8
|
-
- [wenay-react2-rare.md](
|
|
7
|
+
- [wenay-react2.md](doc/wenay-react2.md) - canonical everyday API.
|
|
8
|
+
- [wenay-react2-rare.md](doc/wenay-react2-rare.md) - old names, low-level exports, migration notes.
|
|
9
9
|
- [agGrid4 README](./src/common/src/grid/agGrid4/README.md) - table buffer/controller details.
|
|
10
10
|
- [agGrid4 wrapper boundary](./src/common/src/grid/agGrid4/WRAPPER.md) - where generic primitives end and app wrappers begin.
|
|
11
11
|
|
|
@@ -55,4 +55,4 @@ The stand source is `src/common/testUseReact/qa.tsx`. Use it for visual checks a
|
|
|
55
55
|
|
|
56
56
|
```sh
|
|
57
57
|
npm run build
|
|
58
|
-
```
|
|
58
|
+
```
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { ObserveAll2, Replay } from "wenay-common2";
|
|
2
|
+
type StorePatch = ObserveAll2.StorePatch;
|
|
3
|
+
type ReplayEvent<Z extends any[]> = Replay.ReplayEvent<Z>;
|
|
4
|
+
type ReplayRemote<Z extends any[]> = Replay.ReplayRemote<Z>;
|
|
5
|
+
export type UseReplaySubscribeOptions = {
|
|
6
|
+
/** Start position for the first subscription: journal tail after this seq; omit = keyframe. */
|
|
7
|
+
since?: number;
|
|
8
|
+
/** Keep the last seen seq across resubscribes (remount/restart) and reconnect with the tail. Default true. */
|
|
9
|
+
keepSeq?: boolean;
|
|
10
|
+
/** false = do not subscribe (and drop the current subscription). Default true. */
|
|
11
|
+
enabled?: boolean;
|
|
12
|
+
onSeq?: (seq: number) => void;
|
|
13
|
+
onError?: (e: unknown) => void;
|
|
14
|
+
};
|
|
15
|
+
export type ReplaySubscribeController = {
|
|
16
|
+
/** Keyframe/tail catch-up finished, events are live from here. */
|
|
17
|
+
readonly ready: boolean;
|
|
18
|
+
readonly error: unknown;
|
|
19
|
+
/** Last seen seq (reconnect point). Getter — reading it does not re-render. */
|
|
20
|
+
seq(): number;
|
|
21
|
+
/** Drop and re-create the subscription. since omitted = continue by keepSeq rules; a number = explicit position. */
|
|
22
|
+
restart(since?: number): void;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Subscribe to a replay line (`Replay.exposeReplay` shape: {line, since, keyframe}).
|
|
26
|
+
* The delivery contract of the line is preserved as is: cb first receives the snapshot
|
|
27
|
+
* (keyframe as a normal event), then strictly-newer events, seq-ascending, deduped.
|
|
28
|
+
* cb goes through a ref — a new cb identity does not resubscribe.
|
|
29
|
+
*/
|
|
30
|
+
export declare function useReplaySubscribe<Z extends any[]>(remote: ReplayRemote<Z> | null | undefined, cb: (...event: Z) => void, options?: UseReplaySubscribeOptions): ReplaySubscribeController;
|
|
31
|
+
export type UseStoreReplaySyncOptions = UseReplaySubscribeOptions;
|
|
32
|
+
export type StoreReplaySyncController = ReplaySubscribeController;
|
|
33
|
+
/**
|
|
34
|
+
* Sync an existing mirror store from a store replay line (`ObserveAll2.exposeStoreReplay(...).api.replay`).
|
|
35
|
+
* Thin lifecycle wrapper over `ObserveAll2.syncStoreReplay`: the keyframe (root patch) and the
|
|
36
|
+
* patch tail are applied to the store by the library; UI subscribes to the store as usual
|
|
37
|
+
* (useStoreNode/useStoreSelect).
|
|
38
|
+
*/
|
|
39
|
+
export declare function useStoreReplaySync<T extends object>(store: ObserveAll2.Store<T> | null | undefined, remote: ReplayRemote<[StorePatch]> | null | undefined, options?: UseStoreReplaySyncOptions): StoreReplaySyncController;
|
|
40
|
+
export type StoreReplayMirrorController<T extends object> = StoreReplaySyncController & {
|
|
41
|
+
readonly store: ObserveAll2.Store<T>;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Convenience: create a local mirror store and keep it synced from a store replay line.
|
|
45
|
+
* The store lives in a ref — a component remount keeps both the state and the seq,
|
|
46
|
+
* so reconnect is a journal tail, not a keyframe. A new `remote` recreates the store.
|
|
47
|
+
*/
|
|
48
|
+
export declare function useStoreReplayMirror<T extends object>(remote: ReplayRemote<[StorePatch]> | null | undefined, initial: T, options?: UseStoreReplaySyncOptions): StoreReplayMirrorController<T>;
|
|
49
|
+
export type ReplayHistoryLike<Z extends any[]> = {
|
|
50
|
+
at(where?: {
|
|
51
|
+
seq?: number;
|
|
52
|
+
ts?: number;
|
|
53
|
+
}): ReplayEvent<Z>[] | undefined;
|
|
54
|
+
subscribe(cb: (...event: Z) => void, opts?: {
|
|
55
|
+
since?: number;
|
|
56
|
+
ts?: number;
|
|
57
|
+
onSeq?: (seq: number) => void;
|
|
58
|
+
}): (() => void) & {
|
|
59
|
+
seq: () => number;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
export type UseReplayHistoryOptions = {
|
|
63
|
+
/** Live head seq getter (slider max), e.g. `() => replay.head()`. Without it head = max seen seq. */
|
|
64
|
+
head?: () => number;
|
|
65
|
+
/** Called before folding a seek (clear consumer state). Usually not needed: a keyframe fully redefines the state. */
|
|
66
|
+
reset?: () => void;
|
|
67
|
+
/** UI position/head refresh period while live, ms. Default 300. */
|
|
68
|
+
tickMs?: number;
|
|
69
|
+
/** Follow live on mount. Default true. */
|
|
70
|
+
autoPlay?: boolean;
|
|
71
|
+
};
|
|
72
|
+
export type ReplayHistoryController = {
|
|
73
|
+
/** true = following live (archive tail -> live handover), false = paused/seeked. */
|
|
74
|
+
readonly live: boolean;
|
|
75
|
+
/** Current playback position (UI state; refreshed every tickMs while live). */
|
|
76
|
+
readonly seq: number;
|
|
77
|
+
/** Last known head seq (slider max). */
|
|
78
|
+
readonly head: number;
|
|
79
|
+
pause(): void;
|
|
80
|
+
/** Resume from the current position: journal/archive tail, then live. */
|
|
81
|
+
play(): void;
|
|
82
|
+
/** Pause and jump: fold keyframe + events up to the position through `apply`. */
|
|
83
|
+
seek(where: {
|
|
84
|
+
seq?: number;
|
|
85
|
+
ts?: number;
|
|
86
|
+
}): void;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Time machine over `Replay.openHistory(storage, live?)`: scrubber/pause/resume for any replay line.
|
|
90
|
+
* `apply` folds ONE event into the consumer state (draw a frame, apply a store patch, ...) —
|
|
91
|
+
* the same fold works for live playback and for seeks, snapshot is not a special case.
|
|
92
|
+
*/
|
|
93
|
+
export declare function useReplayHistory<Z extends any[]>(history: ReplayHistoryLike<Z> | null | undefined, apply: (...event: Z) => void, options?: UseReplayHistoryOptions): ReplayHistoryController;
|
|
94
|
+
export {};
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
2
|
+
import { ObserveAll2, Replay } from "wenay-common2";
|
|
3
|
+
/**
|
|
4
|
+
* React bridge over the Replay stack (snapshot + sequenced delta line) of wenay-common2.
|
|
5
|
+
*
|
|
6
|
+
* The lifecycle rules these hooks encapsulate:
|
|
7
|
+
* - off() on unmount, subscription never outlives the component (StrictMode double-effect safe);
|
|
8
|
+
* - seq survives resubscribes within a mounted component (StrictMode double-effect, restart(),
|
|
9
|
+
* enabled toggling): the resubscribe reconnects with {since: lastSeq} and receives the journal
|
|
10
|
+
* tail instead of a full keyframe — as long as the folded state itself lives outside the effect
|
|
11
|
+
* (ref/store/canvas). If the consumer state resets on resubscribe, pass {keepSeq: false};
|
|
12
|
+
* - a FULL unmount loses the hook's refs: to reconnect by tail after a remount, keep the position
|
|
13
|
+
* outside via onSeq and pass it back as `since` (see the QA card for the pattern);
|
|
14
|
+
* - a different `remote` identity always starts from scratch (seq from another line is meaningless).
|
|
15
|
+
*
|
|
16
|
+
* Server-side parts of the stack (conflateReplay, archiveReplay) are per-connection/per-process
|
|
17
|
+
* and intentionally have no hooks here.
|
|
18
|
+
*/
|
|
19
|
+
function useLatestRef(value) {
|
|
20
|
+
const ref = useRef(value);
|
|
21
|
+
ref.current = value;
|
|
22
|
+
return ref;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Subscribe to a replay line (`Replay.exposeReplay` shape: {line, since, keyframe}).
|
|
26
|
+
* The delivery contract of the line is preserved as is: cb first receives the snapshot
|
|
27
|
+
* (keyframe as a normal event), then strictly-newer events, seq-ascending, deduped.
|
|
28
|
+
* cb goes through a ref — a new cb identity does not resubscribe.
|
|
29
|
+
*/
|
|
30
|
+
export function useReplaySubscribe(remote, cb, options = {}) {
|
|
31
|
+
const { since, keepSeq = true, enabled = true, onSeq, onError } = options;
|
|
32
|
+
const cbRef = useLatestRef(cb);
|
|
33
|
+
const hooksRef = useLatestRef({ onSeq, onError });
|
|
34
|
+
const seqRef = useRef(since);
|
|
35
|
+
const subRef = useRef(null);
|
|
36
|
+
const lastRemoteRef = useRef(undefined);
|
|
37
|
+
const [ready, setReady] = useState(false);
|
|
38
|
+
const [error, setError] = useState(null);
|
|
39
|
+
const [epoch, setEpoch] = useState(0);
|
|
40
|
+
useEffect(() => {
|
|
41
|
+
if (!remote || !enabled)
|
|
42
|
+
return;
|
|
43
|
+
if (lastRemoteRef.current !== undefined && lastRemoteRef.current !== remote)
|
|
44
|
+
seqRef.current = undefined; // a different line — old seq is meaningless
|
|
45
|
+
lastRemoteRef.current = remote;
|
|
46
|
+
let alive = true;
|
|
47
|
+
setReady(false);
|
|
48
|
+
setError(null);
|
|
49
|
+
const off = Replay.replaySubscribe(remote, (...event) => cbRef.current(...event), {
|
|
50
|
+
since: seqRef.current,
|
|
51
|
+
onSeq: seq => {
|
|
52
|
+
seqRef.current = seq;
|
|
53
|
+
hooksRef.current.onSeq?.(seq);
|
|
54
|
+
},
|
|
55
|
+
onError: e => {
|
|
56
|
+
if (alive)
|
|
57
|
+
setError(e);
|
|
58
|
+
hooksRef.current.onError?.(e);
|
|
59
|
+
},
|
|
60
|
+
});
|
|
61
|
+
subRef.current = off;
|
|
62
|
+
off.ready.then(() => { if (alive)
|
|
63
|
+
setReady(true); }, e => { if (alive)
|
|
64
|
+
setError(e); });
|
|
65
|
+
return () => {
|
|
66
|
+
alive = false;
|
|
67
|
+
subRef.current = null;
|
|
68
|
+
off();
|
|
69
|
+
if (!keepSeq)
|
|
70
|
+
seqRef.current = since;
|
|
71
|
+
};
|
|
72
|
+
// keepSeq/since are start-position config, not subscription identity — no resubscribe on change
|
|
73
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
74
|
+
}, [remote, enabled, epoch]);
|
|
75
|
+
const seq = useCallback(() => subRef.current?.seq() ?? seqRef.current ?? -1, []);
|
|
76
|
+
const restart = useCallback((at) => {
|
|
77
|
+
if (at !== undefined)
|
|
78
|
+
seqRef.current = at;
|
|
79
|
+
setEpoch(v => v + 1);
|
|
80
|
+
}, []);
|
|
81
|
+
return useMemo(() => ({ ready, error, seq, restart }), [ready, error, seq, restart]);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Sync an existing mirror store from a store replay line (`ObserveAll2.exposeStoreReplay(...).api.replay`).
|
|
85
|
+
* Thin lifecycle wrapper over `ObserveAll2.syncStoreReplay`: the keyframe (root patch) and the
|
|
86
|
+
* patch tail are applied to the store by the library; UI subscribes to the store as usual
|
|
87
|
+
* (useStoreNode/useStoreSelect).
|
|
88
|
+
*/
|
|
89
|
+
export function useStoreReplaySync(store, remote, options = {}) {
|
|
90
|
+
const { since, keepSeq = true, enabled = true, onSeq, onError } = options;
|
|
91
|
+
const hooksRef = useLatestRef({ onSeq, onError });
|
|
92
|
+
const seqRef = useRef(since);
|
|
93
|
+
const subRef = useRef(null);
|
|
94
|
+
const lastRemoteRef = useRef(undefined);
|
|
95
|
+
const [ready, setReady] = useState(false);
|
|
96
|
+
const [error, setError] = useState(null);
|
|
97
|
+
const [epoch, setEpoch] = useState(0);
|
|
98
|
+
useEffect(() => {
|
|
99
|
+
if (!store || !remote || !enabled)
|
|
100
|
+
return;
|
|
101
|
+
if (lastRemoteRef.current !== undefined && lastRemoteRef.current !== remote)
|
|
102
|
+
seqRef.current = undefined;
|
|
103
|
+
lastRemoteRef.current = remote;
|
|
104
|
+
let alive = true;
|
|
105
|
+
setReady(false);
|
|
106
|
+
setError(null);
|
|
107
|
+
const off = ObserveAll2.syncStoreReplay(store, remote, {
|
|
108
|
+
since: seqRef.current,
|
|
109
|
+
onSeq: seq => {
|
|
110
|
+
seqRef.current = seq;
|
|
111
|
+
hooksRef.current.onSeq?.(seq);
|
|
112
|
+
},
|
|
113
|
+
onError: e => {
|
|
114
|
+
if (alive)
|
|
115
|
+
setError(e);
|
|
116
|
+
hooksRef.current.onError?.(e);
|
|
117
|
+
},
|
|
118
|
+
});
|
|
119
|
+
subRef.current = off;
|
|
120
|
+
off.ready.then(() => { if (alive)
|
|
121
|
+
setReady(true); }, e => { if (alive)
|
|
122
|
+
setError(e); });
|
|
123
|
+
return () => {
|
|
124
|
+
alive = false;
|
|
125
|
+
subRef.current = null;
|
|
126
|
+
off();
|
|
127
|
+
if (!keepSeq)
|
|
128
|
+
seqRef.current = since;
|
|
129
|
+
};
|
|
130
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
131
|
+
}, [store, remote, enabled, epoch]);
|
|
132
|
+
const seq = useCallback(() => subRef.current?.seq() ?? seqRef.current ?? -1, []);
|
|
133
|
+
const restart = useCallback((at) => {
|
|
134
|
+
if (at !== undefined)
|
|
135
|
+
seqRef.current = at;
|
|
136
|
+
setEpoch(v => v + 1);
|
|
137
|
+
}, []);
|
|
138
|
+
return useMemo(() => ({ ready, error, seq, restart }), [ready, error, seq, restart]);
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Convenience: create a local mirror store and keep it synced from a store replay line.
|
|
142
|
+
* The store lives in a ref — a component remount keeps both the state and the seq,
|
|
143
|
+
* so reconnect is a journal tail, not a keyframe. A new `remote` recreates the store.
|
|
144
|
+
*/
|
|
145
|
+
export function useStoreReplayMirror(remote, initial, options = {}) {
|
|
146
|
+
const storeRef = useRef(null);
|
|
147
|
+
if (!storeRef.current || storeRef.current.remote !== remote) {
|
|
148
|
+
storeRef.current = { remote, store: ObserveAll2.createStore(initial) };
|
|
149
|
+
}
|
|
150
|
+
const store = storeRef.current.store;
|
|
151
|
+
const sync = useStoreReplaySync(store, remote, options);
|
|
152
|
+
return useMemo(() => ({ ...sync, store }), [sync, store]);
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* Time machine over `Replay.openHistory(storage, live?)`: scrubber/pause/resume for any replay line.
|
|
156
|
+
* `apply` folds ONE event into the consumer state (draw a frame, apply a store patch, ...) —
|
|
157
|
+
* the same fold works for live playback and for seeks, snapshot is not a special case.
|
|
158
|
+
*/
|
|
159
|
+
export function useReplayHistory(history, apply, options = {}) {
|
|
160
|
+
const { head: headGetter, reset, tickMs = 300, autoPlay = true } = options;
|
|
161
|
+
const applyRef = useLatestRef(apply);
|
|
162
|
+
const resetRef = useLatestRef(reset);
|
|
163
|
+
const headRef = useLatestRef(headGetter);
|
|
164
|
+
const posRef = useRef(-1);
|
|
165
|
+
const killRef = useRef(null);
|
|
166
|
+
const [live, setLive] = useState(autoPlay);
|
|
167
|
+
const [pos, setPos] = useState(-1);
|
|
168
|
+
const [head, setHead] = useState(-1);
|
|
169
|
+
const readHead = useCallback(() => {
|
|
170
|
+
const h = headRef.current ? headRef.current() : -1;
|
|
171
|
+
return Math.max(h, posRef.current);
|
|
172
|
+
}, [headRef]);
|
|
173
|
+
useEffect(() => {
|
|
174
|
+
if (!history || !live)
|
|
175
|
+
return;
|
|
176
|
+
const off = history.subscribe((...event) => applyRef.current(...event), {
|
|
177
|
+
since: posRef.current >= 0 ? posRef.current : undefined,
|
|
178
|
+
onSeq: seq => { posRef.current = seq; },
|
|
179
|
+
});
|
|
180
|
+
let done = false;
|
|
181
|
+
killRef.current = () => {
|
|
182
|
+
if (done)
|
|
183
|
+
return;
|
|
184
|
+
done = true;
|
|
185
|
+
off();
|
|
186
|
+
};
|
|
187
|
+
const timer = setInterval(() => {
|
|
188
|
+
setPos(posRef.current);
|
|
189
|
+
setHead(readHead());
|
|
190
|
+
}, tickMs);
|
|
191
|
+
return () => {
|
|
192
|
+
clearInterval(timer);
|
|
193
|
+
killRef.current?.();
|
|
194
|
+
killRef.current = null;
|
|
195
|
+
};
|
|
196
|
+
}, [history, live, tickMs, applyRef, readHead]);
|
|
197
|
+
const pause = useCallback(() => {
|
|
198
|
+
killRef.current?.(); // stop deliveries immediately, not on the next render
|
|
199
|
+
killRef.current = null;
|
|
200
|
+
setLive(false);
|
|
201
|
+
setPos(posRef.current);
|
|
202
|
+
setHead(readHead());
|
|
203
|
+
}, [readHead]);
|
|
204
|
+
const play = useCallback(() => setLive(true), []);
|
|
205
|
+
const seek = useCallback((where) => {
|
|
206
|
+
if (!history)
|
|
207
|
+
return;
|
|
208
|
+
killRef.current?.();
|
|
209
|
+
killRef.current = null;
|
|
210
|
+
setLive(false);
|
|
211
|
+
const events = history.at(where);
|
|
212
|
+
if (events && events.length) {
|
|
213
|
+
resetRef.current?.();
|
|
214
|
+
for (const ev of events)
|
|
215
|
+
applyRef.current(...ev.event);
|
|
216
|
+
posRef.current = events[events.length - 1].seq;
|
|
217
|
+
}
|
|
218
|
+
setPos(posRef.current);
|
|
219
|
+
setHead(readHead());
|
|
220
|
+
}, [history, applyRef, resetRef, readHead]);
|
|
221
|
+
return useMemo(() => ({ live, seq: pos, head, pause, play, seek }), [live, pos, head, pause, play, seek]);
|
|
222
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wenay-react2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.32",
|
|
4
4
|
"description": "Common react",
|
|
5
5
|
"strict": true,
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"react": "^19.2.0",
|
|
24
24
|
"react-dom": "^19.2.0",
|
|
25
25
|
"react-rnd": "^10.5.3",
|
|
26
|
-
"wenay-common2": "^1.0.
|
|
26
|
+
"wenay-common2": "^1.0.56"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"react": "^19.2.0",
|