flexium 0.16.0 → 0.16.2

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 (49) hide show
  1. package/dist/chunk-CB6CIG76.mjs +2 -0
  2. package/dist/chunk-CB6CIG76.mjs.map +1 -0
  3. package/dist/chunk-LOKMOGSA.js +2 -0
  4. package/dist/chunk-LOKMOGSA.js.map +1 -0
  5. package/dist/{chunk-BJ4IXTUD.mjs → chunk-NABWFBEA.mjs} +2 -2
  6. package/dist/{chunk-BJ4IXTUD.mjs.map → chunk-NABWFBEA.mjs.map} +1 -1
  7. package/dist/{chunk-2E6EKGQ2.js → chunk-THUSQSDY.js} +2 -2
  8. package/dist/{chunk-2E6EKGQ2.js.map → chunk-THUSQSDY.js.map} +1 -1
  9. package/dist/chunk-VNYPOCV7.js +2 -0
  10. package/dist/chunk-VNYPOCV7.js.map +1 -0
  11. package/dist/chunk-WHRUAZR4.mjs +2 -0
  12. package/dist/chunk-WHRUAZR4.mjs.map +1 -0
  13. package/dist/core.d.cts +22 -2
  14. package/dist/core.d.ts +22 -2
  15. package/dist/core.js +1 -1
  16. package/dist/core.mjs +1 -1
  17. package/dist/dom.d.cts +1 -36
  18. package/dist/dom.d.ts +1 -36
  19. package/dist/dom.js +1 -1
  20. package/dist/dom.js.map +1 -1
  21. package/dist/dom.mjs +1 -1
  22. package/dist/dom.mjs.map +1 -1
  23. package/dist/index.d.cts +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/dist/index.js.map +1 -1
  27. package/dist/index.mjs +1 -1
  28. package/dist/index.mjs.map +1 -1
  29. package/dist/metafile-cjs.json +1 -1
  30. package/dist/metafile-esm.json +1 -1
  31. package/dist/render-IBWAHNEZ.js +2 -0
  32. package/dist/{render-PHFHCZJE.js.map → render-IBWAHNEZ.js.map} +1 -1
  33. package/dist/render-Z4FL7ORX.mjs +2 -0
  34. package/dist/{render-SKTTFEON.mjs.map → render-Z4FL7ORX.mjs.map} +1 -1
  35. package/dist/router.js +1 -1
  36. package/dist/router.mjs +1 -1
  37. package/dist/server.js +1 -1
  38. package/dist/server.mjs +1 -1
  39. package/package.json +1 -1
  40. package/dist/chunk-44IBO7Q7.js +0 -2
  41. package/dist/chunk-44IBO7Q7.js.map +0 -1
  42. package/dist/chunk-4DTHOZSY.mjs +0 -2
  43. package/dist/chunk-4DTHOZSY.mjs.map +0 -1
  44. package/dist/chunk-64L26RKO.mjs +0 -2
  45. package/dist/chunk-64L26RKO.mjs.map +0 -1
  46. package/dist/chunk-6AVHHBFG.js +0 -2
  47. package/dist/chunk-6AVHHBFG.js.map +0 -1
  48. package/dist/render-PHFHCZJE.js +0 -2
  49. package/dist/render-SKTTFEON.mjs +0 -2
package/dist/core.d.ts CHANGED
@@ -16,8 +16,12 @@
16
16
  * const source = new MySource(...)
17
17
  * const [value] = use(source)
