@uistate/core 4.1.2 → 5.0.0

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 (150) hide show
  1. package/LICENSE-eventTest.md +26 -0
  2. package/README.md +409 -42
  3. package/cssState.js +32 -1
  4. package/eventState.js +58 -49
  5. package/eventTest.js +196 -0
  6. package/examples/001-counter/README.md +44 -0
  7. package/examples/001-counter/eventState.js +86 -0
  8. package/examples/001-counter/index.html +30 -0
  9. package/examples/002-counter-improved/README.md +44 -0
  10. package/examples/002-counter-improved/eventState.js +86 -0
  11. package/examples/002-counter-improved/index.html +44 -0
  12. package/examples/003-input-reactive/README.md +44 -0
  13. package/examples/003-input-reactive/eventState.js +86 -0
  14. package/examples/003-input-reactive/index.html +30 -0
  15. package/examples/004-computed-state/README.md +45 -0
  16. package/examples/004-computed-state/eventState.js +86 -0
  17. package/examples/004-computed-state/index.html +62 -0
  18. package/examples/005-conditional-rendering/README.md +42 -0
  19. package/examples/005-conditional-rendering/eventState.js +86 -0
  20. package/examples/005-conditional-rendering/index.html +36 -0
  21. package/examples/006-list-rendering/README.md +49 -0
  22. package/examples/006-list-rendering/eventState.js +86 -0
  23. package/examples/006-list-rendering/index.html +60 -0
  24. package/examples/007-form-validation/README.md +52 -0
  25. package/examples/007-form-validation/eventState.js +86 -0
  26. package/examples/007-form-validation/index.html +99 -0
  27. package/examples/008-undo-redo/README.md +70 -0
  28. package/examples/008-undo-redo/eventState.js +86 -0
  29. package/examples/008-undo-redo/index.html +105 -0
  30. package/examples/009-localStorage-side-effects/README.md +72 -0
  31. package/examples/009-localStorage-side-effects/eventState.js +86 -0
  32. package/examples/009-localStorage-side-effects/index.html +54 -0
  33. package/examples/010-decoupled-components/README.md +74 -0
  34. package/examples/010-decoupled-components/eventState.js +86 -0
  35. package/examples/010-decoupled-components/index.html +90 -0
  36. package/examples/011-async-patterns/README.md +98 -0
  37. package/examples/011-async-patterns/eventState.js +86 -0
  38. package/examples/011-async-patterns/index.html +129 -0
  39. package/examples/028-counter-improved-eventTest/LICENSE +55 -0
  40. package/examples/028-counter-improved-eventTest/README.md +131 -0
  41. package/examples/028-counter-improved-eventTest/app/store.js +9 -0
  42. package/examples/028-counter-improved-eventTest/index.html +49 -0
  43. package/examples/028-counter-improved-eventTest/runtime/core/behaviors.runtime.js +282 -0
  44. package/examples/028-counter-improved-eventTest/runtime/core/eventState.js +100 -0
  45. package/examples/028-counter-improved-eventTest/runtime/core/helpers.js +212 -0
  46. package/examples/028-counter-improved-eventTest/runtime/core/router.js +271 -0
  47. package/examples/028-counter-improved-eventTest/store.d.ts +8 -0
  48. package/examples/028-counter-improved-eventTest/style.css +170 -0
  49. package/examples/028-counter-improved-eventTest/tests/README.md +208 -0
  50. package/examples/028-counter-improved-eventTest/tests/counter.test.js +116 -0
  51. package/examples/028-counter-improved-eventTest/tests/eventTest.js +176 -0
  52. package/examples/028-counter-improved-eventTest/tests/generateTypes.js +168 -0
  53. package/examples/028-counter-improved-eventTest/tests/run.js +20 -0
  54. package/examples/030-todo-app-with-eventTest/LICENSE +55 -0
  55. package/examples/030-todo-app-with-eventTest/README.md +121 -0
  56. package/examples/030-todo-app-with-eventTest/app/router.js +25 -0
  57. package/examples/030-todo-app-with-eventTest/app/store.js +16 -0
  58. package/examples/030-todo-app-with-eventTest/app/views/home.js +11 -0
  59. package/examples/030-todo-app-with-eventTest/app/views/todoDemo.js +88 -0
  60. package/examples/030-todo-app-with-eventTest/index.html +65 -0
  61. package/examples/030-todo-app-with-eventTest/runtime/core/behaviors.runtime.js +282 -0
  62. package/examples/030-todo-app-with-eventTest/runtime/core/eventState.js +100 -0
  63. package/examples/030-todo-app-with-eventTest/runtime/core/helpers.js +212 -0
  64. package/examples/030-todo-app-with-eventTest/runtime/core/router.js +271 -0
  65. package/examples/030-todo-app-with-eventTest/store.d.ts +18 -0
  66. package/examples/030-todo-app-with-eventTest/style.css +170 -0
  67. package/examples/030-todo-app-with-eventTest/tests/README.md +208 -0
  68. package/examples/030-todo-app-with-eventTest/tests/eventTest.js +176 -0
  69. package/examples/030-todo-app-with-eventTest/tests/generateTypes.js +189 -0
  70. package/examples/030-todo-app-with-eventTest/tests/run.js +20 -0
  71. package/examples/030-todo-app-with-eventTest/tests/todos.test.js +167 -0
  72. package/examples/031-todo-app-with-eventTest/LICENSE +55 -0
  73. package/examples/031-todo-app-with-eventTest/README.md +54 -0
  74. package/examples/031-todo-app-with-eventTest/TUTORIAL.md +390 -0
  75. package/examples/031-todo-app-with-eventTest/WHY_EVENTSTATE.md +777 -0
  76. package/examples/031-todo-app-with-eventTest/app/bridges.js +113 -0
  77. package/examples/031-todo-app-with-eventTest/app/router.js +26 -0
  78. package/examples/031-todo-app-with-eventTest/app/store.js +15 -0
  79. package/examples/031-todo-app-with-eventTest/app/views/home.js +46 -0
  80. package/examples/031-todo-app-with-eventTest/app/views/todoDemo.js +69 -0
  81. package/examples/031-todo-app-with-eventTest/devtools/dock.js +41 -0
  82. package/examples/031-todo-app-with-eventTest/devtools/stateTracker.dock.js +10 -0
  83. package/examples/031-todo-app-with-eventTest/devtools/stateTracker.js +246 -0
  84. package/examples/031-todo-app-with-eventTest/devtools/telemetry.js +104 -0
  85. package/examples/031-todo-app-with-eventTest/devtools/typeGenerator.js +339 -0
  86. package/examples/031-todo-app-with-eventTest/index.html +103 -0
  87. package/examples/031-todo-app-with-eventTest/package-lock.json +2184 -0
  88. package/examples/031-todo-app-with-eventTest/package.json +24 -0
  89. package/examples/031-todo-app-with-eventTest/runtime/core/behaviors.runtime.js +282 -0
  90. package/examples/031-todo-app-with-eventTest/runtime/core/eventState.js +100 -0
  91. package/examples/031-todo-app-with-eventTest/runtime/core/helpers.js +212 -0
  92. package/examples/031-todo-app-with-eventTest/runtime/core/router.js +271 -0
  93. package/examples/031-todo-app-with-eventTest/runtime/extensions/boundary.js +36 -0
  94. package/examples/031-todo-app-with-eventTest/runtime/extensions/converge.js +63 -0
  95. package/examples/031-todo-app-with-eventTest/runtime/extensions/eventState.plus.js +210 -0
  96. package/examples/031-todo-app-with-eventTest/runtime/extensions/hydrate.js +157 -0
  97. package/examples/031-todo-app-with-eventTest/runtime/extensions/queryBinding.js +69 -0
  98. package/examples/031-todo-app-with-eventTest/runtime/forms/computed.js +78 -0
  99. package/examples/031-todo-app-with-eventTest/runtime/forms/meta.js +51 -0
  100. package/examples/031-todo-app-with-eventTest/runtime/forms/submitWithBoundary.js +28 -0
  101. package/examples/031-todo-app-with-eventTest/runtime/forms/validators.js +55 -0
  102. package/examples/031-todo-app-with-eventTest/store.d.ts +23 -0
  103. package/examples/031-todo-app-with-eventTest/style.css +170 -0
  104. package/examples/031-todo-app-with-eventTest/tests/README.md +208 -0
  105. package/examples/031-todo-app-with-eventTest/tests/eventTest.js +176 -0
  106. package/examples/031-todo-app-with-eventTest/tests/generateTypes.js +191 -0
  107. package/examples/031-todo-app-with-eventTest/tests/run.js +20 -0
  108. package/examples/031-todo-app-with-eventTest/tests/todos.test.js +192 -0
  109. package/examples/032-todo-app-with-eventTest/LICENSE +55 -0
  110. package/examples/032-todo-app-with-eventTest/README.md +54 -0
  111. package/examples/032-todo-app-with-eventTest/TUTORIAL.md +390 -0
  112. package/examples/032-todo-app-with-eventTest/WHY_EVENTSTATE.md +777 -0
  113. package/examples/032-todo-app-with-eventTest/app/actions/index.js +153 -0
  114. package/examples/032-todo-app-with-eventTest/app/bridges.js +113 -0
  115. package/examples/032-todo-app-with-eventTest/app/router.js +26 -0
  116. package/examples/032-todo-app-with-eventTest/app/store.js +15 -0
  117. package/examples/032-todo-app-with-eventTest/app/views/home.js +46 -0
  118. package/examples/032-todo-app-with-eventTest/app/views/todoDemo.js +69 -0
  119. package/examples/032-todo-app-with-eventTest/devtools/dock.js +41 -0
  120. package/examples/032-todo-app-with-eventTest/devtools/stateTracker.dock.js +10 -0
  121. package/examples/032-todo-app-with-eventTest/devtools/stateTracker.js +246 -0
  122. package/examples/032-todo-app-with-eventTest/devtools/telemetry.js +104 -0
  123. package/examples/032-todo-app-with-eventTest/devtools/typeGenerator.js +339 -0
  124. package/examples/032-todo-app-with-eventTest/index.html +87 -0
  125. package/examples/032-todo-app-with-eventTest/package-lock.json +2184 -0
  126. package/examples/032-todo-app-with-eventTest/package.json +24 -0
  127. package/examples/032-todo-app-with-eventTest/runtime/core/behaviors.runtime.js +282 -0
  128. package/examples/032-todo-app-with-eventTest/runtime/core/eventState.js +100 -0
  129. package/examples/032-todo-app-with-eventTest/runtime/core/helpers.js +212 -0
  130. package/examples/032-todo-app-with-eventTest/runtime/core/router.js +271 -0
  131. package/examples/032-todo-app-with-eventTest/runtime/extensions/boundary.js +36 -0
  132. package/examples/032-todo-app-with-eventTest/runtime/extensions/converge.js +63 -0
  133. package/examples/032-todo-app-with-eventTest/runtime/extensions/eventState.plus.js +210 -0
  134. package/examples/032-todo-app-with-eventTest/runtime/extensions/hydrate.js +157 -0
  135. package/examples/032-todo-app-with-eventTest/runtime/extensions/queryBinding.js +69 -0
  136. package/examples/032-todo-app-with-eventTest/runtime/forms/computed.js +78 -0
  137. package/examples/032-todo-app-with-eventTest/runtime/forms/meta.js +51 -0
  138. package/examples/032-todo-app-with-eventTest/runtime/forms/submitWithBoundary.js +28 -0
  139. package/examples/032-todo-app-with-eventTest/runtime/forms/validators.js +55 -0
  140. package/examples/032-todo-app-with-eventTest/store.d.ts +23 -0
  141. package/examples/032-todo-app-with-eventTest/style.css +170 -0
  142. package/examples/032-todo-app-with-eventTest/tests/README.md +208 -0
  143. package/examples/032-todo-app-with-eventTest/tests/eventTest.js +176 -0
  144. package/examples/032-todo-app-with-eventTest/tests/generateTypes.js +191 -0
  145. package/examples/032-todo-app-with-eventTest/tests/run.js +20 -0
  146. package/examples/032-todo-app-with-eventTest/tests/todos.test.js +192 -0
  147. package/index.js +14 -3
  148. package/package.json +16 -7
  149. package/stateSerializer.js +99 -4
  150. package/templateManager.js +50 -2