18
18
  * ```
19
+ *
20
+ * @typeParam T - The value type
21
+ * @typeParam P - The params type for subscribe/send
22
+ * @typeParam Actions - Tuple of additional actions returned by use() after the value
19
23
  */
20
- declare abstract class Useable<T, P = void> {
24
+ declare abstract class Useable<T, P = void, Actions extends unknown[] = []> {
21
25
  /**
22
26
  * Unique identifier for this Useable type
23
27
  * Used internally by use() for type checking
@@ -37,6 +41,22 @@ declare abstract class Useable<T, P = void> {
37
41
  * @returns Cleanup function to unsubscribe
38
42
  */
39
43
  abstract subscribe(params: P | undefined, callback: (value: T) => void): () => void;
44
+ /**
45
+ * Get additional actions to include in the use() tuple
46
+ * Override this to return [action1, action2, ...] that will be appended to [value, ...]
47
+ *
48
+ * @example
49
+ * ```tsx
50
+ * class SendableStream extends Useable<T, P> {
51
+ * getActions() {
52
+ * return [this.send.bind(this)]
53
+ * }
54
+ * }
55
+ *
56
+ * const [value, send] = use(stream)
57
+ * ```
58
+ */
59
+ getActions(): Actions | undefined;
40
60
  }
41
61
  /**
42
62
  * Type guard to check if a value is a Useable instance
@@ -102,7 +122,7 @@ interface UseOptions {
102
122
  name?: string;
103
123
  }
104
124
  declare function use<T>(ctx: Context<T>): [T, undefined];
105
- declare function use<T, P = void>(source: Useable<T, P>, params?: P): [T, undefined];
125
+ declare function use<T, P, A extends unknown[]>(source: Useable<T, P, A>, params?: P): [T, ...A];
106
126
  declare function use<T, P = void>(fn: (ctx: UseContext<P>) => Promise<T>, depsOrOptions?: any[] | UseOptions, options?: UseOptions): [T | undefined, ResourceControl<P>];
107
127
  declare function use<T>(fn: (ctx: UseContext) => T, depsOrOptions?: any[] | UseOptions, options?: UseOptions): [T, ResourceControl];
108
128
  declare function use<T>(initialValue: T extends Function ? never : T, options?: UseOptions): [T, Setter<T>];
package/dist/core.js CHANGED
@@ -1,2 +1,2 @@
1
- 'use strict';var chunk6AVHHBFG_js=require('./chunk-6AVHHBFG.js'),chunk3CKIHQIE_js=require('./chunk-3CKIHQIE.js'),chunk44IBO7Q7_js=require('./chunk-44IBO7Q7.js');function R(t){return chunk44IBO7Q7_js.b(()=>({current:t}))}Object.defineProperty(exports,"isReactive",{enumerable:true,get:function(){return chunk6AVHHBFG_js.b}});Object.defineProperty(exports,"use",{enumerable:true,get:function(){return chunk6AVHHBFG_js.c}});Object.defineProperty(exports,"sync",{enumerable:true,get:function(){return chunk3CKIHQIE_js.e}});Object.defineProperty(exports,"Context",{enumerable:true,get:function(){return chunk44IBO7Q7_js.e}});Object.defineProperty(exports,"Useable",{enumerable:true,get:function(){return chunk44IBO7Q7_js.c}});Object.defineProperty(exports,"getContextValue",{enumerable:true,get:function(){return chunk44IBO7Q7_js.f}});Object.defineProperty(exports,"isUseable",{enumerable:true,get:function(){return chunk44IBO7Q7_js.d}});Object.defineProperty(exports,"popContext",{enumerable:true,get:function(){return chunk44IBO7Q7_js.h}});Object.defineProperty(exports,"pushContext",{enumerable:true,get:function(){return chunk44IBO7Q7_js.g}});exports.useRef=R;//# sourceMappingURL=core.js.map
1
+ 'use strict';var chunkLOKMOGSA_js=require('./chunk-LOKMOGSA.js'),chunk3CKIHQIE_js=require('./chunk-3CKIHQIE.js'),chunkVNYPOCV7_js=require('./chunk-VNYPOCV7.js');function R(t){return chunkVNYPOCV7_js.b(()=>({current:t}))}Object.defineProperty(exports,"isReactive",{enumerable:true,get:function(){return chunkLOKMOGSA_js.b}});Object.defineProperty(exports,"use",{enumerable:true,get:function(){return chunkLOKMOGSA_js.c}});Object.defineProperty(exports,"sync",{enumerable:true,get:function(){return chunk3CKIHQIE_js.e}});Object.defineProperty(exports,"Context",{enumerable:true,get:function(){return chunkVNYPOCV7_js.e}});Object.defineProperty(exports,"Useable",{enumerable:true,get:function(){return chunkVNYPOCV7_js.c}});Object.defineProperty(exports,"getContextValue",{enumerable:true,get:function(){return chunkVNYPOCV7_js.f}});Object.defineProperty(exports,"isUseable",{enumerable:true,get:function(){return chunkVNYPOCV7_js.d}});Object.defineProperty(exports,"popContext",{enumerable:true,get:function(){return chunkVNYPOCV7_js.h}});Object.defineProperty(exports,"pushContext",{enumerable:true,get:function(){return chunkVNYPOCV7_js.g}});exports.useRef=R;//# sourceMappingURL=core.js.map
2
2
  //# sourceMappingURL=core.js.map
package/dist/core.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export{b as isReactive,c as use}from'./chunk-4DTHOZSY.mjs';export{e as sync}from'./chunk-NRPWBHKP.mjs';import {b}from'./chunk-64L26RKO.mjs';export{e as Context,c as Useable,f as getContextValue,d as isUseable,h as popContext,g as pushContext}from'./chunk-64L26RKO.mjs';function R(t){return b(()=>({current:t}))}export{R as useRef};//# sourceMappingURL=core.mjs.map
1
+ export{b as isReactive,c as use}from'./chunk-CB6CIG76.mjs';export{e as sync}from'./chunk-NRPWBHKP.mjs';import {b}from'./chunk-WHRUAZR4.mjs';export{e as Context,c as Useable,f as getContextValue,d as isUseable,h as popContext,g as pushContext}from'./chunk-WHRUAZR4.mjs';function R(t){return b(()=>({current:t}))}export{R as useRef};//# sourceMappingURL=core.mjs.map
2
2
  //# sourceMappingURL=core.mjs.map
package/dist/dom.d.cts CHANGED
@@ -28,14 +28,6 @@ interface HydrateOptions {
28
28
  */
29
29
  declare function hydrate(app: FNodeChild | (() => FNodeChild), container: HTMLElement, options?: HydrateOptions): void;
30
30
 
31
- interface PortalProps {
32
- /** Target element or CSS selector to render children into */
33
- target: HTMLElement | string;
34
- /** Children to render in the portal */
35
- children: FNodeChild;
36
- /** Optional key for reconciliation */
37
- key?: any;
38
- }
39
31
  interface SuspenseProps {
40
32
  /** Fallback UI to display while loading */
41
33
  fallback: FNodeChild;
@@ -69,33 +61,6 @@ interface ErrorBoundaryProps {
69
61
  resetKey?: unknown;
70
62
  }
71
63
 
72
- /**
73
- * Portal component that renders children into a different DOM node
74
- *
75
- * @deprecated Use Portal from 'flexium-ui' instead:
76
- * ```tsx
77
- * import { Portal } from 'flexium-ui'
78
- * ```
79
- *
80
- * @example
81
- * ```tsx
82
- * function Modal({ isOpen, onClose, children }) {
83
- * if (!isOpen) return null
84
- *
85
- * return (
86
- * <Portal target={document.body}>
87
- * <div class="modal-backdrop" onClick={onClose}>
88
- * <div class="modal-content" onClick={e => e.stopPropagation()}>
89
- * {children}
90
- * </div>
91
- * </div>
92
- * </Portal>
93
- * )
94
- * }
95
- * ```
96
- */
97
- declare function Portal(props: PortalProps): null;
98
-
99
64
  /**
100
65
  * Suspense component that shows fallback while children are loading
101
66
  *
@@ -150,4 +115,4 @@ declare function lazy<P = {}>(loader: () => Promise<{
150
115
  default: (props: P) => FNodeChild;
151
116
  }>): LazyComponent<P>;
152
117
 
153
- export { ErrorBoundary, type ErrorBoundaryProps, type ErrorInfo, type HydrateOptions, type LazyComponent, Portal, type PortalProps, Suspense, type SuspenseProps, f, hydrate, lazy, render };
118
+ export { ErrorBoundary, type ErrorBoundaryProps, type ErrorInfo, type HydrateOptions, type LazyComponent, Suspense, type SuspenseProps, f, hydrate, lazy, render };
package/dist/dom.d.ts CHANGED
@@ -28,14 +28,6 @@ interface HydrateOptions {
28
28
  */
29
29
  declare function hydrate(app: FNodeChild | (() => FNodeChild), container: HTMLElement, options?: HydrateOptions): void;
30
30
 
31
- interface PortalProps {
32
- /** Target element or CSS selector to render children into */
33
- target: HTMLElement | string;
34
- /** Children to render in the portal */
35
- children: FNodeChild;
36
- /** Optional key for reconciliation */
37
- key?: any;
38
- }
39
31
  interface SuspenseProps {
40
32
  /** Fallback UI to display while loading */
41
33
  fallback: FNodeChild;
@@ -69,33 +61,6 @@ interface ErrorBoundaryProps {
69
61
  resetKey?: unknown;
70
62
  }
71
63
 
72
- /**
73
- * Portal component that renders children into a different DOM node
74
- *
75
- * @deprecated Use Portal from 'flexium-ui' instead:
76
- * ```tsx
77
- * import { Portal } from 'flexium-ui'
78
- * ```
79
- *
80
- * @example
81
- * ```tsx
82
- * function Modal({ isOpen, onClose, children }) {
83
- * if (!isOpen) return null
84
- *
85
- * return (
86
- * <Portal target={document.body}>
87
- * <div class="modal-backdrop" onClick={onClose}>
88
- * <div class="modal-content" onClick={e => e.stopPropagation()}>
89
- * {children}
90
- * </div>
91
- * </div>
92
- * </Portal>
93
- * )
94
- * }
95
- * ```
96
- */
97
- declare function Portal(props: PortalProps): null;
98
-
99
64
  /**
100
65
  * Suspense component that shows fallback while children are loading
101
66
  *
@@ -150,4 +115,4 @@ declare function lazy<P = {}>(loader: () => Promise<{
150
115
  default: (props: P) => FNodeChild;
151
116
  }>): LazyComponent<P>;
152
117
 
153
- export { ErrorBoundary, type ErrorBoundaryProps, type ErrorInfo, type HydrateOptions, type LazyComponent, Portal, type PortalProps, Suspense, type SuspenseProps, f, hydrate, lazy, render };
118
+ export { ErrorBoundary, type ErrorBoundaryProps, type ErrorInfo, type HydrateOptions, type LazyComponent, Suspense, type SuspenseProps, f, hydrate, lazy, render };
package/dist/dom.js CHANGED
@@ -1,2 +1,2 @@
1
- 'use strict';var chunk2E6EKGQ2_js=require('./chunk-2E6EKGQ2.js'),chunk6AVHHBFG_js=require('./chunk-6AVHHBFG.js'),chunk3CKIHQIE_js=require('./chunk-3CKIHQIE.js'),chunk44IBO7Q7_js=require('./chunk-44IBO7Q7.js');function Y(e,t,...o){return {type:e,props:t||{},children:o,key:t?.key}}var l=null,H=new WeakMap,C=null;function Z(e,t,o={}){let{state:n,onHydrated:r,onMismatch:a}=o;l=t.firstChild;try{let s;typeof e=="function"&&!D(e)?s={type:e,props:{},children:[],key:void 0}:s=e,P(s,t),r?.();}catch(s){console.warn("[Flexium] Hydration mismatch, falling back to full render:",s),a?.(s),t.innerHTML="",import('./render-PHFHCZJE.js').then(({render:p})=>{p(e,t);});}finally{l=null;}}function D(e){return e&&typeof e=="object"&&"type"in e&&"props"in e}function P(e,t){if(e==null||typeof e=="boolean")return I(),null;if(typeof e=="string"||typeof e=="number")return ee(String(e));if(Array.isArray(e)){let o=[];for(let n of e){let r=P(n,t);r&&(Array.isArray(r)?o.push(...r):o.push(r));}return o}if(typeof e=="function")return $({type:e,props:{},children:[],key:void 0},t);if(typeof e=="object"&&D(e)){if(typeof e.type=="string")return te(e);if(typeof e.type=="function")return $(e,t)}return null}function I(){for(;l&&l.nodeType===Node.TEXT_NODE&&(!l.textContent||l.textContent.trim()==="");)l=l.nextSibling;}function ee(e){I();let t=l;if(!t)return null;if(t.nodeType!==Node.TEXT_NODE){if(e.trim()==="")return null;throw new Error(`Hydration mismatch: expected text node "${e}", got ${t.nodeName}`)}return l=t.nextSibling,t}function te(e){I();let t=l,o=e.type;if(!t||t.nodeType!==Node.ELEMENT_NODE)throw new Error(`Hydration mismatch: expected element <${o}>, got ${t?.nodeName||"nothing"}`);if(t.tagName.toLowerCase()!==o.toLowerCase())throw new Error(`Hydration mismatch: expected <${o}>, got <${t.tagName.toLowerCase()}>`);if(e.props){for(let[n,r]of Object.entries(e.props))if(n==="ref")typeof r=="function"?r(t):r&&typeof r=="object"&&"current"in r&&(r.current=t);else if(n.startsWith("on")&&typeof r=="function"){let a=n.slice(2).toLowerCase();t.addEventListener(a,r),t.__eventHandlers||(t.__eventHandlers={}),t.__eventHandlers[a]=r;}}if(l=t.nextSibling,e.children&&e.children.length>0){let n=l;l=t.firstChild;for(let r of e.children)P(r,t);l=n;}return t}function $(e,t){let o=e.type,n={...e.props};e.children&&e.children.length>0&&(n.children=e.children.length===1?e.children[0]:e.children);let r=o._contextId,a=r!==void 0,s;a&&(s=chunk44IBO7Q7_js.g(r,n.value)),H.has(t)||H.set(t,new Map);let p=H.get(t),x=e.key!==void 0,u;if(x)u=e.key;else {let f=0,y=o.name||"anonymous";p.forEach((v,E)=>{typeof E=="string"&&E.startsWith(`__auto_${y}_`)&&f++;}),u=`__auto_${y}_${f}`;}let i={hooks:[],hookIndex:0,nodes:[],parent:t,fnode:e,props:n,key:u,children:new Set,parentInstance:C||void 0};C&&C.children.add(i),p.set(u,i);let c=C;C=i;try{let f=chunk44IBO7Q7_js.a(i,()=>o(n)),y=P(f,t);i.nodes=y?Array.isArray(y)?y:[y]:[];let v=!0,E=()=>{let G=i.props,B=chunk44IBO7Q7_js.a(i,()=>o(G));if(v){v=!1;return}if(i.nodes.length===0){let S=chunk2E6EKGQ2_js.a(B,t);i.nodes=S?Array.isArray(S)?S:[S]:[];return}let m=i.nodes[0].parentNode;if(!m)return;let N=document.createComment("flexium-marker"),M=i.nodes[i.nodes.length-1];M.nextSibling?m.insertBefore(N,M.nextSibling):m.appendChild(N),i.children.clear();let J=document.createElement("div"),g=chunk2E6EKGQ2_js.a(B,J,m),Q=g?Array.isArray(g)?g:[g]:[],U=chunk2E6EKGQ2_js.b(i.nodes,Q,m,N);m.removeChild(N),i.nodes=U;};return i.renderFn=E,chunk3CKIHQIE_js.b(E),i.nodes}finally{C=c,a&&chunk44IBO7Q7_js.h(r,s);}}function W(e){let{target:t,children:o}=e,n=chunk44IBO7Q7_js.b(()=>({container:null,mounted:false}));return chunk6AVHHBFG_js.c(({onCleanup:r})=>{let a=null;if(typeof t=="string"?a=document.querySelector(t):t instanceof HTMLElement&&(a=t),!a){console.warn("[Flexium Portal] Target container not found:",t);return}let s=document.createElement("div");s.setAttribute("data-flexium-portal","true"),a.appendChild(s),n.container=s,n.mounted=true,chunk2E6EKGQ2_js.c(o,s),r(()=>{s.parentNode&&s.parentNode.removeChild(s),n.container=null,n.mounted=false;});},[t,o]),null}var re={register:()=>{},hasBoundary:false},L=new chunk44IBO7Q7_js.e(re);function j(){let[e]=chunk6AVHHBFG_js.c(L);return e}function R(e){let{fallback:t,children:o}=e,n=chunk44IBO7Q7_js.b(()=>new Set),[,r]=chunk6AVHHBFG_js.c(0),[a,s]=chunk6AVHHBFG_js.c(false),x={register:i=>{n.has(i)||(n.add(i),r(c=>c+1),s(true),i.finally(()=>{n.delete(i),r(c=>{let f=c-1;return f===0&&s(false),f});}));},hasBoundary:true},u=a?t:o;return {type:L.Provider,props:{value:x},children:[u],key:void 0}}function X(e){let{fallback:t,onError:o,children:n,resetKey:r}=e,[a,s]=chunk6AVHHBFG_js.c({error:null,info:null}),p=chunk44IBO7Q7_js.b(()=>({current:r}));r!==p.current&&(p.current=r,a.error!==null&&s({error:null,info:null}));if(a.error)return typeof t=="function"?t(a.error,a.info):t;try{return n}finally{}}function q(e){let t=null,o=null,n=null,r=a=>{if(t)return t(a);if(n)throw n;let s=j();return o||(o=e().then(p=>{t=p.default;}).catch(p=>{n=p instanceof Error?p:new Error(String(p));})),s.hasBoundary&&s.register(o),null};return r._lazy=true,r._loader=e,r}Object.defineProperty(exports,"render",{enumerable:true,get:function(){return chunk2E6EKGQ2_js.c}});exports.ErrorBoundary=X;exports.Portal=W;exports.Suspense=R;exports.f=Y;exports.hydrate=Z;exports.lazy=q;//# sourceMappingURL=dom.js.map
1
+ 'use strict';var chunkTHUSQSDY_js=require('./chunk-THUSQSDY.js'),chunkLOKMOGSA_js=require('./chunk-LOKMOGSA.js'),chunk3CKIHQIE_js=require('./chunk-3CKIHQIE.js'),chunkVNYPOCV7_js=require('./chunk-VNYPOCV7.js');function U(e,n,...t){return {type:e,props:n||{},children:t,key:n?.key}}var p=null,w=new WeakMap,h=null;function Y(e,n,t={}){let{state:o,onHydrated:r,onMismatch:a}=t;p=n.firstChild;try{let i;typeof e=="function"&&!$(e)?i={type:e,props:{},children:[],key:void 0}:i=e,F(i,n),r?.();}catch(i){console.warn("[Flexium] Hydration mismatch, falling back to full render:",i),a?.(i),n.innerHTML="",import('./render-IBWAHNEZ.js').then(({render:l})=>{l(e,n);});}finally{p=null;}}function $(e){return e&&typeof e=="object"&&"type"in e&&"props"in e}function F(e,n){if(e==null||typeof e=="boolean")return H(),null;if(typeof e=="string"||typeof e=="number")return Z(String(e));if(Array.isArray(e)){let t=[];for(let o of e){let r=F(o,n);r&&(Array.isArray(r)?t.push(...r):t.push(r));}return t}if(typeof e=="function")return V({type:e,props:{},children:[],key:void 0},n);if(typeof e=="object"&&$(e)){if(typeof e.type=="string")return ee(e);if(typeof e.type=="function")return V(e,n)}return null}function H(){for(;p&&p.nodeType===Node.TEXT_NODE&&(!p.textContent||p.textContent.trim()==="");)p=p.nextSibling;}function Z(e){H();let n=p;if(!n)return null;if(n.nodeType!==Node.TEXT_NODE){if(e.trim()==="")return null;throw new Error(`Hydration mismatch: expected text node "${e}", got ${n.nodeName}`)}return p=n.nextSibling,n}function ee(e){H();let n=p,t=e.type;if(!n||n.nodeType!==Node.ELEMENT_NODE)throw new Error(`Hydration mismatch: expected element <${t}>, got ${n?.nodeName||"nothing"}`);if(n.tagName.toLowerCase()!==t.toLowerCase())throw new Error(`Hydration mismatch: expected <${t}>, got <${n.tagName.toLowerCase()}>`);if(e.props){for(let[o,r]of Object.entries(e.props))if(o==="ref")typeof r=="function"?r(n):r&&typeof r=="object"&&"current"in r&&(r.current=n);else if(o.startsWith("on")&&typeof r=="function"){let a=o.slice(2).toLowerCase();n.addEventListener(a,r),n.__eventHandlers||(n.__eventHandlers={}),n.__eventHandlers[a]=r;}}if(p=n.nextSibling,e.children&&e.children.length>0){let o=p;p=n.firstChild;for(let r of e.children)F(r,n);p=o;}return n}function V(e,n){let t=e.type,o={...e.props};e.children&&e.children.length>0&&(o.children=e.children.length===1?e.children[0]:e.children);let r=t._contextId,a=r!==void 0,i;a&&(i=chunkVNYPOCV7_js.g(r,o.value)),w.has(n)||w.set(n,new Map);let l=w.get(n),C=e.key!==void 0,u;if(C)u=e.key;else {let c=0,y=t.name||"anonymous";l.forEach((v,x)=>{typeof x=="string"&&x.startsWith(`__auto_${y}_`)&&c++;}),u=`__auto_${y}_${c}`;}let s={hooks:[],hookIndex:0,nodes:[],parent:n,fnode:e,props:o,key:u,children:new Set,parentInstance:h||void 0};h&&h.children.add(s),l.set(u,s);let d=h;h=s;try{let c=chunkVNYPOCV7_js.a(s,()=>t(o)),y=F(c,n);s.nodes=y?Array.isArray(y)?y:[y]:[];let v=!0,x=()=>{let X=s.props,B=chunkVNYPOCV7_js.a(s,()=>t(X));if(v){v=!1;return}if(s.nodes.length===0){let g=chunkTHUSQSDY_js.a(B,n);s.nodes=g?Array.isArray(g)?g:[g]:[];return}let m=s.nodes[0].parentNode;if(!m)return;let E=document.createComment("flexium-marker"),L=s.nodes[s.nodes.length-1];L.nextSibling?m.insertBefore(E,L.nextSibling):m.appendChild(E),s.children.clear();let q=document.createElement("div"),N=chunkTHUSQSDY_js.a(B,q,m),G=N?Array.isArray(N)?N:[N]:[],J=chunkTHUSQSDY_js.b(s.nodes,G,m,E);m.removeChild(E),s.nodes=J;};return s.renderFn=x,chunk3CKIHQIE_js.b(x),s.nodes}finally{h=d,a&&chunkVNYPOCV7_js.h(r,i);}}var ne={register:()=>{},hasBoundary:false},P=new chunkVNYPOCV7_js.e(ne);function D(){let[e]=chunkLOKMOGSA_js.c(P);return e}function j(e){let{fallback:n,children:t}=e,o=chunkVNYPOCV7_js.b(()=>new Set),[,r]=chunkLOKMOGSA_js.c(0),[a,i]=chunkLOKMOGSA_js.c(false),C={register:s=>{o.has(s)||(o.add(s),r(d=>d+1),i(true),s.finally(()=>{o.delete(s),r(d=>{let c=d-1;return c===0&&i(false),c});}));},hasBoundary:true},u=a?n:t;return {type:P.Provider,props:{value:C},children:[u],key:void 0}}function W(e){let{fallback:n,onError:t,children:o,resetKey:r}=e,[a,i]=chunkLOKMOGSA_js.c({error:null,info:null}),l=chunkVNYPOCV7_js.b(()=>({current:r}));r!==l.current&&(l.current=r,a.error!==null&&i({error:null,info:null}));if(a.error)return typeof n=="function"?n(a.error,a.info):n;try{return o}finally{}}function K(e){let n=null,t=null,o=null,r=a=>{if(n)return n(a);if(o)throw o;let i=D();return t||(t=e().then(l=>{n=l.default;}).catch(l=>{o=l instanceof Error?l:new Error(String(l));})),i.hasBoundary&&i.register(t),null};return r._lazy=true,r._loader=e,r}Object.defineProperty(exports,"render",{enumerable:true,get:function(){return chunkTHUSQSDY_js.c}});exports.ErrorBoundary=W;exports.Suspense=j;exports.f=U;exports.hydrate=Y;exports.lazy=K;//# sourceMappingURL=dom.js.map
2
2
  //# sourceMappingURL=dom.js.map
package/dist/dom.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/dom/f.ts","../src/dom/hydrate.ts","../src/dom/components/Portal.tsx","../src/dom/components/suspenseContext.ts","../src/dom/components/Suspense.tsx","../src/dom/components/ErrorBoundary.tsx","../src/dom/components/lazy.ts"],"names":["f","type","props","children","hydrationCursor","hydratedInstanceRegistry","currentHydratingInstance","hydrate","app","container","options","state","onHydrated","onMismatch","fnode","isFNode","hydrateNode","error","render","value","parent","skipEmptyTextNodes","hydrateTextNode","nodes","child","result","hydrateComponent","hydrateElement","text","current","tag","key","eventName","savedCursor","Component","contextId","isProvider","prevContextValue","pushContext","parentRegistry","hasExplicitKey","instanceCount","componentName","_","k","instance","previousHydratingInstance","runWithComponent","isFirstRender","renderFn","currentProps","newNodes","renderNode","nodeParent","marker","lastNode","tempContainer","newNodesArray","reconciledNodes","reconcile","unsafeEffect","popContext","Portal","target","portalState","hook","use","onCleanup","portalWrapper","defaultValue","SuspenseCtx","Context","suspenseContext","Suspense","fallback","pendingSet","setPendingCount","showFallback","setShowFallback","contextValue","promise","newCount","content","ErrorBoundary","onError","resetKey","errorState","setErrorState","prevResetKeyRef","lazy","loader","resolved","LazyWrapper","suspense","module","err"],"mappings":"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","file":"dom.js","sourcesContent":["import type { FNode } from './types'\n\n/**\n * f() - Create FNodes without JSX\n */\nexport function f(\n type: string | Function,\n props?: any,\n ...children: any[]\n): FNode {\n return {\n type,\n props: props || {},\n children,\n key: props?.key\n }\n}\n","import type { FNode, FNodeChild } from './types'\nimport type { SerializedState } from '../server/types'\nimport { runWithComponent, type ComponentInstance } from '../core/hook'\nimport { pushContext, popContext } from '../core/context'\nimport { unsafeEffect } from '../core/lifecycle'\nimport { renderNode, reconcile } from './render'\n\n// Hydration state\nlet isHydrating = false\nlet hydrationCursor: Node | null = null\nlet hydrationState: SerializedState | null = null\n\nexport interface HydrateOptions {\n /**\n * Serialized state from server\n * Typically embedded in HTML as JSON script tag\n */\n state?: SerializedState\n\n /**\n * Called when hydration completes successfully\n */\n onHydrated?: () => void\n\n /**\n * Called when hydration fails (falls back to full render)\n */\n onMismatch?: (error: Error) => void\n}\n\n// Extended ComponentInstance for DOM tracking (same as render.ts)\ninterface DOMComponentInstance extends ComponentInstance {\n nodes: Node[]\n parent: HTMLElement\n fnode: any\n props: any\n key?: any\n renderFn?: () => void\n children: Set<DOMComponentInstance>\n parentInstance?: DOMComponentInstance\n}\n\n// Registry for hydrated components\nconst hydratedInstanceRegistry = new WeakMap<HTMLElement, Map<any, DOMComponentInstance>>()\nlet currentHydratingInstance: DOMComponentInstance | null = null\n\nexport function getIsHydrating(): boolean {\n return isHydrating\n}\n\nexport function getHydrationState(): SerializedState | null {\n return hydrationState\n}\n\n/**\n * Hydrate server-rendered HTML with client-side interactivity\n */\nexport function hydrate(\n app: FNodeChild | (() => FNodeChild),\n container: HTMLElement,\n options: HydrateOptions = {}\n): void {\n const { state, onHydrated, onMismatch } = options\n\n // Store state for rehydration\n hydrationState = state || null\n\n // Initialize hydration mode\n isHydrating = true\n hydrationCursor = container.firstChild\n\n try {\n // Normalize input\n let fnode: FNodeChild\n if (typeof app === 'function' && !isFNode(app)) {\n fnode = { type: app, props: {}, children: [], key: undefined }\n } else {\n fnode = app\n }\n\n // Hydrate the tree\n hydrateNode(fnode, container)\n\n onHydrated?.()\n } catch (error) {\n // Hydration mismatch - fall back to full render\n console.warn('[Flexium] Hydration mismatch, falling back to full render:', error)\n onMismatch?.(error as Error)\n\n // Clear and re-render\n container.innerHTML = ''\n // Import dynamically to avoid circular deps\n import('./render').then(({ render }) => {\n render(app, container)\n })\n } finally {\n isHydrating = false\n hydrationCursor = null\n hydrationState = null\n }\n}\n\nfunction isFNode(value: any): value is FNode {\n return value && typeof value === 'object' && 'type' in value && 'props' in value\n}\n\nfunction hydrateNode(fnode: FNodeChild, parent: HTMLElement): Node | Node[] | null {\n // Null/undefined/boolean -> skip empty text nodes\n if (fnode === null || fnode === undefined || typeof fnode === 'boolean') {\n // Server might have rendered an empty text node\n skipEmptyTextNodes()\n return null\n }\n\n // String/number -> expect text node\n if (typeof fnode === 'string' || typeof fnode === 'number') {\n return hydrateTextNode(String(fnode))\n }\n\n // Array -> hydrate each child\n if (Array.isArray(fnode)) {\n const nodes: Node[] = []\n for (const child of fnode) {\n const result = hydrateNode(child, parent)\n if (result) {\n if (Array.isArray(result)) {\n nodes.push(...result)\n } else {\n nodes.push(result)\n }\n }\n }\n return nodes\n }\n\n // Function (standalone) -> wrap in FNode and hydrate\n if (typeof fnode === 'function') {\n const wrappedFnode: FNode = { type: fnode, props: {}, children: [], key: undefined }\n return hydrateComponent(wrappedFnode, parent)\n }\n\n // Object (FNode)\n if (typeof fnode === 'object' && isFNode(fnode)) {\n if (typeof fnode.type === 'string') {\n return hydrateElement(fnode)\n }\n\n if (typeof fnode.type === 'function') {\n return hydrateComponent(fnode, parent)\n }\n }\n\n return null\n}\n\nfunction skipEmptyTextNodes(): void {\n while (\n hydrationCursor &&\n hydrationCursor.nodeType === Node.TEXT_NODE &&\n (!hydrationCursor.textContent || hydrationCursor.textContent.trim() === '')\n ) {\n hydrationCursor = hydrationCursor.nextSibling\n }\n}\n\nfunction hydrateTextNode(text: string): Node | null {\n skipEmptyTextNodes()\n\n const current = hydrationCursor\n\n if (!current) {\n // No node to hydrate - this is okay for conditional rendering\n return null\n }\n\n if (current.nodeType !== Node.TEXT_NODE) {\n // Try to find a text node nearby (whitespace handling)\n if (text.trim() === '') {\n return null\n }\n throw new Error(`Hydration mismatch: expected text node \"${text}\", got ${current.nodeName}`)\n }\n\n // Update cursor\n hydrationCursor = current.nextSibling\n\n return current\n}\n\nfunction hydrateElement(fnode: FNode): Node {\n skipEmptyTextNodes()\n\n const current = hydrationCursor as Element\n const tag = fnode.type as string\n\n // Validate element type\n if (!current || current.nodeType !== Node.ELEMENT_NODE) {\n throw new Error(`Hydration mismatch: expected element <${tag}>, got ${current?.nodeName || 'nothing'}`)\n }\n\n if (current.tagName.toLowerCase() !== tag.toLowerCase()) {\n throw new Error(`Hydration mismatch: expected <${tag}>, got <${current.tagName.toLowerCase()}>`)\n }\n\n // Attach event handlers and refs (don't modify DOM structure)\n if (fnode.props) {\n for (const [key, value] of Object.entries(fnode.props)) {\n if (key === 'ref') {\n if (typeof value === 'function') {\n value(current)\n } else if (value && typeof value === 'object' && 'current' in value) {\n value.current = current\n }\n } else if (key.startsWith('on') && typeof value === 'function') {\n const eventName = key.slice(2).toLowerCase()\n current.addEventListener(eventName, value as EventListener)\n\n // Store for reconciliation\n if (!(current as any).__eventHandlers) {\n (current as any).__eventHandlers = {}\n }\n (current as any).__eventHandlers[eventName] = value\n }\n }\n }\n\n // Move cursor past this element\n hydrationCursor = current.nextSibling\n\n // Hydrate children\n if (fnode.children && fnode.children.length > 0) {\n const savedCursor = hydrationCursor\n\n hydrationCursor = current.firstChild\n\n for (const child of fnode.children) {\n hydrateNode(child, current as HTMLElement)\n }\n\n hydrationCursor = savedCursor\n }\n\n return current\n}\n\nfunction hydrateComponent(fnode: FNode, parent: HTMLElement): Node | Node[] | null {\n const Component = fnode.type as Function\n\n // Merge props\n const props = { ...fnode.props }\n if (fnode.children && fnode.children.length > 0) {\n props.children = fnode.children.length === 1\n ? fnode.children[0]\n : fnode.children\n }\n\n // Handle context providers\n const contextId = (Component as any)._contextId\n const isProvider = contextId !== undefined\n let prevContextValue: any\n\n if (isProvider) {\n prevContextValue = pushContext(contextId, props.value)\n }\n\n // Generate key (same logic as render.ts)\n if (!hydratedInstanceRegistry.has(parent)) {\n hydratedInstanceRegistry.set(parent, new Map())\n }\n const parentRegistry = hydratedInstanceRegistry.get(parent)!\n\n const hasExplicitKey = fnode.key !== undefined\n let key: any\n if (hasExplicitKey) {\n key = fnode.key\n } else {\n let instanceCount = 0\n const componentName = (Component as any).name || 'anonymous'\n parentRegistry.forEach((_, k) => {\n if (typeof k === 'string' && k.startsWith(`__auto_${componentName}_`)) {\n instanceCount++\n }\n })\n key = `__auto_${componentName}_${instanceCount}`\n }\n\n // Create component instance\n const instance: DOMComponentInstance = {\n hooks: [],\n hookIndex: 0,\n nodes: [],\n parent,\n fnode,\n props,\n key,\n children: new Set(),\n parentInstance: currentHydratingInstance || undefined\n }\n\n if (currentHydratingInstance) {\n currentHydratingInstance.children.add(instance)\n }\n\n parentRegistry.set(key, instance)\n\n const previousHydratingInstance = currentHydratingInstance\n currentHydratingInstance = instance\n\n try {\n // First render during hydration - just match DOM\n const result = runWithComponent(instance, () => Component(props))\n const nodes = hydrateNode(result, parent)\n instance.nodes = nodes ? (Array.isArray(nodes) ? nodes : [nodes]) : []\n\n // Set up reactive re-rendering for future updates\n let isFirstRender = true\n const renderFn = () => {\n // Re-render with reconciliation (same logic as render.ts)\n const currentProps = instance.props\n\n // Always run the component to establish reactive tracking\n const result = runWithComponent(instance, () => Component(currentProps))\n\n if (isFirstRender) {\n isFirstRender = false\n return // Skip DOM manipulation on first render, already done during hydration\n }\n\n if (instance.nodes.length === 0) {\n const newNodes = renderNode(result, parent)\n instance.nodes = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n return\n }\n\n const firstNode = instance.nodes[0]\n const nodeParent = firstNode.parentNode as HTMLElement\n\n if (!nodeParent) {\n return\n }\n\n const marker = document.createComment('flexium-marker')\n const lastNode = instance.nodes[instance.nodes.length - 1]\n if (lastNode.nextSibling) {\n nodeParent.insertBefore(marker, lastNode.nextSibling)\n } else {\n nodeParent.appendChild(marker)\n }\n\n instance.children.clear()\n\n const tempContainer = document.createElement('div')\n const newNodes = renderNode(result, tempContainer, nodeParent)\n const newNodesArray = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n\n const reconciledNodes = reconcile(instance.nodes, newNodesArray, nodeParent, marker)\n\n nodeParent.removeChild(marker)\n\n instance.nodes = reconciledNodes\n }\n\n instance.renderFn = renderFn\n unsafeEffect(renderFn)\n\n return instance.nodes\n } finally {\n currentHydratingInstance = previousHydratingInstance\n\n if (isProvider) {\n popContext(contextId, prevContextValue)\n }\n }\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport { render } from '../render'\nimport type { PortalProps } from './types'\n\n/**\n * Portal component that renders children into a different DOM node\n *\n * @deprecated Use Portal from 'flexium-ui' instead:\n * ```tsx\n * import { Portal } from 'flexium-ui'\n * ```\n *\n * @example\n * ```tsx\n * function Modal({ isOpen, onClose, children }) {\n * if (!isOpen) return null\n *\n * return (\n * <Portal target={document.body}>\n * <div class=\"modal-backdrop\" onClick={onClose}>\n * <div class=\"modal-content\" onClick={e => e.stopPropagation()}>\n * {children}\n * </div>\n * </div>\n * </Portal>\n * )\n * }\n * ```\n */\nexport function Portal(props: PortalProps): null {\n const { target, children } = props\n\n // Store rendered container for cleanup\n const portalState = hook(() => ({\n container: null as HTMLElement | null,\n mounted: false\n }))\n\n use(({ onCleanup }) => {\n // Resolve target container\n let container: HTMLElement | null = null\n\n if (typeof target === 'string') {\n container = document.querySelector(target)\n } else if (target instanceof HTMLElement) {\n container = target\n }\n\n if (!container) {\n console.warn('[Flexium Portal] Target container not found:', target)\n return\n }\n\n // Create a wrapper div to contain portal content\n const portalWrapper = document.createElement('div')\n portalWrapper.setAttribute('data-flexium-portal', 'true')\n container.appendChild(portalWrapper)\n\n portalState.container = portalWrapper\n portalState.mounted = true\n\n // Render children into the portal wrapper\n render(children, portalWrapper)\n\n // Cleanup function\n onCleanup(() => {\n if (portalWrapper.parentNode) {\n portalWrapper.parentNode.removeChild(portalWrapper)\n }\n portalState.container = null\n portalState.mounted = false\n })\n }, [target, children])\n\n // Portal renders nothing in its original location\n return null\n}\n","import { Context } from '../../core/context'\nimport { use } from '../../core/use'\nimport type { SuspenseContextValue } from './types'\n\nconst defaultValue: SuspenseContextValue = {\n register: () => {},\n hasBoundary: false\n}\n\nexport const SuspenseCtx = new Context<SuspenseContextValue>(defaultValue)\n\nexport function suspenseContext(): SuspenseContextValue {\n const [value] = use(SuspenseCtx)\n return value\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport { SuspenseCtx } from './suspenseContext'\nimport type { SuspenseProps, SuspenseContextValue } from './types'\nimport type { FNodeChild } from '../types'\n\n/**\n * Suspense component that shows fallback while children are loading\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function Suspense(props: SuspenseProps): FNodeChild {\n const { fallback, children } = props\n\n // Track pending promises using hook for mutable Set\n const pendingSet = hook(() => new Set<Promise<any>>())\n const [, setPendingCount] = use(0)\n const [showFallback, setShowFallback] = use(false)\n\n // Register function for lazy components\n const register = (promise: Promise<any>) => {\n if (!pendingSet.has(promise)) {\n // Add to pending set\n pendingSet.add(promise)\n setPendingCount(c => c + 1)\n setShowFallback(true)\n\n // Wait for resolution\n promise.finally(() => {\n pendingSet.delete(promise)\n setPendingCount(c => {\n const newCount = c - 1\n if (newCount === 0) {\n setShowFallback(false)\n }\n return newCount\n })\n })\n }\n }\n\n const contextValue: SuspenseContextValue = {\n register,\n hasBoundary: true\n }\n\n // Render fallback or children based on pending state\n const content = showFallback ? fallback : children\n\n // Wrap content with Suspense context provider\n return {\n type: SuspenseCtx.Provider,\n props: { value: contextValue },\n children: [content],\n key: undefined\n } as any\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport type { FNodeChild } from '../types'\nimport type { ErrorInfo, ErrorBoundaryProps } from './types'\n\n// Component name stack for error messages\nlet componentNameStack: string[] = []\n\nexport function pushComponentName(name: string): void {\n componentNameStack.push(name)\n}\n\nexport function popComponentName(): void {\n componentNameStack.pop()\n}\n\nexport function getComponentStack(): string {\n return componentNameStack\n .map(name => ` at ${name}`)\n .reverse()\n .join('\\n')\n}\n\n// Stack of error boundaries for nested error propagation\ninterface ErrorBoundaryInstance {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => void\n}\n\nlet errorBoundaryStack: ErrorBoundaryInstance[] = []\n\nexport function pushErrorBoundary(instance: ErrorBoundaryInstance): void {\n errorBoundaryStack.push(instance)\n}\n\nexport function popErrorBoundary(): void {\n errorBoundaryStack.pop()\n}\n\nexport function getNearestErrorBoundary(): ErrorBoundaryInstance | null {\n return errorBoundaryStack[errorBoundaryStack.length - 1] || null\n}\n\n/**\n * ErrorBoundary component that catches errors in its children and displays fallback UI\n *\n * @example\n * ```tsx\n * <ErrorBoundary\n * fallback={(error, info) => <div>Error: {error.message}</div>}\n * onError={(error, info) => console.error(error)}\n * >\n * <App />\n * </ErrorBoundary>\n * ```\n */\nexport function ErrorBoundary(props: ErrorBoundaryProps): FNodeChild {\n const { fallback, onError, children, resetKey } = props\n\n // Error state\n const [errorState, setErrorState] = use<{\n error: Error | null\n info: ErrorInfo | null\n }>({ error: null, info: null })\n\n // Track reset key changes to clear error\n const prevResetKeyRef = hook(() => ({ current: resetKey }))\n\n if (resetKey !== prevResetKeyRef.current) {\n prevResetKeyRef.current = resetKey\n if (errorState.error !== null) {\n setErrorState({ error: null, info: null })\n }\n }\n\n // Error boundary instance\n const boundaryInstance: ErrorBoundaryInstance = {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => {\n const info: ErrorInfo = {\n componentStack: getComponentStack(),\n phase\n }\n\n // Call error callback\n onError?.(error, info)\n\n // Update error state (triggers re-render with fallback)\n setErrorState({ error, info })\n }\n }\n\n // If we have an error, render fallback\n if (errorState.error) {\n if (typeof fallback === 'function') {\n return fallback(errorState.error, errorState.info!)\n }\n return fallback\n }\n\n // Push boundary onto stack for children to use\n pushErrorBoundary(boundaryInstance)\n\n try {\n // Return children - they will be rendered with this boundary active\n return children\n } finally {\n popErrorBoundary()\n }\n}\n","import { suspenseContext } from './suspenseContext'\nimport type { FNodeChild } from '../types'\nimport type { LazyComponent } from './types'\n\n/**\n * Creates a lazy-loaded component for code splitting\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n * const Settings = lazy(() => import('./Settings'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function lazy<P = {}>(\n loader: () => Promise<{ default: (props: P) => FNodeChild }>\n): LazyComponent<P> {\n // Shared state across all instances\n let resolved: ((props: P) => FNodeChild) | null = null\n let promise: Promise<any> | null = null\n let error: Error | null = null\n\n // The wrapper component\n const LazyWrapper = (props: P): FNodeChild => {\n // If already resolved, render immediately\n if (resolved) {\n return resolved(props)\n }\n\n // If error occurred, throw it (will be caught by ErrorBoundary)\n if (error) {\n throw error\n }\n\n // Get suspense context\n const suspense = suspenseContext()\n\n // Start loading if not already\n if (!promise) {\n promise = loader()\n .then(module => {\n resolved = module.default\n })\n .catch(err => {\n error = err instanceof Error ? err : new Error(String(err))\n })\n }\n\n // Register with suspense boundary if available\n if (suspense.hasBoundary) {\n suspense.register(promise)\n }\n\n // Return null - Suspense will show fallback\n return null\n }\n\n // Mark as lazy component\n ;(LazyWrapper as LazyComponent<P>)._lazy = true\n ;(LazyWrapper as LazyComponent<P>)._loader = loader\n\n return LazyWrapper as LazyComponent<P>\n}\n"]}
1
+ {"version":3,"sources":["../src/dom/f.ts","../src/dom/hydrate.ts","../src/dom/components/suspenseContext.ts","../src/dom/components/Suspense.tsx","../src/dom/components/ErrorBoundary.tsx","../src/dom/components/lazy.ts"],"names":["f","type","props","children","hydrationCursor","hydratedInstanceRegistry","currentHydratingInstance","hydrate","app","container","options","state","onHydrated","onMismatch","fnode","isFNode","hydrateNode","error","render","value","parent","skipEmptyTextNodes","hydrateTextNode","nodes","child","result","hydrateComponent","hydrateElement","text","current","tag","key","eventName","savedCursor","Component","contextId","isProvider","prevContextValue","pushContext","parentRegistry","hasExplicitKey","instanceCount","componentName","_","k","instance","previousHydratingInstance","runWithComponent","isFirstRender","renderFn","currentProps","newNodes","renderNode","nodeParent","marker","lastNode","tempContainer","newNodesArray","reconciledNodes","reconcile","unsafeEffect","popContext","defaultValue","SuspenseCtx","Context","suspenseContext","use","Suspense","fallback","pendingSet","hook","setPendingCount","showFallback","setShowFallback","contextValue","promise","c","newCount","content","ErrorBoundary","onError","resetKey","errorState","setErrorState","prevResetKeyRef","lazy","loader","resolved","LazyWrapper","suspense","module","err"],"mappings":"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","file":"dom.js","sourcesContent":["import type { FNode } from './types'\n\n/**\n * f() - Create FNodes without JSX\n */\nexport function f(\n type: string | Function,\n props?: any,\n ...children: any[]\n): FNode {\n return {\n type,\n props: props || {},\n children,\n key: props?.key\n }\n}\n","import type { FNode, FNodeChild } from './types'\nimport type { SerializedState } from '../server/types'\nimport { runWithComponent, type ComponentInstance } from '../core/hook'\nimport { pushContext, popContext } from '../core/context'\nimport { unsafeEffect } from '../core/lifecycle'\nimport { renderNode, reconcile } from './render'\n\n// Hydration state\nlet isHydrating = false\nlet hydrationCursor: Node | null = null\nlet hydrationState: SerializedState | null = null\n\nexport interface HydrateOptions {\n /**\n * Serialized state from server\n * Typically embedded in HTML as JSON script tag\n */\n state?: SerializedState\n\n /**\n * Called when hydration completes successfully\n */\n onHydrated?: () => void\n\n /**\n * Called when hydration fails (falls back to full render)\n */\n onMismatch?: (error: Error) => void\n}\n\n// Extended ComponentInstance for DOM tracking (same as render.ts)\ninterface DOMComponentInstance extends ComponentInstance {\n nodes: Node[]\n parent: HTMLElement\n fnode: any\n props: any\n key?: any\n renderFn?: () => void\n children: Set<DOMComponentInstance>\n parentInstance?: DOMComponentInstance\n}\n\n// Registry for hydrated components\nconst hydratedInstanceRegistry = new WeakMap<HTMLElement, Map<any, DOMComponentInstance>>()\nlet currentHydratingInstance: DOMComponentInstance | null = null\n\nexport function getIsHydrating(): boolean {\n return isHydrating\n}\n\nexport function getHydrationState(): SerializedState | null {\n return hydrationState\n}\n\n/**\n * Hydrate server-rendered HTML with client-side interactivity\n */\nexport function hydrate(\n app: FNodeChild | (() => FNodeChild),\n container: HTMLElement,\n options: HydrateOptions = {}\n): void {\n const { state, onHydrated, onMismatch } = options\n\n // Store state for rehydration\n hydrationState = state || null\n\n // Initialize hydration mode\n isHydrating = true\n hydrationCursor = container.firstChild\n\n try {\n // Normalize input\n let fnode: FNodeChild\n if (typeof app === 'function' && !isFNode(app)) {\n fnode = { type: app, props: {}, children: [], key: undefined }\n } else {\n fnode = app\n }\n\n // Hydrate the tree\n hydrateNode(fnode, container)\n\n onHydrated?.()\n } catch (error) {\n // Hydration mismatch - fall back to full render\n console.warn('[Flexium] Hydration mismatch, falling back to full render:', error)\n onMismatch?.(error as Error)\n\n // Clear and re-render\n container.innerHTML = ''\n // Import dynamically to avoid circular deps\n import('./render').then(({ render }) => {\n render(app, container)\n })\n } finally {\n isHydrating = false\n hydrationCursor = null\n hydrationState = null\n }\n}\n\nfunction isFNode(value: any): value is FNode {\n return value && typeof value === 'object' && 'type' in value && 'props' in value\n}\n\nfunction hydrateNode(fnode: FNodeChild, parent: HTMLElement): Node | Node[] | null {\n // Null/undefined/boolean -> skip empty text nodes\n if (fnode === null || fnode === undefined || typeof fnode === 'boolean') {\n // Server might have rendered an empty text node\n skipEmptyTextNodes()\n return null\n }\n\n // String/number -> expect text node\n if (typeof fnode === 'string' || typeof fnode === 'number') {\n return hydrateTextNode(String(fnode))\n }\n\n // Array -> hydrate each child\n if (Array.isArray(fnode)) {\n const nodes: Node[] = []\n for (const child of fnode) {\n const result = hydrateNode(child, parent)\n if (result) {\n if (Array.isArray(result)) {\n nodes.push(...result)\n } else {\n nodes.push(result)\n }\n }\n }\n return nodes\n }\n\n // Function (standalone) -> wrap in FNode and hydrate\n if (typeof fnode === 'function') {\n const wrappedFnode: FNode = { type: fnode, props: {}, children: [], key: undefined }\n return hydrateComponent(wrappedFnode, parent)\n }\n\n // Object (FNode)\n if (typeof fnode === 'object' && isFNode(fnode)) {\n if (typeof fnode.type === 'string') {\n return hydrateElement(fnode)\n }\n\n if (typeof fnode.type === 'function') {\n return hydrateComponent(fnode, parent)\n }\n }\n\n return null\n}\n\nfunction skipEmptyTextNodes(): void {\n while (\n hydrationCursor &&\n hydrationCursor.nodeType === Node.TEXT_NODE &&\n (!hydrationCursor.textContent || hydrationCursor.textContent.trim() === '')\n ) {\n hydrationCursor = hydrationCursor.nextSibling\n }\n}\n\nfunction hydrateTextNode(text: string): Node | null {\n skipEmptyTextNodes()\n\n const current = hydrationCursor\n\n if (!current) {\n // No node to hydrate - this is okay for conditional rendering\n return null\n }\n\n if (current.nodeType !== Node.TEXT_NODE) {\n // Try to find a text node nearby (whitespace handling)\n if (text.trim() === '') {\n return null\n }\n throw new Error(`Hydration mismatch: expected text node \"${text}\", got ${current.nodeName}`)\n }\n\n // Update cursor\n hydrationCursor = current.nextSibling\n\n return current\n}\n\nfunction hydrateElement(fnode: FNode): Node {\n skipEmptyTextNodes()\n\n const current = hydrationCursor as Element\n const tag = fnode.type as string\n\n // Validate element type\n if (!current || current.nodeType !== Node.ELEMENT_NODE) {\n throw new Error(`Hydration mismatch: expected element <${tag}>, got ${current?.nodeName || 'nothing'}`)\n }\n\n if (current.tagName.toLowerCase() !== tag.toLowerCase()) {\n throw new Error(`Hydration mismatch: expected <${tag}>, got <${current.tagName.toLowerCase()}>`)\n }\n\n // Attach event handlers and refs (don't modify DOM structure)\n if (fnode.props) {\n for (const [key, value] of Object.entries(fnode.props)) {\n if (key === 'ref') {\n if (typeof value === 'function') {\n value(current)\n } else if (value && typeof value === 'object' && 'current' in value) {\n value.current = current\n }\n } else if (key.startsWith('on') && typeof value === 'function') {\n const eventName = key.slice(2).toLowerCase()\n current.addEventListener(eventName, value as EventListener)\n\n // Store for reconciliation\n if (!(current as any).__eventHandlers) {\n (current as any).__eventHandlers = {}\n }\n (current as any).__eventHandlers[eventName] = value\n }\n }\n }\n\n // Move cursor past this element\n hydrationCursor = current.nextSibling\n\n // Hydrate children\n if (fnode.children && fnode.children.length > 0) {\n const savedCursor = hydrationCursor\n\n hydrationCursor = current.firstChild\n\n for (const child of fnode.children) {\n hydrateNode(child, current as HTMLElement)\n }\n\n hydrationCursor = savedCursor\n }\n\n return current\n}\n\nfunction hydrateComponent(fnode: FNode, parent: HTMLElement): Node | Node[] | null {\n const Component = fnode.type as Function\n\n // Merge props\n const props = { ...fnode.props }\n if (fnode.children && fnode.children.length > 0) {\n props.children = fnode.children.length === 1\n ? fnode.children[0]\n : fnode.children\n }\n\n // Handle context providers\n const contextId = (Component as any)._contextId\n const isProvider = contextId !== undefined\n let prevContextValue: any\n\n if (isProvider) {\n prevContextValue = pushContext(contextId, props.value)\n }\n\n // Generate key (same logic as render.ts)\n if (!hydratedInstanceRegistry.has(parent)) {\n hydratedInstanceRegistry.set(parent, new Map())\n }\n const parentRegistry = hydratedInstanceRegistry.get(parent)!\n\n const hasExplicitKey = fnode.key !== undefined\n let key: any\n if (hasExplicitKey) {\n key = fnode.key\n } else {\n let instanceCount = 0\n const componentName = (Component as any).name || 'anonymous'\n parentRegistry.forEach((_, k) => {\n if (typeof k === 'string' && k.startsWith(`__auto_${componentName}_`)) {\n instanceCount++\n }\n })\n key = `__auto_${componentName}_${instanceCount}`\n }\n\n // Create component instance\n const instance: DOMComponentInstance = {\n hooks: [],\n hookIndex: 0,\n nodes: [],\n parent,\n fnode,\n props,\n key,\n children: new Set(),\n parentInstance: currentHydratingInstance || undefined\n }\n\n if (currentHydratingInstance) {\n currentHydratingInstance.children.add(instance)\n }\n\n parentRegistry.set(key, instance)\n\n const previousHydratingInstance = currentHydratingInstance\n currentHydratingInstance = instance\n\n try {\n // First render during hydration - just match DOM\n const result = runWithComponent(instance, () => Component(props))\n const nodes = hydrateNode(result, parent)\n instance.nodes = nodes ? (Array.isArray(nodes) ? nodes : [nodes]) : []\n\n // Set up reactive re-rendering for future updates\n let isFirstRender = true\n const renderFn = () => {\n // Re-render with reconciliation (same logic as render.ts)\n const currentProps = instance.props\n\n // Always run the component to establish reactive tracking\n const result = runWithComponent(instance, () => Component(currentProps))\n\n if (isFirstRender) {\n isFirstRender = false\n return // Skip DOM manipulation on first render, already done during hydration\n }\n\n if (instance.nodes.length === 0) {\n const newNodes = renderNode(result, parent)\n instance.nodes = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n return\n }\n\n const firstNode = instance.nodes[0]\n const nodeParent = firstNode.parentNode as HTMLElement\n\n if (!nodeParent) {\n return\n }\n\n const marker = document.createComment('flexium-marker')\n const lastNode = instance.nodes[instance.nodes.length - 1]\n if (lastNode.nextSibling) {\n nodeParent.insertBefore(marker, lastNode.nextSibling)\n } else {\n nodeParent.appendChild(marker)\n }\n\n instance.children.clear()\n\n const tempContainer = document.createElement('div')\n const newNodes = renderNode(result, tempContainer, nodeParent)\n const newNodesArray = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n\n const reconciledNodes = reconcile(instance.nodes, newNodesArray, nodeParent, marker)\n\n nodeParent.removeChild(marker)\n\n instance.nodes = reconciledNodes\n }\n\n instance.renderFn = renderFn\n unsafeEffect(renderFn)\n\n return instance.nodes\n } finally {\n currentHydratingInstance = previousHydratingInstance\n\n if (isProvider) {\n popContext(contextId, prevContextValue)\n }\n }\n}\n","import { Context } from '../../core/context'\nimport { use } from '../../core/use'\nimport type { SuspenseContextValue } from './types'\n\nconst defaultValue: SuspenseContextValue = {\n register: () => {},\n hasBoundary: false\n}\n\nexport const SuspenseCtx = new Context<SuspenseContextValue>(defaultValue)\n\nexport function suspenseContext(): SuspenseContextValue {\n const [value] = use(SuspenseCtx)\n return value\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport { SuspenseCtx } from './suspenseContext'\nimport type { SuspenseProps, SuspenseContextValue } from './types'\nimport type { FNodeChild } from '../types'\n\n/**\n * Suspense component that shows fallback while children are loading\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function Suspense(props: SuspenseProps): FNodeChild {\n const { fallback, children } = props\n\n // Track pending promises using hook for mutable Set\n const pendingSet = hook(() => new Set<Promise<any>>())\n const [, setPendingCount] = use(0)\n const [showFallback, setShowFallback] = use(false)\n\n // Register function for lazy components\n const register = (promise: Promise<any>) => {\n if (!pendingSet.has(promise)) {\n // Add to pending set\n pendingSet.add(promise)\n setPendingCount(c => c + 1)\n setShowFallback(true)\n\n // Wait for resolution\n promise.finally(() => {\n pendingSet.delete(promise)\n setPendingCount(c => {\n const newCount = c - 1\n if (newCount === 0) {\n setShowFallback(false)\n }\n return newCount\n })\n })\n }\n }\n\n const contextValue: SuspenseContextValue = {\n register,\n hasBoundary: true\n }\n\n // Render fallback or children based on pending state\n const content = showFallback ? fallback : children\n\n // Wrap content with Suspense context provider\n return {\n type: SuspenseCtx.Provider,\n props: { value: contextValue },\n children: [content],\n key: undefined\n } as any\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport type { FNodeChild } from '../types'\nimport type { ErrorInfo, ErrorBoundaryProps } from './types'\n\n// Component name stack for error messages\nlet componentNameStack: string[] = []\n\nexport function pushComponentName(name: string): void {\n componentNameStack.push(name)\n}\n\nexport function popComponentName(): void {\n componentNameStack.pop()\n}\n\nexport function getComponentStack(): string {\n return componentNameStack\n .map(name => ` at ${name}`)\n .reverse()\n .join('\\n')\n}\n\n// Stack of error boundaries for nested error propagation\ninterface ErrorBoundaryInstance {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => void\n}\n\nlet errorBoundaryStack: ErrorBoundaryInstance[] = []\n\nexport function pushErrorBoundary(instance: ErrorBoundaryInstance): void {\n errorBoundaryStack.push(instance)\n}\n\nexport function popErrorBoundary(): void {\n errorBoundaryStack.pop()\n}\n\nexport function getNearestErrorBoundary(): ErrorBoundaryInstance | null {\n return errorBoundaryStack[errorBoundaryStack.length - 1] || null\n}\n\n/**\n * ErrorBoundary component that catches errors in its children and displays fallback UI\n *\n * @example\n * ```tsx\n * <ErrorBoundary\n * fallback={(error, info) => <div>Error: {error.message}</div>}\n * onError={(error, info) => console.error(error)}\n * >\n * <App />\n * </ErrorBoundary>\n * ```\n */\nexport function ErrorBoundary(props: ErrorBoundaryProps): FNodeChild {\n const { fallback, onError, children, resetKey } = props\n\n // Error state\n const [errorState, setErrorState] = use<{\n error: Error | null\n info: ErrorInfo | null\n }>({ error: null, info: null })\n\n // Track reset key changes to clear error\n const prevResetKeyRef = hook(() => ({ current: resetKey }))\n\n if (resetKey !== prevResetKeyRef.current) {\n prevResetKeyRef.current = resetKey\n if (errorState.error !== null) {\n setErrorState({ error: null, info: null })\n }\n }\n\n // Error boundary instance\n const boundaryInstance: ErrorBoundaryInstance = {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => {\n const info: ErrorInfo = {\n componentStack: getComponentStack(),\n phase\n }\n\n // Call error callback\n onError?.(error, info)\n\n // Update error state (triggers re-render with fallback)\n setErrorState({ error, info })\n }\n }\n\n // If we have an error, render fallback\n if (errorState.error) {\n if (typeof fallback === 'function') {\n return fallback(errorState.error, errorState.info!)\n }\n return fallback\n }\n\n // Push boundary onto stack for children to use\n pushErrorBoundary(boundaryInstance)\n\n try {\n // Return children - they will be rendered with this boundary active\n return children\n } finally {\n popErrorBoundary()\n }\n}\n","import { suspenseContext } from './suspenseContext'\nimport type { FNodeChild } from '../types'\nimport type { LazyComponent } from './types'\n\n/**\n * Creates a lazy-loaded component for code splitting\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n * const Settings = lazy(() => import('./Settings'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function lazy<P = {}>(\n loader: () => Promise<{ default: (props: P) => FNodeChild }>\n): LazyComponent<P> {\n // Shared state across all instances\n let resolved: ((props: P) => FNodeChild) | null = null\n let promise: Promise<any> | null = null\n let error: Error | null = null\n\n // The wrapper component\n const LazyWrapper = (props: P): FNodeChild => {\n // If already resolved, render immediately\n if (resolved) {\n return resolved(props)\n }\n\n // If error occurred, throw it (will be caught by ErrorBoundary)\n if (error) {\n throw error\n }\n\n // Get suspense context\n const suspense = suspenseContext()\n\n // Start loading if not already\n if (!promise) {\n promise = loader()\n .then(module => {\n resolved = module.default\n })\n .catch(err => {\n error = err instanceof Error ? err : new Error(String(err))\n })\n }\n\n // Register with suspense boundary if available\n if (suspense.hasBoundary) {\n suspense.register(promise)\n }\n\n // Return null - Suspense will show fallback\n return null\n }\n\n // Mark as lazy component\n ;(LazyWrapper as LazyComponent<P>)._lazy = true\n ;(LazyWrapper as LazyComponent<P>)._loader = loader\n\n return LazyWrapper as LazyComponent<P>\n}\n"]}
package/dist/dom.mjs CHANGED
@@ -1,2 +1,2 @@
1
- import {a as a$1,b,c as c$1}from'./chunk-BJ4IXTUD.mjs';export{c as render}from'./chunk-BJ4IXTUD.mjs';import {c}from'./chunk-4DTHOZSY.mjs';import {b as b$1}from'./chunk-NRPWBHKP.mjs';import {e,g,a,h,b as b$2}from'./chunk-64L26RKO.mjs';function Y(e,t,...o){return {type:e,props:t||{},children:o,key:t?.key}}var l=null,H=new WeakMap,C=null;function Z(e,t,o={}){let{state:n,onHydrated:r,onMismatch:a}=o;l=t.firstChild;try{let s;typeof e=="function"&&!D(e)?s={type:e,props:{},children:[],key:void 0}:s=e,P(s,t),r?.();}catch(s){console.warn("[Flexium] Hydration mismatch, falling back to full render:",s),a?.(s),t.innerHTML="",import('./render-SKTTFEON.mjs').then(({render:p})=>{p(e,t);});}finally{l=null;}}function D(e){return e&&typeof e=="object"&&"type"in e&&"props"in e}function P(e,t){if(e==null||typeof e=="boolean")return I(),null;if(typeof e=="string"||typeof e=="number")return ee(String(e));if(Array.isArray(e)){let o=[];for(let n of e){let r=P(n,t);r&&(Array.isArray(r)?o.push(...r):o.push(r));}return o}if(typeof e=="function")return $({type:e,props:{},children:[],key:void 0},t);if(typeof e=="object"&&D(e)){if(typeof e.type=="string")return te(e);if(typeof e.type=="function")return $(e,t)}return null}function I(){for(;l&&l.nodeType===Node.TEXT_NODE&&(!l.textContent||l.textContent.trim()==="");)l=l.nextSibling;}function ee(e){I();let t=l;if(!t)return null;if(t.nodeType!==Node.TEXT_NODE){if(e.trim()==="")return null;throw new Error(`Hydration mismatch: expected text node "${e}", got ${t.nodeName}`)}return l=t.nextSibling,t}function te(e){I();let t=l,o=e.type;if(!t||t.nodeType!==Node.ELEMENT_NODE)throw new Error(`Hydration mismatch: expected element <${o}>, got ${t?.nodeName||"nothing"}`);if(t.tagName.toLowerCase()!==o.toLowerCase())throw new Error(`Hydration mismatch: expected <${o}>, got <${t.tagName.toLowerCase()}>`);if(e.props){for(let[n,r]of Object.entries(e.props))if(n==="ref")typeof r=="function"?r(t):r&&typeof r=="object"&&"current"in r&&(r.current=t);else if(n.startsWith("on")&&typeof r=="function"){let a=n.slice(2).toLowerCase();t.addEventListener(a,r),t.__eventHandlers||(t.__eventHandlers={}),t.__eventHandlers[a]=r;}}if(l=t.nextSibling,e.children&&e.children.length>0){let n=l;l=t.firstChild;for(let r of e.children)P(r,t);l=n;}return t}function $(e,t){let o=e.type,n={...e.props};e.children&&e.children.length>0&&(n.children=e.children.length===1?e.children[0]:e.children);let r=o._contextId,a$2=r!==void 0,s;a$2&&(s=g(r,n.value)),H.has(t)||H.set(t,new Map);let p=H.get(t),x=e.key!==void 0,u;if(x)u=e.key;else {let f=0,y=o.name||"anonymous";p.forEach((v,E)=>{typeof E=="string"&&E.startsWith(`__auto_${y}_`)&&f++;}),u=`__auto_${y}_${f}`;}let i={hooks:[],hookIndex:0,nodes:[],parent:t,fnode:e,props:n,key:u,children:new Set,parentInstance:C||void 0};C&&C.children.add(i),p.set(u,i);let c=C;C=i;try{let f=a(i,()=>o(n)),y=P(f,t);i.nodes=y?Array.isArray(y)?y:[y]:[];let v=!0,E=()=>{let G=i.props,B=a(i,()=>o(G));if(v){v=!1;return}if(i.nodes.length===0){let S=a$1(B,t);i.nodes=S?Array.isArray(S)?S:[S]:[];return}let m=i.nodes[0].parentNode;if(!m)return;let N=document.createComment("flexium-marker"),M=i.nodes[i.nodes.length-1];M.nextSibling?m.insertBefore(N,M.nextSibling):m.appendChild(N),i.children.clear();let J=document.createElement("div"),g=a$1(B,J,m),Q=g?Array.isArray(g)?g:[g]:[],U=b(i.nodes,Q,m,N);m.removeChild(N),i.nodes=U;};return i.renderFn=E,b$1(E),i.nodes}finally{C=c,a$2&&h(r,s);}}function W(e){let{target:t,children:o}=e,n=b$2(()=>({container:null,mounted:false}));return c(({onCleanup:r})=>{let a=null;if(typeof t=="string"?a=document.querySelector(t):t instanceof HTMLElement&&(a=t),!a){console.warn("[Flexium Portal] Target container not found:",t);return}let s=document.createElement("div");s.setAttribute("data-flexium-portal","true"),a.appendChild(s),n.container=s,n.mounted=true,c$1(o,s),r(()=>{s.parentNode&&s.parentNode.removeChild(s),n.container=null,n.mounted=false;});},[t,o]),null}var re={register:()=>{},hasBoundary:false},L=new e(re);function j(){let[e]=c(L);return e}function R(e){let{fallback:t,children:o}=e,n=b$2(()=>new Set),[,r]=c(0),[a,s]=c(false),x={register:i=>{n.has(i)||(n.add(i),r(c=>c+1),s(true),i.finally(()=>{n.delete(i),r(c=>{let f=c-1;return f===0&&s(false),f});}));},hasBoundary:true},u=a?t:o;return {type:L.Provider,props:{value:x},children:[u],key:void 0}}function X(e){let{fallback:t,onError:o,children:n,resetKey:r}=e,[a,s]=c({error:null,info:null}),p=b$2(()=>({current:r}));r!==p.current&&(p.current=r,a.error!==null&&s({error:null,info:null}));if(a.error)return typeof t=="function"?t(a.error,a.info):t;try{return n}finally{}}function q(e){let t=null,o=null,n=null,r=a=>{if(t)return t(a);if(n)throw n;let s=j();return o||(o=e().then(p=>{t=p.default;}).catch(p=>{n=p instanceof Error?p:new Error(String(p));})),s.hasBoundary&&s.register(o),null};return r._lazy=true,r._loader=e,r}export{X as ErrorBoundary,W as Portal,R as Suspense,Y as f,Z as hydrate,q as lazy};//# sourceMappingURL=dom.mjs.map
1
+ import {a as a$1,b}from'./chunk-NABWFBEA.mjs';export{c as render}from'./chunk-NABWFBEA.mjs';import {c}from'./chunk-CB6CIG76.mjs';import {b as b$1}from'./chunk-NRPWBHKP.mjs';import {e,g,a,h as h$1,b as b$2}from'./chunk-WHRUAZR4.mjs';function U(e,n,...t){return {type:e,props:n||{},children:t,key:n?.key}}var p=null,w=new WeakMap,h=null;function Y(e,n,t={}){let{state:o,onHydrated:r,onMismatch:a}=t;p=n.firstChild;try{let i;typeof e=="function"&&!$(e)?i={type:e,props:{},children:[],key:void 0}:i=e,F(i,n),r?.();}catch(i){console.warn("[Flexium] Hydration mismatch, falling back to full render:",i),a?.(i),n.innerHTML="",import('./render-Z4FL7ORX.mjs').then(({render:l})=>{l(e,n);});}finally{p=null;}}function $(e){return e&&typeof e=="object"&&"type"in e&&"props"in e}function F(e,n){if(e==null||typeof e=="boolean")return H(),null;if(typeof e=="string"||typeof e=="number")return Z(String(e));if(Array.isArray(e)){let t=[];for(let o of e){let r=F(o,n);r&&(Array.isArray(r)?t.push(...r):t.push(r));}return t}if(typeof e=="function")return V({type:e,props:{},children:[],key:void 0},n);if(typeof e=="object"&&$(e)){if(typeof e.type=="string")return ee(e);if(typeof e.type=="function")return V(e,n)}return null}function H(){for(;p&&p.nodeType===Node.TEXT_NODE&&(!p.textContent||p.textContent.trim()==="");)p=p.nextSibling;}function Z(e){H();let n=p;if(!n)return null;if(n.nodeType!==Node.TEXT_NODE){if(e.trim()==="")return null;throw new Error(`Hydration mismatch: expected text node "${e}", got ${n.nodeName}`)}return p=n.nextSibling,n}function ee(e){H();let n=p,t=e.type;if(!n||n.nodeType!==Node.ELEMENT_NODE)throw new Error(`Hydration mismatch: expected element <${t}>, got ${n?.nodeName||"nothing"}`);if(n.tagName.toLowerCase()!==t.toLowerCase())throw new Error(`Hydration mismatch: expected <${t}>, got <${n.tagName.toLowerCase()}>`);if(e.props){for(let[o,r]of Object.entries(e.props))if(o==="ref")typeof r=="function"?r(n):r&&typeof r=="object"&&"current"in r&&(r.current=n);else if(o.startsWith("on")&&typeof r=="function"){let a=o.slice(2).toLowerCase();n.addEventListener(a,r),n.__eventHandlers||(n.__eventHandlers={}),n.__eventHandlers[a]=r;}}if(p=n.nextSibling,e.children&&e.children.length>0){let o=p;p=n.firstChild;for(let r of e.children)F(r,n);p=o;}return n}function V(e,n){let t=e.type,o={...e.props};e.children&&e.children.length>0&&(o.children=e.children.length===1?e.children[0]:e.children);let r=t._contextId,a$2=r!==void 0,i;a$2&&(i=g(r,o.value)),w.has(n)||w.set(n,new Map);let l=w.get(n),C=e.key!==void 0,u;if(C)u=e.key;else {let c=0,y=t.name||"anonymous";l.forEach((v,x)=>{typeof x=="string"&&x.startsWith(`__auto_${y}_`)&&c++;}),u=`__auto_${y}_${c}`;}let s={hooks:[],hookIndex:0,nodes:[],parent:n,fnode:e,props:o,key:u,children:new Set,parentInstance:h||void 0};h&&h.children.add(s),l.set(u,s);let d=h;h=s;try{let c=a(s,()=>t(o)),y=F(c,n);s.nodes=y?Array.isArray(y)?y:[y]:[];let v=!0,x=()=>{let X=s.props,B=a(s,()=>t(X));if(v){v=!1;return}if(s.nodes.length===0){let g=a$1(B,n);s.nodes=g?Array.isArray(g)?g:[g]:[];return}let m=s.nodes[0].parentNode;if(!m)return;let E=document.createComment("flexium-marker"),L=s.nodes[s.nodes.length-1];L.nextSibling?m.insertBefore(E,L.nextSibling):m.appendChild(E),s.children.clear();let q=document.createElement("div"),N=a$1(B,q,m),G=N?Array.isArray(N)?N:[N]:[],J=b(s.nodes,G,m,E);m.removeChild(E),s.nodes=J;};return s.renderFn=x,b$1(x),s.nodes}finally{h=d,a$2&&h$1(r,i);}}var ne={register:()=>{},hasBoundary:false},P=new e(ne);function D(){let[e]=c(P);return e}function j(e){let{fallback:n,children:t}=e,o=b$2(()=>new Set),[,r]=c(0),[a,i]=c(false),C={register:s=>{o.has(s)||(o.add(s),r(d=>d+1),i(true),s.finally(()=>{o.delete(s),r(d=>{let c=d-1;return c===0&&i(false),c});}));},hasBoundary:true},u=a?n:t;return {type:P.Provider,props:{value:C},children:[u],key:void 0}}function W(e){let{fallback:n,onError:t,children:o,resetKey:r}=e,[a,i]=c({error:null,info:null}),l=b$2(()=>({current:r}));r!==l.current&&(l.current=r,a.error!==null&&i({error:null,info:null}));if(a.error)return typeof n=="function"?n(a.error,a.info):n;try{return o}finally{}}function K(e){let n=null,t=null,o=null,r=a=>{if(n)return n(a);if(o)throw o;let i=D();return t||(t=e().then(l=>{n=l.default;}).catch(l=>{o=l instanceof Error?l:new Error(String(l));})),i.hasBoundary&&i.register(t),null};return r._lazy=true,r._loader=e,r}export{W as ErrorBoundary,j as Suspense,U as f,Y as hydrate,K as lazy};//# sourceMappingURL=dom.mjs.map
2
2
  //# sourceMappingURL=dom.mjs.map