@@ -0,0 +1,100 @@
1
+ /**
2
+ * UIstate - Event-based hierarchical state management module
3
+ * Part of the UIstate declarative state management system
4
+ * Uses DOM events for pub/sub with hierarchical path support
5
+ */
6
+
7
+ const createEventState = (initial = {}) => {
8
+ // // Clone the initial state to avoid direct mutations to the passed object
9
+ const store = JSON.parse(JSON.stringify(initial));
10
+
11
+ // // Create a dedicated DOM element to use as an event bus
12
+ // const bus = document.createElement("x-store");
13
+
14
+ // // Optional: Keep the bus element off the actual DOM for better encapsulation
15
+ // // but this isn't strictly necessary for functionality
16
+ // bus.style.display = "none";
17
+ // document.documentElement.appendChild(bus);
18
+
19
+ const bus = new EventTarget();
20
+ return {
21
+ // get a value from the store by path
22
+ get: (path) => {
23
+ if (!path) return store;
24
+ return path
25
+ .split(".")
26
+ .reduce(
27
+ (obj, prop) =>
28
+ obj && obj[prop] !== undefined ? obj[prop] : undefined,
29
+ store
30
+ );
31
+ },
32
+
33
+ // set a value in the store by path
34
+ set: (path, value) => {
35
+ if(!path) return;
36
+
37
+ // Update the store
38
+ let target = store;
39
+ const parts = path.split(".");
40
+ const last = parts.pop();
41
+
42
+ // Create the path if it doesn't exist
43
+ parts.forEach((part) => {
44
+ if (!target[part] || typeof target[part] !== "object") {
45
+ target[part] = {};
46
+ }
47
+ target = target[part];
48
+ });
49
+
50
+ // Set the value
51
+ target[last] = value;
52
+
53
+ // Notify subscribers with a DOM event
54
+ bus.dispatchEvent(new CustomEvent(path, { detail: value }));
55
+
56
+ // Also dispatch events for parent paths to support wildcards
57
+ if (parts.length > 0) {
58
+ let parentPath = "";
59
+ for (const part of parts) {
60
+ parentPath = parentPath ? `${parentPath}.${part}` : part;
61
+ bus.dispatchEvent(
62
+ new CustomEvent(`${parentPath}.*`, {
63
+ detail: { path, value },
64
+ })
65
+ );
66
+ }
67
+
68
+ // Dispatch root wildcard for any state change
69
+ bus.dispatchEvent(
70
+ new CustomEvent("*", {
71
+ detail: { path, value},
72
+ })
73
+ );
74
+ }
75
+
76
+ return value;
77
+ },
78
+
79
+ // Subscribe to changes on a path
80
+ subscribe: (path, callback) => {
81
+ if (!path || typeof callback !== "function") return () => {};
82
+
83
+ const handler = (e) => callback(e.detail, path);
84
+ bus.addEventListener(path, handler);
85
+
86
+ return () => bus.removeEventListener(path, handler);
87
+ },
88
+
89
+ // Optional method to clean up resources
90
+ destroy: () => {
91
+ if (bus.parentNode) {
92
+ bus.parentNode.removeChild(bus);
93
+ }
94
+ },
95
+
96
+ };
97
+ };
98
+
99
+ export default createEventState;
100
+ export { createEventState };
@@ -0,0 +1,212 @@
1
+ // helpers.js
2
+ export const intent = (store, name, payload = true) => store.set(`intent.${name}`, payload);
3
+
4
+ export const bindIntentClicks = (root, store, payloadFromEvent) => {
5
+ root.addEventListener('click', (e) => {
6
+ const t = e.target.closest('[data-intent]');
7
+ if (!t) return;
8
+ const name = t.dataset.intent;
9
+ const payload = payloadFromEvent ? payloadFromEvent(e, t) : true;
10
+ store.set(`intent.${name}`, payload);
11
+ });
12
+ };
13
+
14
+ export const mount = (a, b) => {
15
+ // Overloads:
16
+ // - mount(selectorsMap) -> root defaults to document
17
+ // - mount(root, selectorsMap)
18
+ let root, selectors;
19
+ if (typeof b === 'undefined') {
20
+ selectors = a;
21
+ root = document;
22
+ } else {
23
+ root = a;
24
+ selectors = b;
25
+ }
26
+ const entries = Object.entries(selectors).map(([k, sel]) => {
27
+ const el = typeof sel === 'string' ? root.querySelector(sel) : sel;
28
+ return [k, el];
29
+ });
30
+ return Object.fromEntries(entries);
31
+ };
32
+
33
+ export const renderJson = (el, getSnapshot) => {
34
+ try { el.textContent = JSON.stringify(getSnapshot(), null, 2); }
35
+ catch { el.textContent = String(getSnapshot()); }
36
+ };
37
+
38
+ // Simple plug-and-play state panel. Attempts to use a provided target (selector or element),
39
+ // then '#state' if present, otherwise creates a floating <pre> panel in the bottom-right.
40
+ export const showStatePanel = (store, target) => {
41
+ let el = null;
42
+ if (typeof target === 'string') {
43
+ el = document.querySelector(target);
44
+ } else if (target && target.nodeType === 1) {
45
+ el = target; // DOM Element
46
+ }
47
+ if (!el) {
48
+ el = document.querySelector('#state');
49
+ }
50
+ if (!el) {
51
+ el = document.createElement('pre');
52
+ el.setAttribute('id', 'state');
53
+ Object.assign(el.style, {
54
+ position: 'fixed', right: '8px', bottom: '8px',
55
+ minWidth: '240px', maxWidth: '40vw', maxHeight: '40vh', overflow: 'auto',
56
+ padding: '8px', background: 'rgba(0,0,0,0.7)', color: '#0f0',
57
+ font: '12px/1.4 monospace', borderRadius: '6px', zIndex: 99999,
58
+ boxShadow: '0 2px 12px rgba(0,0,0,0.35)'
59
+ });
60
+ document.body.appendChild(el);
61
+ }
62
+ const render = () => {
63
+ try { el.textContent = JSON.stringify(store.get(), null, 2); }
64
+ catch { el.textContent = String(store.get()); }
65
+ };
66
+ store.subscribe('*', render);
67
+ render();
68
+ return el;
69
+ };
70
+
71
+ // Subscribe multiple path/handler pairs at once. Returns a SubGroup with:
72
+ // - dispose(): unsubscribe all
73
+ // - unsubs: individual unsubscribe functions (in pair order)
74
+ // - byPath: Record<string, Function[]> to selectively dispose by path
75
+ // - size: number of subscriptions created
76
+ export const groupSubs = (store, ...args) => {
77
+ if (args.length % 2 !== 0) {
78
+ throw new Error('groupSubs expects alternating path/handler pairs');
79
+ }
80
+ const unsubs = [];
81
+ const byPath = Object.create(null);
82
+ for (let i = 0; i < args.length; i += 2) {
83
+ const path = args[i];
84
+ const handler = args[i + 1];
85
+ const unsub = store.subscribe(path, handler);
86
+ unsubs.push(unsub);
87
+ (byPath[path] || (byPath[path] = [])).push(unsub);
88
+ }
89
+ const dispose = () => {
90
+ for (let i = unsubs.length - 1; i >= 0; i--) {
91
+ try { unsubs[i](); } catch (_) { /* noop */ }
92
+ }
93
+ };
94
+ return { dispose, unsubs, byPath, size: unsubs.length };
95
+ };
96
+
97
+ // Console logger for state changes; subscribes to '*' wildcard and logs path/value.
98
+ // Optional custom formatter receives the event object `{ path, value }`.
99
+ export const consoleLogState = (store, formatter) => {
100
+ const handler = (evt) => {
101
+ const payload = evt && typeof evt === 'object' && 'path' in evt ? evt : { path: '*', value: store.get() };
102
+ if (formatter) return formatter(payload);
103
+ console.log('[state]', payload.path, payload.value);
104
+ };
105
+ return store.subscribe('*', handler);
106
+ };
107
+
108
+ // JS-only wiring helpers (no DOM data-* exposure)
109
+ export const onClick = (el, handler) => {
110
+ el.addEventListener('click', handler);
111
+ return () => el.removeEventListener('click', handler);
112
+ };
113
+
114
+ export const bump = (store, path, delta = 1) => {
115
+ const n = (store.get(path) || 0) + delta;
116
+ store.set(path, n);
117
+ };
118
+ export const inc = (store, path) => bump(store, path, 1);
119
+ export const dec = (store, path) => bump(store, path, -1);
120
+
121
+ // Intent wiring without using data-* attributes
122
+ export const bindIntent = (store, el, name, payloadFromEvent) => {
123
+ const listener = (e) => {
124
+ const payload = payloadFromEvent ? payloadFromEvent(e, el) : true;
125
+ store.set(`intent.${name}`, payload);
126
+ };
127
+ el.addEventListener('click', listener);
128
+ return () => el.removeEventListener('click', listener);
129
+ };
130
+
131
+ export const bindIntents = (store, tuples) => {
132
+ const unsubs = tuples.map(([el, name, payloadFromEvent]) => bindIntent(store, el, name, payloadFromEvent));
133
+ return () => { for (let i = unsubs.length - 1; i >= 0; i--) { try { unsubs[i](); } catch (_) {} } };
134
+ };
135
+
136
+ // Orchestrator: initialize a view by mounting elements, subscribing handlers, wiring events, and optional dev tools.
137
+ // API:
138
+ // initView({
139
+ // store, // required
140
+ // mount: selectors | [root, selectors],
141
+ // paths: { ALIAS: 'a.b.c' }, // optional path aliases
142
+ // view: [ ['path', (value, els, store, p) => { /* render */ }], ... ],
143
+ // dev: { log: true, panel: true },
144
+ // events: (els, store, p) => [ /* array of unsubs */ ],
145
+ // })
146
+ export const initView = (cfg) => {
147
+ if (!cfg || !cfg.store) throw new Error('initView: cfg.store is required');
148
+ const store = cfg.store;
149
+ const mountCfg = cfg.mount;
150
+ const p = Object.assign({}, cfg.paths || {});
151
+ const dev = cfg.dev || {};
152
+
153
+ // Resolve elements once
154
+ const els = Array.isArray(mountCfg) ? mount(mountCfg[0], mountCfg[1]) : mount(mountCfg || {});
155
+
156
+ // Build grouped subscriptions from view tuples, wrapping to inject (els, store, p)
157
+ const viewTuples = (cfg.view || []).flatMap(([path, handler]) => {
158
+ let wrapped;
159
+ if (typeof handler === 'string') {
160
+ const key = handler;
161
+ wrapped = (value) => {
162
+ const el = els[key];
163
+ if (el) el.textContent = String(value);
164
+ };
165
+ } else {
166
+ wrapped = (value) => handler && handler(value, els, store, p);
167
+ }
168
+ return [path, wrapped];
169
+ });
170
+ const subs = viewTuples.length ? groupSubs(store, ...viewTuples) : { dispose(){} };
171
+
172
+ // Dev tools
173
+ const devUnsubs = [];
174
+ if (dev.log) {
175
+ try { devUnsubs.push(consoleLogState(store)); } catch (_) {}
176
+ }
177
+ let panelEl = null;
178
+ if (dev.panel) {
179
+ try { panelEl = showStatePanel(store); } catch (_) {}
180
+ }
181
+
182
+ // Events wiring
183
+ let eventUnsubs = [];
184
+ if (typeof cfg.events === 'function') {
185
+ try { eventUnsubs = cfg.events(els, store, p) || []; } catch (_) { eventUnsubs = []; }
186
+ } else if (cfg.events && typeof cfg.events === 'object') {
187
+ // Sugar: events map { elKey: (store, paths, el) => void | unsub }
188
+ const map = cfg.events;
189
+ eventUnsubs = Object.entries(map).map(([key, fn]) => {
190
+ const el = els[key];
191
+ if (!el || typeof fn !== 'function') return () => {};
192
+ // Default to click wiring; allow handler to return its own unsub.
193
+ const handler = () => fn(store, p, el);
194
+ el.addEventListener('click', handler);
195
+ return () => el.removeEventListener('click', handler);
196
+ });
197
+ }
198
+
199
+ // Unified disposer
200
+ const dispose = () => {
201
+ try { subs && subs.dispose && subs.dispose(); } catch (_) {}
202
+ for (let i = eventUnsubs.length - 1; i >= 0; i--) {
203
+ try { eventUnsubs[i] && eventUnsubs[i](); } catch (_) {}
204
+ }
205
+ for (let i = devUnsubs.length - 1; i >= 0; i--) {
206
+ try { devUnsubs[i] && devUnsubs[i](); } catch (_) {}
207
+ }
208
+ // Note: showStatePanel returns an element; we do not auto-remove it by default.
209
+ };
210
+
211
+ return { els, paths: p, subs, eventUnsubs, devUnsubs, dispose };
212
+ };
@@ -0,0 +1,271 @@
1
+ // runtime/core/router.js — Generic SPA router factory for eventState stores
2
+ // Usage:
3
+ // const router = createRouter({
4
+ // routes: [{ path: '/', view: 'home', component: HomeView }],
5
+ // store,
6
+ // rootSelector: '[data-route-root]',
7
+ // debug: true
8
+ // });
9
+ // router.start();
10
+
11
+ export function createRouter(config) {
12
+ const {
13
+ routes = [],
14
+ store,
15
+ rootSelector = '[data-route-root]',
16
+ fallback = null,
17
+ debug = false,
18
+ linkSelector = 'a[data-link]',
19
+ navSelector = 'nav a[data-link]',
20
+ } = config;
21
+
22
+ // Detect base path from <base href> if present
23
+ const BASE_PATH = (() => {
24
+ const b = document.querySelector('base[href]');
25
+ if (!b) return '';
26
+ try {
27
+ const u = new URL(b.getAttribute('href'), location.href);
28
+ let p = u.pathname;
29
+ if (p.length > 1 && p.endsWith('/')) p = p.slice(0, -1);
30
+ return p;
31
+ } catch { return ''; }
32
+ })();
33
+
34
+ function stripBase(pathname) {
35
+ if (BASE_PATH && pathname.startsWith(BASE_PATH)) {
36
+ const rest = pathname.slice(BASE_PATH.length) || '/';
37
+ return rest.startsWith('/') ? rest : ('/' + rest);
38
+ }
39
+ return pathname;
40
+ }
41
+
42
+ function withBase(pathname) {
43
+ if (!BASE_PATH) return pathname;
44
+ if (pathname === '/') return BASE_PATH || '/';
45
+ return (BASE_PATH + (pathname.startsWith('/') ? '' : '/') + pathname);
46
+ }
47
+
48
+ function normalizePath(p) {
49
+ if (!p) return '/';
50
+ try {
51
+ if (p[0] !== '/') p = '/' + p;
52
+ if (p === '/index.html') return '/';
53
+ if (p.length > 1 && p.endsWith('/')) p = p.slice(0, -1);
54
+ return p;
55
+ } catch { return '/'; }
56
+ }
57
+
58
+ function resolve(pathname) {
59
+ const p = normalizePath(pathname);
60
+ const r = routes.find(r => r.path === p);
61
+ if (r) return { ...r, params: {} };
62
+ if (fallback) return { ...fallback, params: {} };
63
+ return null;
64
+ }
65
+
66
+ function getRoot() {
67
+ const el = document.querySelector(rootSelector);
68
+ if (!el) throw new Error('Route root not found: ' + rootSelector);
69
+ return el;
70
+ }
71
+
72
+ function setActiveNav(pathname) {
73
+ document.querySelectorAll(navSelector).forEach(a => {
74
+ const url = new URL(a.getAttribute('href'), location.href);
75
+ const linkPath = normalizePath(stripBase(url.pathname));
76
+ const here = normalizePath(pathname);
77
+ const isExact = linkPath === here;
78
+ const isParent = !isExact && linkPath !== '/' && here.startsWith(linkPath);
79
+ const active = isExact || isParent;
80
+ a.classList.toggle('active', active);
81
+ if (isExact) a.setAttribute('aria-current', 'page');
82
+ else a.removeAttribute('aria-current');
83
+ });
84
+ }
85
+
86
+ // State
87
+ let current = { viewKey: null, unboot: null, path: null, search: '' };
88
+ let navController = null;
89
+ const scrollPositions = new Map();
90
+ history.scrollRestoration = 'manual';
91
+
92
+ // Core navigate function
93
+ async function navigate(pathname, { replace = false, search = '', restoreScroll = false } = {}) {
94
+ const root = getRoot();
95
+ const appPath = normalizePath(stripBase(pathname));
96
+ const resolved = resolve(appPath);
97
+
98
+ if (!resolved) {
99
+ if (debug) console.warn('[router] No route found for:', appPath);
100
+ return;
101
+ }
102
+
103
+ const viewKey = resolved.view;
104
+ const component = resolved.component;
105
+ const html = document.documentElement;
106
+ const prevViewKey = current.viewKey;
107
+
108
+ const searchStr = search && search.startsWith('?') ? search : (search ? ('?' + search) : '');
109
+
110
+ // Always log navigation for telemetry
111
+ console.log('[nav] navigate', { from: current.path, to: appPath, view: viewKey });
112
+
113
+ if (debug) {
114
+ console.debug('[router] navigate', { pathname, appPath, searchStr, view: viewKey, params: resolved.params });
115
+ }
116
+
117
+ // Same-route no-op guard
118
+ if (current.path === appPath && current.search === searchStr) {
119
+ return;
120
+ }
121
+
122
+ // Abort in-flight boot
123
+ if (navController) navController.abort();
124
+ navController = new AbortController();
125
+ const { signal } = navController;
126
+
127
+ // Transition start
128
+ if (store) {
129
+ try { store.set('ui.route.transitioning', true); } catch {}
130
+ }
131
+ html.setAttribute('data-transitioning', 'on');
132
+
133
+ // Save scroll position
134
+ if (current.path) {
135
+ scrollPositions.set(current.path, { x: scrollX, y: scrollY });
136
+ }
137
+
138
+ // Unboot previous view
139
+ if (typeof current.unboot === 'function') {
140
+ try { await current.unboot(); } catch (_e) {}
141
+ }
142
+
143
+ // Clear DOM
144
+ root.replaceChildren();
145
+
146
+ // Boot new view
147
+ const unboot = await (component.boot?.({ store, el: root, signal }) || Promise.resolve(() => {}));
148
+ current = { viewKey, unboot, path: appPath, search: searchStr };
149
+
150
+ // Update nav active state
151
+ setActiveNav(appPath);
152
+
153
+ // Parse query params
154
+ const urlForQuery = new URL(location.origin + withBase(appPath) + searchStr);
155
+ const q = {};
156
+ urlForQuery.searchParams.forEach((v, k) => { q[k] = v; });
157
+
158
+ // Update store
159
+ if (store) {
160
+ try {
161
+ if (store.setMany) {
162
+ store.setMany({
163
+ 'ui.route.view': viewKey,
164
+ 'ui.route.path': appPath,
165
+ 'ui.route.params': resolved.params || {},
166
+ 'ui.route.query': q,
167
+ });
168
+ } else {
169
+ store.set('ui.route.view', viewKey);
170
+ store.set('ui.route.path', appPath);
171
+ store.set('ui.route.params', resolved.params || {});
172
+ store.set('ui.route.query', q);
173
+ }
174
+ } catch {}
175
+ }
176
+
177
+ // Update browser history
178
+ const useReplace = replace || (prevViewKey === viewKey);
179
+ if (useReplace) history.replaceState({}, '', withBase(appPath) + searchStr);
180
+ else history.pushState({}, '', withBase(appPath) + searchStr);
181
+
182
+ // Set view attribute
183
+ html.setAttribute('data-view', viewKey);
184
+
185
+ if (debug) {
186
+ console.debug('[router] view', { viewKey, path: appPath, query: q });
187
+ }
188
+
189
+ // Transition end
190
+ if (store) {
191
+ try { store.set('ui.route.transitioning', false); } catch {}
192
+ }
193
+ html.setAttribute('data-transitioning', 'off');
194
+
195
+ // Focus management
196
+ if (!root.hasAttribute('tabindex')) root.setAttribute('tabindex', '-1');
197
+ try { root.focus({ preventScroll: true }); } catch {}
198
+
199
+ // Scroll restoration
200
+ if (restoreScroll) {
201
+ const pos = scrollPositions.get(appPath);
202
+ if (pos) scrollTo(pos.x, pos.y);
203
+ } else {
204
+ scrollTo(0, 0);
205
+ }
206
+ }
207
+
208
+ function navigateQuery(patch = {}, { replace = true } = {}) {
209
+ const params = new URLSearchParams(current.search || '');
210
+ for (const [k, v] of Object.entries(patch)) {
211
+ if (v === null || v === undefined || v === '') params.delete(k);
212
+ else params.set(k, String(v));
213
+ }
214
+ const searchStr = params.toString();
215
+ const prefixed = searchStr ? ('?' + searchStr) : '';
216
+ const path = current.path || normalizePath(stripBase(location.pathname));
217
+ return navigate(path, { search: prefixed, replace });
218
+ }
219
+
220
+ function navigatePath(path, { replace = true } = {}) {
221
+ const appPath = normalizePath(stripBase(path));
222
+ const searchStr = current.search || '';
223
+ return navigate(appPath, { search: searchStr, replace });
224
+ }
225
+
226
+ function onClick(e) {
227
+ const a = e.target.closest(linkSelector);
228
+ if (!a) return;
229
+ if (e.defaultPrevented) return;
230
+ if (e.metaKey || e.ctrlKey || e.shiftKey || e.altKey || e.button !== 0) return;
231
+ const url = new URL(a.getAttribute('href'), location.href);
232
+ if (url.origin !== location.origin) return;
233
+ e.preventDefault();
234
+
235
+ // Log navigation click
236
+ console.log('[nav] click', { href: a.getAttribute('href'), text: a.textContent.trim() });
237
+
238
+ navigate(url.pathname, { search: url.search }).catch(() => {});
239
+ }
240
+
241
+ function onPop() {
242
+ navigate(location.pathname, { replace: true, search: location.search, restoreScroll: true }).catch(() => {});
243
+ }
244
+
245
+ // Public API
246
+ return {
247
+ navigate,
248
+ navigateQuery,
249
+ navigatePath,
250
+
251
+ start() {
252
+ window.addEventListener('click', onClick);
253
+ window.addEventListener('popstate', onPop);
254
+ navigate(location.pathname, { replace: true, search: location.search, restoreScroll: true });
255
+ return this;
256
+ },
257
+
258
+ stop() {
259
+ window.removeEventListener('click', onClick);
260
+ window.removeEventListener('popstate', onPop);
261
+ if (typeof current.unboot === 'function') {
262
+ try { current.unboot(); } catch {}
263
+ }
264
+ return this;
265
+ },
266
+
267
+ getCurrent() {
268
+ return { ...current };
269
+ }
270
+ };
271
+ }
@@ -0,0 +1,8 @@
1
+ // Auto-generated from test assertions
2
+ // DO NOT EDIT - regenerate by running: node tests/generateTypes.js
3
+
4
+ export interface StoreState {
5
+ count: number;
6
+ }
7
+
8
+ export default StoreState;