package/dist/dom.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/dom/f.ts","../src/dom/hydrate.ts","../src/dom/components/Portal.tsx","../src/dom/components/suspenseContext.ts","../src/dom/components/Suspense.tsx","../src/dom/components/ErrorBoundary.tsx","../src/dom/components/lazy.ts"],"names":["f","type","props","children","hydrationCursor","hydratedInstanceRegistry","currentHydratingInstance","hydrate","app","container","options","state","onHydrated","onMismatch","fnode","isFNode","hydrateNode","error","render","value","parent","skipEmptyTextNodes","hydrateTextNode","nodes","child","result","hydrateComponent","hydrateElement","text","current","tag","key","eventName","savedCursor","Component","contextId","isProvider","prevContextValue","pushContext","parentRegistry","hasExplicitKey","instanceCount","componentName","_","k","instance","previousHydratingInstance","runWithComponent","isFirstRender","renderFn","currentProps","newNodes","renderNode","nodeParent","marker","lastNode","tempContainer","newNodesArray","reconciledNodes","reconcile","unsafeEffect","popContext","Portal","target","portalState","hook","use","onCleanup","portalWrapper","defaultValue","SuspenseCtx","Context","suspenseContext","Suspense","fallback","pendingSet","setPendingCount","showFallback","setShowFallback","contextValue","promise","newCount","content","ErrorBoundary","onError","resetKey","errorState","setErrorState","prevResetKeyRef","lazy","loader","resolved","LazyWrapper","suspense","module","err"],"mappings":"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","file":"dom.mjs","sourcesContent":["import type { FNode } from './types'\n\n/**\n * f() - Create FNodes without JSX\n */\nexport function f(\n type: string | Function,\n props?: any,\n ...children: any[]\n): FNode {\n return {\n type,\n props: props || {},\n children,\n key: props?.key\n }\n}\n","import type { FNode, FNodeChild } from './types'\nimport type { SerializedState } from '../server/types'\nimport { runWithComponent, type ComponentInstance } from '../core/hook'\nimport { pushContext, popContext } from '../core/context'\nimport { unsafeEffect } from '../core/lifecycle'\nimport { renderNode, reconcile } from './render'\n\n// Hydration state\nlet isHydrating = false\nlet hydrationCursor: Node | null = null\nlet hydrationState: SerializedState | null = null\n\nexport interface HydrateOptions {\n /**\n * Serialized state from server\n * Typically embedded in HTML as JSON script tag\n */\n state?: SerializedState\n\n /**\n * Called when hydration completes successfully\n */\n onHydrated?: () => void\n\n /**\n * Called when hydration fails (falls back to full render)\n */\n onMismatch?: (error: Error) => void\n}\n\n// Extended ComponentInstance for DOM tracking (same as render.ts)\ninterface DOMComponentInstance extends ComponentInstance {\n nodes: Node[]\n parent: HTMLElement\n fnode: any\n props: any\n key?: any\n renderFn?: () => void\n children: Set<DOMComponentInstance>\n parentInstance?: DOMComponentInstance\n}\n\n// Registry for hydrated components\nconst hydratedInstanceRegistry = new WeakMap<HTMLElement, Map<any, DOMComponentInstance>>()\nlet currentHydratingInstance: DOMComponentInstance | null = null\n\nexport function getIsHydrating(): boolean {\n return isHydrating\n}\n\nexport function getHydrationState(): SerializedState | null {\n return hydrationState\n}\n\n/**\n * Hydrate server-rendered HTML with client-side interactivity\n */\nexport function hydrate(\n app: FNodeChild | (() => FNodeChild),\n container: HTMLElement,\n options: HydrateOptions = {}\n): void {\n const { state, onHydrated, onMismatch } = options\n\n // Store state for rehydration\n hydrationState = state || null\n\n // Initialize hydration mode\n isHydrating = true\n hydrationCursor = container.firstChild\n\n try {\n // Normalize input\n let fnode: FNodeChild\n if (typeof app === 'function' && !isFNode(app)) {\n fnode = { type: app, props: {}, children: [], key: undefined }\n } else {\n fnode = app\n }\n\n // Hydrate the tree\n hydrateNode(fnode, container)\n\n onHydrated?.()\n } catch (error) {\n // Hydration mismatch - fall back to full render\n console.warn('[Flexium] Hydration mismatch, falling back to full render:', error)\n onMismatch?.(error as Error)\n\n // Clear and re-render\n container.innerHTML = ''\n // Import dynamically to avoid circular deps\n import('./render').then(({ render }) => {\n render(app, container)\n })\n } finally {\n isHydrating = false\n hydrationCursor = null\n hydrationState = null\n }\n}\n\nfunction isFNode(value: any): value is FNode {\n return value && typeof value === 'object' && 'type' in value && 'props' in value\n}\n\nfunction hydrateNode(fnode: FNodeChild, parent: HTMLElement): Node | Node[] | null {\n // Null/undefined/boolean -> skip empty text nodes\n if (fnode === null || fnode === undefined || typeof fnode === 'boolean') {\n // Server might have rendered an empty text node\n skipEmptyTextNodes()\n return null\n }\n\n // String/number -> expect text node\n if (typeof fnode === 'string' || typeof fnode === 'number') {\n return hydrateTextNode(String(fnode))\n }\n\n // Array -> hydrate each child\n if (Array.isArray(fnode)) {\n const nodes: Node[] = []\n for (const child of fnode) {\n const result = hydrateNode(child, parent)\n if (result) {\n if (Array.isArray(result)) {\n nodes.push(...result)\n } else {\n nodes.push(result)\n }\n }\n }\n return nodes\n }\n\n // Function (standalone) -> wrap in FNode and hydrate\n if (typeof fnode === 'function') {\n const wrappedFnode: FNode = { type: fnode, props: {}, children: [], key: undefined }\n return hydrateComponent(wrappedFnode, parent)\n }\n\n // Object (FNode)\n if (typeof fnode === 'object' && isFNode(fnode)) {\n if (typeof fnode.type === 'string') {\n return hydrateElement(fnode)\n }\n\n if (typeof fnode.type === 'function') {\n return hydrateComponent(fnode, parent)\n }\n }\n\n return null\n}\n\nfunction skipEmptyTextNodes(): void {\n while (\n hydrationCursor &&\n hydrationCursor.nodeType === Node.TEXT_NODE &&\n (!hydrationCursor.textContent || hydrationCursor.textContent.trim() === '')\n ) {\n hydrationCursor = hydrationCursor.nextSibling\n }\n}\n\nfunction hydrateTextNode(text: string): Node | null {\n skipEmptyTextNodes()\n\n const current = hydrationCursor\n\n if (!current) {\n // No node to hydrate - this is okay for conditional rendering\n return null\n }\n\n if (current.nodeType !== Node.TEXT_NODE) {\n // Try to find a text node nearby (whitespace handling)\n if (text.trim() === '') {\n return null\n }\n throw new Error(`Hydration mismatch: expected text node \"${text}\", got ${current.nodeName}`)\n }\n\n // Update cursor\n hydrationCursor = current.nextSibling\n\n return current\n}\n\nfunction hydrateElement(fnode: FNode): Node {\n skipEmptyTextNodes()\n\n const current = hydrationCursor as Element\n const tag = fnode.type as string\n\n // Validate element type\n if (!current || current.nodeType !== Node.ELEMENT_NODE) {\n throw new Error(`Hydration mismatch: expected element <${tag}>, got ${current?.nodeName || 'nothing'}`)\n }\n\n if (current.tagName.toLowerCase() !== tag.toLowerCase()) {\n throw new Error(`Hydration mismatch: expected <${tag}>, got <${current.tagName.toLowerCase()}>`)\n }\n\n // Attach event handlers and refs (don't modify DOM structure)\n if (fnode.props) {\n for (const [key, value] of Object.entries(fnode.props)) {\n if (key === 'ref') {\n if (typeof value === 'function') {\n value(current)\n } else if (value && typeof value === 'object' && 'current' in value) {\n value.current = current\n }\n } else if (key.startsWith('on') && typeof value === 'function') {\n const eventName = key.slice(2).toLowerCase()\n current.addEventListener(eventName, value as EventListener)\n\n // Store for reconciliation\n if (!(current as any).__eventHandlers) {\n (current as any).__eventHandlers = {}\n }\n (current as any).__eventHandlers[eventName] = value\n }\n }\n }\n\n // Move cursor past this element\n hydrationCursor = current.nextSibling\n\n // Hydrate children\n if (fnode.children && fnode.children.length > 0) {\n const savedCursor = hydrationCursor\n\n hydrationCursor = current.firstChild\n\n for (const child of fnode.children) {\n hydrateNode(child, current as HTMLElement)\n }\n\n hydrationCursor = savedCursor\n }\n\n return current\n}\n\nfunction hydrateComponent(fnode: FNode, parent: HTMLElement): Node | Node[] | null {\n const Component = fnode.type as Function\n\n // Merge props\n const props = { ...fnode.props }\n if (fnode.children && fnode.children.length > 0) {\n props.children = fnode.children.length === 1\n ? fnode.children[0]\n : fnode.children\n }\n\n // Handle context providers\n const contextId = (Component as any)._contextId\n const isProvider = contextId !== undefined\n let prevContextValue: any\n\n if (isProvider) {\n prevContextValue = pushContext(contextId, props.value)\n }\n\n // Generate key (same logic as render.ts)\n if (!hydratedInstanceRegistry.has(parent)) {\n hydratedInstanceRegistry.set(parent, new Map())\n }\n const parentRegistry = hydratedInstanceRegistry.get(parent)!\n\n const hasExplicitKey = fnode.key !== undefined\n let key: any\n if (hasExplicitKey) {\n key = fnode.key\n } else {\n let instanceCount = 0\n const componentName = (Component as any).name || 'anonymous'\n parentRegistry.forEach((_, k) => {\n if (typeof k === 'string' && k.startsWith(`__auto_${componentName}_`)) {\n instanceCount++\n }\n })\n key = `__auto_${componentName}_${instanceCount}`\n }\n\n // Create component instance\n const instance: DOMComponentInstance = {\n hooks: [],\n hookIndex: 0,\n nodes: [],\n parent,\n fnode,\n props,\n key,\n children: new Set(),\n parentInstance: currentHydratingInstance || undefined\n }\n\n if (currentHydratingInstance) {\n currentHydratingInstance.children.add(instance)\n }\n\n parentRegistry.set(key, instance)\n\n const previousHydratingInstance = currentHydratingInstance\n currentHydratingInstance = instance\n\n try {\n // First render during hydration - just match DOM\n const result = runWithComponent(instance, () => Component(props))\n const nodes = hydrateNode(result, parent)\n instance.nodes = nodes ? (Array.isArray(nodes) ? nodes : [nodes]) : []\n\n // Set up reactive re-rendering for future updates\n let isFirstRender = true\n const renderFn = () => {\n // Re-render with reconciliation (same logic as render.ts)\n const currentProps = instance.props\n\n // Always run the component to establish reactive tracking\n const result = runWithComponent(instance, () => Component(currentProps))\n\n if (isFirstRender) {\n isFirstRender = false\n return // Skip DOM manipulation on first render, already done during hydration\n }\n\n if (instance.nodes.length === 0) {\n const newNodes = renderNode(result, parent)\n instance.nodes = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n return\n }\n\n const firstNode = instance.nodes[0]\n const nodeParent = firstNode.parentNode as HTMLElement\n\n if (!nodeParent) {\n return\n }\n\n const marker = document.createComment('flexium-marker')\n const lastNode = instance.nodes[instance.nodes.length - 1]\n if (lastNode.nextSibling) {\n nodeParent.insertBefore(marker, lastNode.nextSibling)\n } else {\n nodeParent.appendChild(marker)\n }\n\n instance.children.clear()\n\n const tempContainer = document.createElement('div')\n const newNodes = renderNode(result, tempContainer, nodeParent)\n const newNodesArray = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n\n const reconciledNodes = reconcile(instance.nodes, newNodesArray, nodeParent, marker)\n\n nodeParent.removeChild(marker)\n\n instance.nodes = reconciledNodes\n }\n\n instance.renderFn = renderFn\n unsafeEffect(renderFn)\n\n return instance.nodes\n } finally {\n currentHydratingInstance = previousHydratingInstance\n\n if (isProvider) {\n popContext(contextId, prevContextValue)\n }\n }\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport { render } from '../render'\nimport type { PortalProps } from './types'\n\n/**\n * Portal component that renders children into a different DOM node\n *\n * @deprecated Use Portal from 'flexium-ui' instead:\n * ```tsx\n * import { Portal } from 'flexium-ui'\n * ```\n *\n * @example\n * ```tsx\n * function Modal({ isOpen, onClose, children }) {\n * if (!isOpen) return null\n *\n * return (\n * <Portal target={document.body}>\n * <div class=\"modal-backdrop\" onClick={onClose}>\n * <div class=\"modal-content\" onClick={e => e.stopPropagation()}>\n * {children}\n * </div>\n * </div>\n * </Portal>\n * )\n * }\n * ```\n */\nexport function Portal(props: PortalProps): null {\n const { target, children } = props\n\n // Store rendered container for cleanup\n const portalState = hook(() => ({\n container: null as HTMLElement | null,\n mounted: false\n }))\n\n use(({ onCleanup }) => {\n // Resolve target container\n let container: HTMLElement | null = null\n\n if (typeof target === 'string') {\n container = document.querySelector(target)\n } else if (target instanceof HTMLElement) {\n container = target\n }\n\n if (!container) {\n console.warn('[Flexium Portal] Target container not found:', target)\n return\n }\n\n // Create a wrapper div to contain portal content\n const portalWrapper = document.createElement('div')\n portalWrapper.setAttribute('data-flexium-portal', 'true')\n container.appendChild(portalWrapper)\n\n portalState.container = portalWrapper\n portalState.mounted = true\n\n // Render children into the portal wrapper\n render(children, portalWrapper)\n\n // Cleanup function\n onCleanup(() => {\n if (portalWrapper.parentNode) {\n portalWrapper.parentNode.removeChild(portalWrapper)\n }\n portalState.container = null\n portalState.mounted = false\n })\n }, [target, children])\n\n // Portal renders nothing in its original location\n return null\n}\n","import { Context } from '../../core/context'\nimport { use } from '../../core/use'\nimport type { SuspenseContextValue } from './types'\n\nconst defaultValue: SuspenseContextValue = {\n register: () => {},\n hasBoundary: false\n}\n\nexport const SuspenseCtx = new Context<SuspenseContextValue>(defaultValue)\n\nexport function suspenseContext(): SuspenseContextValue {\n const [value] = use(SuspenseCtx)\n return value\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport { SuspenseCtx } from './suspenseContext'\nimport type { SuspenseProps, SuspenseContextValue } from './types'\nimport type { FNodeChild } from '../types'\n\n/**\n * Suspense component that shows fallback while children are loading\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function Suspense(props: SuspenseProps): FNodeChild {\n const { fallback, children } = props\n\n // Track pending promises using hook for mutable Set\n const pendingSet = hook(() => new Set<Promise<any>>())\n const [, setPendingCount] = use(0)\n const [showFallback, setShowFallback] = use(false)\n\n // Register function for lazy components\n const register = (promise: Promise<any>) => {\n if (!pendingSet.has(promise)) {\n // Add to pending set\n pendingSet.add(promise)\n setPendingCount(c => c + 1)\n setShowFallback(true)\n\n // Wait for resolution\n promise.finally(() => {\n pendingSet.delete(promise)\n setPendingCount(c => {\n const newCount = c - 1\n if (newCount === 0) {\n setShowFallback(false)\n }\n return newCount\n })\n })\n }\n }\n\n const contextValue: SuspenseContextValue = {\n register,\n hasBoundary: true\n }\n\n // Render fallback or children based on pending state\n const content = showFallback ? fallback : children\n\n // Wrap content with Suspense context provider\n return {\n type: SuspenseCtx.Provider,\n props: { value: contextValue },\n children: [content],\n key: undefined\n } as any\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport type { FNodeChild } from '../types'\nimport type { ErrorInfo, ErrorBoundaryProps } from './types'\n\n// Component name stack for error messages\nlet componentNameStack: string[] = []\n\nexport function pushComponentName(name: string): void {\n componentNameStack.push(name)\n}\n\nexport function popComponentName(): void {\n componentNameStack.pop()\n}\n\nexport function getComponentStack(): string {\n return componentNameStack\n .map(name => ` at ${name}`)\n .reverse()\n .join('\\n')\n}\n\n// Stack of error boundaries for nested error propagation\ninterface ErrorBoundaryInstance {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => void\n}\n\nlet errorBoundaryStack: ErrorBoundaryInstance[] = []\n\nexport function pushErrorBoundary(instance: ErrorBoundaryInstance): void {\n errorBoundaryStack.push(instance)\n}\n\nexport function popErrorBoundary(): void {\n errorBoundaryStack.pop()\n}\n\nexport function getNearestErrorBoundary(): ErrorBoundaryInstance | null {\n return errorBoundaryStack[errorBoundaryStack.length - 1] || null\n}\n\n/**\n * ErrorBoundary component that catches errors in its children and displays fallback UI\n *\n * @example\n * ```tsx\n * <ErrorBoundary\n * fallback={(error, info) => <div>Error: {error.message}</div>}\n * onError={(error, info) => console.error(error)}\n * >\n * <App />\n * </ErrorBoundary>\n * ```\n */\nexport function ErrorBoundary(props: ErrorBoundaryProps): FNodeChild {\n const { fallback, onError, children, resetKey } = props\n\n // Error state\n const [errorState, setErrorState] = use<{\n error: Error | null\n info: ErrorInfo | null\n }>({ error: null, info: null })\n\n // Track reset key changes to clear error\n const prevResetKeyRef = hook(() => ({ current: resetKey }))\n\n if (resetKey !== prevResetKeyRef.current) {\n prevResetKeyRef.current = resetKey\n if (errorState.error !== null) {\n setErrorState({ error: null, info: null })\n }\n }\n\n // Error boundary instance\n const boundaryInstance: ErrorBoundaryInstance = {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => {\n const info: ErrorInfo = {\n componentStack: getComponentStack(),\n phase\n }\n\n // Call error callback\n onError?.(error, info)\n\n // Update error state (triggers re-render with fallback)\n setErrorState({ error, info })\n }\n }\n\n // If we have an error, render fallback\n if (errorState.error) {\n if (typeof fallback === 'function') {\n return fallback(errorState.error, errorState.info!)\n }\n return fallback\n }\n\n // Push boundary onto stack for children to use\n pushErrorBoundary(boundaryInstance)\n\n try {\n // Return children - they will be rendered with this boundary active\n return children\n } finally {\n popErrorBoundary()\n }\n}\n","import { suspenseContext } from './suspenseContext'\nimport type { FNodeChild } from '../types'\nimport type { LazyComponent } from './types'\n\n/**\n * Creates a lazy-loaded component for code splitting\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n * const Settings = lazy(() => import('./Settings'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function lazy<P = {}>(\n loader: () => Promise<{ default: (props: P) => FNodeChild }>\n): LazyComponent<P> {\n // Shared state across all instances\n let resolved: ((props: P) => FNodeChild) | null = null\n let promise: Promise<any> | null = null\n let error: Error | null = null\n\n // The wrapper component\n const LazyWrapper = (props: P): FNodeChild => {\n // If already resolved, render immediately\n if (resolved) {\n return resolved(props)\n }\n\n // If error occurred, throw it (will be caught by ErrorBoundary)\n if (error) {\n throw error\n }\n\n // Get suspense context\n const suspense = suspenseContext()\n\n // Start loading if not already\n if (!promise) {\n promise = loader()\n .then(module => {\n resolved = module.default\n })\n .catch(err => {\n error = err instanceof Error ? err : new Error(String(err))\n })\n }\n\n // Register with suspense boundary if available\n if (suspense.hasBoundary) {\n suspense.register(promise)\n }\n\n // Return null - Suspense will show fallback\n return null\n }\n\n // Mark as lazy component\n ;(LazyWrapper as LazyComponent<P>)._lazy = true\n ;(LazyWrapper as LazyComponent<P>)._loader = loader\n\n return LazyWrapper as LazyComponent<P>\n}\n"]}
1
+ {"version":3,"sources":["../src/dom/f.ts","../src/dom/hydrate.ts","../src/dom/components/suspenseContext.ts","../src/dom/components/Suspense.tsx","../src/dom/components/ErrorBoundary.tsx","../src/dom/components/lazy.ts"],"names":["f","type","props","children","hydrationCursor","hydratedInstanceRegistry","currentHydratingInstance","hydrate","app","container","options","state","onHydrated","onMismatch","fnode","isFNode","hydrateNode","error","render","value","parent","skipEmptyTextNodes","hydrateTextNode","nodes","child","result","hydrateComponent","hydrateElement","text","current","tag","key","eventName","savedCursor","Component","contextId","isProvider","prevContextValue","pushContext","parentRegistry","hasExplicitKey","instanceCount","componentName","_","k","instance","previousHydratingInstance","runWithComponent","isFirstRender","renderFn","currentProps","newNodes","renderNode","nodeParent","marker","lastNode","tempContainer","newNodesArray","reconciledNodes","reconcile","unsafeEffect","popContext","defaultValue","SuspenseCtx","Context","suspenseContext","use","Suspense","fallback","pendingSet","hook","setPendingCount","showFallback","setShowFallback","contextValue","promise","c","newCount","content","ErrorBoundary","onError","resetKey","errorState","setErrorState","prevResetKeyRef","lazy","loader","resolved","LazyWrapper","suspense","module","err"],"mappings":"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","file":"dom.mjs","sourcesContent":["import type { FNode } from './types'\n\n/**\n * f() - Create FNodes without JSX\n */\nexport function f(\n type: string | Function,\n props?: any,\n ...children: any[]\n): FNode {\n return {\n type,\n props: props || {},\n children,\n key: props?.key\n }\n}\n","import type { FNode, FNodeChild } from './types'\nimport type { SerializedState } from '../server/types'\nimport { runWithComponent, type ComponentInstance } from '../core/hook'\nimport { pushContext, popContext } from '../core/context'\nimport { unsafeEffect } from '../core/lifecycle'\nimport { renderNode, reconcile } from './render'\n\n// Hydration state\nlet isHydrating = false\nlet hydrationCursor: Node | null = null\nlet hydrationState: SerializedState | null = null\n\nexport interface HydrateOptions {\n /**\n * Serialized state from server\n * Typically embedded in HTML as JSON script tag\n */\n state?: SerializedState\n\n /**\n * Called when hydration completes successfully\n */\n onHydrated?: () => void\n\n /**\n * Called when hydration fails (falls back to full render)\n */\n onMismatch?: (error: Error) => void\n}\n\n// Extended ComponentInstance for DOM tracking (same as render.ts)\ninterface DOMComponentInstance extends ComponentInstance {\n nodes: Node[]\n parent: HTMLElement\n fnode: any\n props: any\n key?: any\n renderFn?: () => void\n children: Set<DOMComponentInstance>\n parentInstance?: DOMComponentInstance\n}\n\n// Registry for hydrated components\nconst hydratedInstanceRegistry = new WeakMap<HTMLElement, Map<any, DOMComponentInstance>>()\nlet currentHydratingInstance: DOMComponentInstance | null = null\n\nexport function getIsHydrating(): boolean {\n return isHydrating\n}\n\nexport function getHydrationState(): SerializedState | null {\n return hydrationState\n}\n\n/**\n * Hydrate server-rendered HTML with client-side interactivity\n */\nexport function hydrate(\n app: FNodeChild | (() => FNodeChild),\n container: HTMLElement,\n options: HydrateOptions = {}\n): void {\n const { state, onHydrated, onMismatch } = options\n\n // Store state for rehydration\n hydrationState = state || null\n\n // Initialize hydration mode\n isHydrating = true\n hydrationCursor = container.firstChild\n\n try {\n // Normalize input\n let fnode: FNodeChild\n if (typeof app === 'function' && !isFNode(app)) {\n fnode = { type: app, props: {}, children: [], key: undefined }\n } else {\n fnode = app\n }\n\n // Hydrate the tree\n hydrateNode(fnode, container)\n\n onHydrated?.()\n } catch (error) {\n // Hydration mismatch - fall back to full render\n console.warn('[Flexium] Hydration mismatch, falling back to full render:', error)\n onMismatch?.(error as Error)\n\n // Clear and re-render\n container.innerHTML = ''\n // Import dynamically to avoid circular deps\n import('./render').then(({ render }) => {\n render(app, container)\n })\n } finally {\n isHydrating = false\n hydrationCursor = null\n hydrationState = null\n }\n}\n\nfunction isFNode(value: any): value is FNode {\n return value && typeof value === 'object' && 'type' in value && 'props' in value\n}\n\nfunction hydrateNode(fnode: FNodeChild, parent: HTMLElement): Node | Node[] | null {\n // Null/undefined/boolean -> skip empty text nodes\n if (fnode === null || fnode === undefined || typeof fnode === 'boolean') {\n // Server might have rendered an empty text node\n skipEmptyTextNodes()\n return null\n }\n\n // String/number -> expect text node\n if (typeof fnode === 'string' || typeof fnode === 'number') {\n return hydrateTextNode(String(fnode))\n }\n\n // Array -> hydrate each child\n if (Array.isArray(fnode)) {\n const nodes: Node[] = []\n for (const child of fnode) {\n const result = hydrateNode(child, parent)\n if (result) {\n if (Array.isArray(result)) {\n nodes.push(...result)\n } else {\n nodes.push(result)\n }\n }\n }\n return nodes\n }\n\n // Function (standalone) -> wrap in FNode and hydrate\n if (typeof fnode === 'function') {\n const wrappedFnode: FNode = { type: fnode, props: {}, children: [], key: undefined }\n return hydrateComponent(wrappedFnode, parent)\n }\n\n // Object (FNode)\n if (typeof fnode === 'object' && isFNode(fnode)) {\n if (typeof fnode.type === 'string') {\n return hydrateElement(fnode)\n }\n\n if (typeof fnode.type === 'function') {\n return hydrateComponent(fnode, parent)\n }\n }\n\n return null\n}\n\nfunction skipEmptyTextNodes(): void {\n while (\n hydrationCursor &&\n hydrationCursor.nodeType === Node.TEXT_NODE &&\n (!hydrationCursor.textContent || hydrationCursor.textContent.trim() === '')\n ) {\n hydrationCursor = hydrationCursor.nextSibling\n }\n}\n\nfunction hydrateTextNode(text: string): Node | null {\n skipEmptyTextNodes()\n\n const current = hydrationCursor\n\n if (!current) {\n // No node to hydrate - this is okay for conditional rendering\n return null\n }\n\n if (current.nodeType !== Node.TEXT_NODE) {\n // Try to find a text node nearby (whitespace handling)\n if (text.trim() === '') {\n return null\n }\n throw new Error(`Hydration mismatch: expected text node \"${text}\", got ${current.nodeName}`)\n }\n\n // Update cursor\n hydrationCursor = current.nextSibling\n\n return current\n}\n\nfunction hydrateElement(fnode: FNode): Node {\n skipEmptyTextNodes()\n\n const current = hydrationCursor as Element\n const tag = fnode.type as string\n\n // Validate element type\n if (!current || current.nodeType !== Node.ELEMENT_NODE) {\n throw new Error(`Hydration mismatch: expected element <${tag}>, got ${current?.nodeName || 'nothing'}`)\n }\n\n if (current.tagName.toLowerCase() !== tag.toLowerCase()) {\n throw new Error(`Hydration mismatch: expected <${tag}>, got <${current.tagName.toLowerCase()}>`)\n }\n\n // Attach event handlers and refs (don't modify DOM structure)\n if (fnode.props) {\n for (const [key, value] of Object.entries(fnode.props)) {\n if (key === 'ref') {\n if (typeof value === 'function') {\n value(current)\n } else if (value && typeof value === 'object' && 'current' in value) {\n value.current = current\n }\n } else if (key.startsWith('on') && typeof value === 'function') {\n const eventName = key.slice(2).toLowerCase()\n current.addEventListener(eventName, value as EventListener)\n\n // Store for reconciliation\n if (!(current as any).__eventHandlers) {\n (current as any).__eventHandlers = {}\n }\n (current as any).__eventHandlers[eventName] = value\n }\n }\n }\n\n // Move cursor past this element\n hydrationCursor = current.nextSibling\n\n // Hydrate children\n if (fnode.children && fnode.children.length > 0) {\n const savedCursor = hydrationCursor\n\n hydrationCursor = current.firstChild\n\n for (const child of fnode.children) {\n hydrateNode(child, current as HTMLElement)\n }\n\n hydrationCursor = savedCursor\n }\n\n return current\n}\n\nfunction hydrateComponent(fnode: FNode, parent: HTMLElement): Node | Node[] | null {\n const Component = fnode.type as Function\n\n // Merge props\n const props = { ...fnode.props }\n if (fnode.children && fnode.children.length > 0) {\n props.children = fnode.children.length === 1\n ? fnode.children[0]\n : fnode.children\n }\n\n // Handle context providers\n const contextId = (Component as any)._contextId\n const isProvider = contextId !== undefined\n let prevContextValue: any\n\n if (isProvider) {\n prevContextValue = pushContext(contextId, props.value)\n }\n\n // Generate key (same logic as render.ts)\n if (!hydratedInstanceRegistry.has(parent)) {\n hydratedInstanceRegistry.set(parent, new Map())\n }\n const parentRegistry = hydratedInstanceRegistry.get(parent)!\n\n const hasExplicitKey = fnode.key !== undefined\n let key: any\n if (hasExplicitKey) {\n key = fnode.key\n } else {\n let instanceCount = 0\n const componentName = (Component as any).name || 'anonymous'\n parentRegistry.forEach((_, k) => {\n if (typeof k === 'string' && k.startsWith(`__auto_${componentName}_`)) {\n instanceCount++\n }\n })\n key = `__auto_${componentName}_${instanceCount}`\n }\n\n // Create component instance\n const instance: DOMComponentInstance = {\n hooks: [],\n hookIndex: 0,\n nodes: [],\n parent,\n fnode,\n props,\n key,\n children: new Set(),\n parentInstance: currentHydratingInstance || undefined\n }\n\n if (currentHydratingInstance) {\n currentHydratingInstance.children.add(instance)\n }\n\n parentRegistry.set(key, instance)\n\n const previousHydratingInstance = currentHydratingInstance\n currentHydratingInstance = instance\n\n try {\n // First render during hydration - just match DOM\n const result = runWithComponent(instance, () => Component(props))\n const nodes = hydrateNode(result, parent)\n instance.nodes = nodes ? (Array.isArray(nodes) ? nodes : [nodes]) : []\n\n // Set up reactive re-rendering for future updates\n let isFirstRender = true\n const renderFn = () => {\n // Re-render with reconciliation (same logic as render.ts)\n const currentProps = instance.props\n\n // Always run the component to establish reactive tracking\n const result = runWithComponent(instance, () => Component(currentProps))\n\n if (isFirstRender) {\n isFirstRender = false\n return // Skip DOM manipulation on first render, already done during hydration\n }\n\n if (instance.nodes.length === 0) {\n const newNodes = renderNode(result, parent)\n instance.nodes = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n return\n }\n\n const firstNode = instance.nodes[0]\n const nodeParent = firstNode.parentNode as HTMLElement\n\n if (!nodeParent) {\n return\n }\n\n const marker = document.createComment('flexium-marker')\n const lastNode = instance.nodes[instance.nodes.length - 1]\n if (lastNode.nextSibling) {\n nodeParent.insertBefore(marker, lastNode.nextSibling)\n } else {\n nodeParent.appendChild(marker)\n }\n\n instance.children.clear()\n\n const tempContainer = document.createElement('div')\n const newNodes = renderNode(result, tempContainer, nodeParent)\n const newNodesArray = newNodes ? (Array.isArray(newNodes) ? newNodes : [newNodes]) : []\n\n const reconciledNodes = reconcile(instance.nodes, newNodesArray, nodeParent, marker)\n\n nodeParent.removeChild(marker)\n\n instance.nodes = reconciledNodes\n }\n\n instance.renderFn = renderFn\n unsafeEffect(renderFn)\n\n return instance.nodes\n } finally {\n currentHydratingInstance = previousHydratingInstance\n\n if (isProvider) {\n popContext(contextId, prevContextValue)\n }\n }\n}\n","import { Context } from '../../core/context'\nimport { use } from '../../core/use'\nimport type { SuspenseContextValue } from './types'\n\nconst defaultValue: SuspenseContextValue = {\n register: () => {},\n hasBoundary: false\n}\n\nexport const SuspenseCtx = new Context<SuspenseContextValue>(defaultValue)\n\nexport function suspenseContext(): SuspenseContextValue {\n const [value] = use(SuspenseCtx)\n return value\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport { SuspenseCtx } from './suspenseContext'\nimport type { SuspenseProps, SuspenseContextValue } from './types'\nimport type { FNodeChild } from '../types'\n\n/**\n * Suspense component that shows fallback while children are loading\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function Suspense(props: SuspenseProps): FNodeChild {\n const { fallback, children } = props\n\n // Track pending promises using hook for mutable Set\n const pendingSet = hook(() => new Set<Promise<any>>())\n const [, setPendingCount] = use(0)\n const [showFallback, setShowFallback] = use(false)\n\n // Register function for lazy components\n const register = (promise: Promise<any>) => {\n if (!pendingSet.has(promise)) {\n // Add to pending set\n pendingSet.add(promise)\n setPendingCount(c => c + 1)\n setShowFallback(true)\n\n // Wait for resolution\n promise.finally(() => {\n pendingSet.delete(promise)\n setPendingCount(c => {\n const newCount = c - 1\n if (newCount === 0) {\n setShowFallback(false)\n }\n return newCount\n })\n })\n }\n }\n\n const contextValue: SuspenseContextValue = {\n register,\n hasBoundary: true\n }\n\n // Render fallback or children based on pending state\n const content = showFallback ? fallback : children\n\n // Wrap content with Suspense context provider\n return {\n type: SuspenseCtx.Provider,\n props: { value: contextValue },\n children: [content],\n key: undefined\n } as any\n}\n","import { use } from '../../core/use'\nimport { hook } from '../../core/hook'\nimport type { FNodeChild } from '../types'\nimport type { ErrorInfo, ErrorBoundaryProps } from './types'\n\n// Component name stack for error messages\nlet componentNameStack: string[] = []\n\nexport function pushComponentName(name: string): void {\n componentNameStack.push(name)\n}\n\nexport function popComponentName(): void {\n componentNameStack.pop()\n}\n\nexport function getComponentStack(): string {\n return componentNameStack\n .map(name => ` at ${name}`)\n .reverse()\n .join('\\n')\n}\n\n// Stack of error boundaries for nested error propagation\ninterface ErrorBoundaryInstance {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => void\n}\n\nlet errorBoundaryStack: ErrorBoundaryInstance[] = []\n\nexport function pushErrorBoundary(instance: ErrorBoundaryInstance): void {\n errorBoundaryStack.push(instance)\n}\n\nexport function popErrorBoundary(): void {\n errorBoundaryStack.pop()\n}\n\nexport function getNearestErrorBoundary(): ErrorBoundaryInstance | null {\n return errorBoundaryStack[errorBoundaryStack.length - 1] || null\n}\n\n/**\n * ErrorBoundary component that catches errors in its children and displays fallback UI\n *\n * @example\n * ```tsx\n * <ErrorBoundary\n * fallback={(error, info) => <div>Error: {error.message}</div>}\n * onError={(error, info) => console.error(error)}\n * >\n * <App />\n * </ErrorBoundary>\n * ```\n */\nexport function ErrorBoundary(props: ErrorBoundaryProps): FNodeChild {\n const { fallback, onError, children, resetKey } = props\n\n // Error state\n const [errorState, setErrorState] = use<{\n error: Error | null\n info: ErrorInfo | null\n }>({ error: null, info: null })\n\n // Track reset key changes to clear error\n const prevResetKeyRef = hook(() => ({ current: resetKey }))\n\n if (resetKey !== prevResetKeyRef.current) {\n prevResetKeyRef.current = resetKey\n if (errorState.error !== null) {\n setErrorState({ error: null, info: null })\n }\n }\n\n // Error boundary instance\n const boundaryInstance: ErrorBoundaryInstance = {\n handleError: (error: Error, phase: 'render' | 'effect' | 'event') => {\n const info: ErrorInfo = {\n componentStack: getComponentStack(),\n phase\n }\n\n // Call error callback\n onError?.(error, info)\n\n // Update error state (triggers re-render with fallback)\n setErrorState({ error, info })\n }\n }\n\n // If we have an error, render fallback\n if (errorState.error) {\n if (typeof fallback === 'function') {\n return fallback(errorState.error, errorState.info!)\n }\n return fallback\n }\n\n // Push boundary onto stack for children to use\n pushErrorBoundary(boundaryInstance)\n\n try {\n // Return children - they will be rendered with this boundary active\n return children\n } finally {\n popErrorBoundary()\n }\n}\n","import { suspenseContext } from './suspenseContext'\nimport type { FNodeChild } from '../types'\nimport type { LazyComponent } from './types'\n\n/**\n * Creates a lazy-loaded component for code splitting\n *\n * @example\n * ```tsx\n * const Dashboard = lazy(() => import('./Dashboard'))\n * const Settings = lazy(() => import('./Settings'))\n *\n * function App() {\n * return (\n * <Suspense fallback={<div>Loading...</div>}>\n * <Dashboard />\n * </Suspense>\n * )\n * }\n * ```\n */\nexport function lazy<P = {}>(\n loader: () => Promise<{ default: (props: P) => FNodeChild }>\n): LazyComponent<P> {\n // Shared state across all instances\n let resolved: ((props: P) => FNodeChild) | null = null\n let promise: Promise<any> | null = null\n let error: Error | null = null\n\n // The wrapper component\n const LazyWrapper = (props: P): FNodeChild => {\n // If already resolved, render immediately\n if (resolved) {\n return resolved(props)\n }\n\n // If error occurred, throw it (will be caught by ErrorBoundary)\n if (error) {\n throw error\n }\n\n // Get suspense context\n const suspense = suspenseContext()\n\n // Start loading if not already\n if (!promise) {\n promise = loader()\n .then(module => {\n resolved = module.default\n })\n .catch(err => {\n error = err instanceof Error ? err : new Error(String(err))\n })\n }\n\n // Register with suspense boundary if available\n if (suspense.hasBoundary) {\n suspense.register(promise)\n }\n\n // Return null - Suspense will show fallback\n return null\n }\n\n // Mark as lazy component\n ;(LazyWrapper as LazyComponent<P>)._lazy = true\n ;(LazyWrapper as LazyComponent<P>)._loader = loader\n\n return LazyWrapper as LazyComponent<P>\n}\n"]}
package/dist/index.d.cts CHANGED
@@ -1,3 +1,3 @@
1
- declare const VERSION = "0.16.0";
1
+ declare const VERSION = "0.16.2";
2
2
 
3
3
  export { VERSION };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- declare const VERSION = "0.16.0";
1
+ declare const VERSION = "0.16.2";
2
2
 
3
3
  export { VERSION };
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- 'use strict';var o="0.16.0";exports.VERSION=o;//# sourceMappingURL=index.js.map
1
+ 'use strict';var o="0.16.2";exports.VERSION=o;//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":["VERSION"],"mappings":"aAAO,IAAMA,CAAAA,CAAU","file":"index.js","sourcesContent":["export const VERSION = '0.16.0' // Bump version to signify rebuild\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":["VERSION"],"mappings":"aAAO,IAAMA,CAAAA,CAAU","file":"index.js","sourcesContent":["export const VERSION = '0.16.2' // Bump version to signify rebuild\n"]}
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
- var o="0.16.0";export{o as VERSION};//# sourceMappingURL=index.mjs.map
1
+ var o="0.16.2";export{o as VERSION};//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map