@fluixi/compiler 1.0.0-alpha.75 → 1.0.0-alpha.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analyze/intrinsics.cjs +1 -0
- package/dist/analyze/intrinsics.d.ts +67 -0
- package/dist/analyze/intrinsics.d.ts.map +1 -0
- package/dist/analyze/intrinsics.js +91 -0
- package/dist/analyze/intrinsics.mjs +1 -0
- package/dist/analyze/props-destructure.cjs +1 -0
- package/dist/analyze/props-destructure.d.ts +84 -0
- package/dist/analyze/props-destructure.d.ts.map +1 -0
- package/dist/analyze/props-destructure.js +272 -0
- package/dist/analyze/props-destructure.mjs +1 -0
- package/dist/analyze/reactive-bindings.cjs +1 -0
- package/dist/analyze/reactive-bindings.d.ts +34 -0
- package/dist/analyze/reactive-bindings.d.ts.map +1 -0
- package/dist/analyze/reactive-bindings.js +153 -0
- package/dist/analyze/reactive-bindings.mjs +1 -0
- package/dist/{babel-GXO3KAVI.mjs → babel-YQ42WUS3.mjs} +1 -1
- package/dist/chunk-545LMC5W.mjs +1 -0
- package/dist/{chunk-TIE4XNAM.mjs → chunk-L2QPV25P.mjs} +1 -1
- package/dist/frontend/babel/build-ir-lit.cjs +1 -1
- package/dist/frontend/babel/build-ir-lit.mjs +1 -1
- package/dist/frontend/babel/build-ir.cjs +1 -1
- package/dist/frontend/babel/build-ir.mjs +1 -1
- package/dist/frontend/babel/index.cjs +1 -1
- package/dist/frontend/babel/index.mjs +1 -1
- package/dist/frontend/babel/lower-template.cjs +1 -1
- package/dist/frontend/babel/lower-template.mjs +1 -1
- package/dist/frontend/babel/plugin.cjs +1 -1
- package/dist/frontend/babel/plugin.mjs +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.mjs +9 -9
- package/dist/integrations.cjs +18 -14
- package/dist/integrations.d.ts +14 -0
- package/dist/integrations.d.ts.map +1 -1
- package/dist/integrations.js +16 -1
- package/dist/integrations.mjs +11 -11
- package/dist/lower/compile-template.cjs +1 -1
- package/dist/lower/compile-template.mjs +1 -1
- package/dist/lower/template.cjs +1 -1
- package/dist/lower/template.d.ts.map +1 -1
- package/dist/lower/template.js +7 -5
- package/dist/lower/template.mjs +1 -1
- package/dist/resolve/component-globals.cjs +9 -9
- package/dist/resolve/component-globals.d.ts +8 -0
- package/dist/resolve/component-globals.d.ts.map +1 -1
- package/dist/resolve/component-globals.js +17 -3
- package/dist/resolve/component-globals.mjs +9 -9
- package/dist/resolve/write-globals.cjs +9 -9
- package/dist/resolve/write-globals.mjs +9 -9
- package/dist/transform/index.cjs +5 -1
- package/dist/transform/index.d.ts +4 -0
- package/dist/transform/index.d.ts.map +1 -1
- package/dist/transform/index.js +2 -0
- package/dist/transform/index.mjs +14 -10
- package/dist/transform/intrinsics.cjs +3 -0
- package/dist/transform/intrinsics.d.ts +22 -0
- package/dist/transform/intrinsics.d.ts.map +1 -0
- package/dist/transform/intrinsics.js +78 -0
- package/dist/transform/intrinsics.mjs +3 -0
- package/dist/transform/props.cjs +3 -0
- package/dist/transform/props.d.ts +46 -0
- package/dist/transform/props.d.ts.map +1 -0
- package/dist/transform/props.js +221 -0
- package/dist/transform/props.mjs +12 -0
- package/dist/transform/templates.cjs +4 -1
- package/dist/transform/templates.d.ts +20 -0
- package/dist/transform/templates.d.ts.map +1 -1
- package/dist/transform/templates.js +41 -6
- package/dist/transform/templates.mjs +13 -10
- package/dist/transform-ZWIHEZVN.mjs +7 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/transform-PJX2GNSV.mjs +0 -3
|
@@ -19,6 +19,9 @@ import { resolveComponentSources } from '../resolve/resolve-ir.js';
|
|
|
19
19
|
import { createComponentResolver } from '../resolve/component-resolver.js';
|
|
20
20
|
import { imperativeBackend } from '../codegen/backends/imperative.js';
|
|
21
21
|
import { moduleBindings } from './bindings.js';
|
|
22
|
+
import { collectPropsEdits } from './props.js';
|
|
23
|
+
import { collectIntrinsicEdits, intrinsicImports } from './intrinsics.js';
|
|
24
|
+
import { mayHaveIntrinsic } from '../analyze/intrinsics.js';
|
|
22
25
|
import { DOM_CONTROL_FLOW, CORE_CONTROL_FLOW, ROUTER_COMPONENTS } from '../resolve/builtins.js';
|
|
23
26
|
// Which builtin comes from which module is published by resolve/builtins.ts —
|
|
24
27
|
// the same lists the resolve pass and the TS plugin read. Restating them here is
|
|
@@ -188,7 +191,10 @@ export function transformTemplates(code, id, options = {}) {
|
|
|
188
191
|
const wantsLit = format !== 'jsx';
|
|
189
192
|
const wantsJsx = format !== 'lit';
|
|
190
193
|
const mayHaveTemplate = wantsLit && (code.includes(`${litTag}\``) || code.includes('svg`'));
|
|
191
|
-
|
|
194
|
+
// A module can be nothing but `$signal` calls, so the skip check has to look for those
|
|
195
|
+
// too or the file is never parsed.
|
|
196
|
+
const wantsIntrinsics = options.intrinsics !== false && mayHaveIntrinsic(code);
|
|
197
|
+
if (!mayHaveTemplate && !(wantsJsx && code.includes('<')) && !wantsIntrinsics)
|
|
192
198
|
return null;
|
|
193
199
|
const ast = parse(code, {
|
|
194
200
|
sourceType: 'module',
|
|
@@ -202,17 +208,36 @@ export function transformTemplates(code, id, options = {}) {
|
|
|
202
208
|
else if (wantsJsx && isJsxRoot(n, parent, key))
|
|
203
209
|
found.push(n);
|
|
204
210
|
});
|
|
205
|
-
|
|
211
|
+
// Props first: holes are sliced out of the function body, so the rewrite has to be
|
|
212
|
+
// in the edit list before any template is compiled.
|
|
213
|
+
const props = options.propsDestructure
|
|
214
|
+
? collectPropsEdits(ast.program, code, { runtimeModule: options.runtimeModule })
|
|
215
|
+
: { edits: [], diagnostics: [], used: new Set() };
|
|
216
|
+
// `$signal(…)` → `createSignal(…)`. Same edit list, so the callee is already rewritten
|
|
217
|
+
// by the time a template slices a hole containing one.
|
|
218
|
+
const intrinsics = options.intrinsics === false
|
|
219
|
+
? { edits: [], diagnostics: [], imports: new Map() }
|
|
220
|
+
: collectIntrinsicEdits(ast.program);
|
|
221
|
+
// Nothing to emit still returns a result when there's something to say — a shadowed
|
|
222
|
+
// intrinsic is a diagnostic even though the code comes back untouched.
|
|
223
|
+
const silent = found.length === 0 &&
|
|
224
|
+
props.edits.length === 0 &&
|
|
225
|
+
intrinsics.edits.length === 0 &&
|
|
226
|
+
intrinsics.diagnostics.length === 0 &&
|
|
227
|
+
props.diagnostics.length === 0;
|
|
228
|
+
if (silent)
|
|
206
229
|
return null;
|
|
207
230
|
// Innermost first, so a nested template is already compiled by the time the
|
|
208
231
|
// hole containing it is sliced.
|
|
209
232
|
found.sort((a, b) => b.start - a.start || a.end - b.end);
|
|
210
|
-
|
|
233
|
+
// Seeded with whatever the props rewrite needs, so `splitProps` joins the prologue
|
|
234
|
+
// the templates build rather than getting an import of its own.
|
|
235
|
+
const used = new Set(props.used);
|
|
211
236
|
const needs = {
|
|
212
237
|
builtins: new Set(), resolved: new Map(), deferred: new Map(), delegatedEvents: new Set(),
|
|
213
238
|
};
|
|
214
239
|
const hoisted = new Map();
|
|
215
|
-
const edits = [];
|
|
240
|
+
const edits = [...props.edits, ...intrinsics.edits];
|
|
216
241
|
for (const node of found) {
|
|
217
242
|
// A root inside another root's hole is emitted without partial templates,
|
|
218
243
|
// matching what the plugin does for nested emits. Marker layout has to agree
|
|
@@ -238,12 +263,20 @@ export function transformTemplates(code, id, options = {}) {
|
|
|
238
263
|
}
|
|
239
264
|
const out = new MagicString(code);
|
|
240
265
|
// Same reason as in `slice`: a nested edit is already inside its parent's code.
|
|
241
|
-
for (const e of outermost(edits))
|
|
242
|
-
|
|
266
|
+
for (const e of outermost(edits)) {
|
|
267
|
+
// A zero-width edit is an insertion (the splitProps call), not a replacement.
|
|
268
|
+
if (e.start === e.end)
|
|
269
|
+
out.appendLeft(e.start, e.code);
|
|
270
|
+
else
|
|
271
|
+
out.overwrite(e.start, e.end, e.code);
|
|
272
|
+
}
|
|
243
273
|
const bound = moduleBindings(ast.program);
|
|
244
274
|
const prologue = buildPrologue(used, needs, hoisted, bound, options);
|
|
245
275
|
if (prologue)
|
|
246
276
|
out.prepend(prologue);
|
|
277
|
+
const runtimeImports = intrinsicImports(intrinsics, bound);
|
|
278
|
+
if (runtimeImports)
|
|
279
|
+
out.prepend(runtimeImports);
|
|
247
280
|
// `@fluixi/core/rx` is the client alias for the reactive primitives.
|
|
248
281
|
for (const node of ast.program.body) {
|
|
249
282
|
if (node.type === 'ImportDeclaration' && node.source?.value === '@fluixi/core/rx') {
|
|
@@ -253,6 +286,8 @@ export function transformTemplates(code, id, options = {}) {
|
|
|
253
286
|
return {
|
|
254
287
|
code: out.toString(),
|
|
255
288
|
map: out.generateMap({ source: id, includeContent: true, hires: true }),
|
|
289
|
+
...(props.diagnostics.length ? { propsDiagnostics: props.diagnostics } : {}),
|
|
290
|
+
...(intrinsics.diagnostics.length ? { intrinsicDiagnostics: intrinsics.diagnostics } : {}),
|
|
256
291
|
};
|
|
257
292
|
}
|
|
258
293
|
/**
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import{parse as
|
|
2
|
-
`),t=e.filter(
|
|
3
|
-
`),t=[];for(let r=0,i=0;r<e.length;r++)t.push(i),i+=e[r].length+1;return function(i){let
|
|
4
|
-
`,0),a=-1;for(;
|
|
5
|
-
`,
|
|
6
|
-
`)i.line+=1,i.column=0,this.generatedCodeLine+=1,this.raw[this.generatedCodeLine]=this.rawSegments=[],this.generatedCodeColumn=0,a=!0,l=!1;else{if(this.hires||a||
|
|
7
|
-
`);if(t.length>1){for(let r=0;r<t.length-1;r++)this.generatedCodeLine++,this.raw[this.generatedCodeLine]=this.rawSegments=[];this.generatedCodeColumn=0}this.generatedCodeColumn+=t[t.length-1].length}},
|
|
8
|
-
`,
|
|
1
|
+
import{parse as Nn}from"@babel/parser";var vt=44,xt=59,Ie="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Oe=new Uint8Array(64),bt=new Uint8Array(128);for(let n=0;n<Ie.length;n++){let e=Ie.charCodeAt(n);Oe[n]=e,bt[e]=n}function M(n,e,t){let r=e-t;r=r<0?-r<<1|1:r<<1;do{let i=r&31;r>>>=5,r>0&&(i|=32),n.write(Oe[i])}while(r>0);return e}var Te=1024*16,$e=typeof TextDecoder<"u"?new TextDecoder:typeof Buffer<"u"?{decode(n){return Buffer.from(n.buffer,n.byteOffset,n.byteLength).toString()}}:{decode(n){let e="";for(let t=0;t<n.length;t++)e+=String.fromCharCode(n[t]);return e}},Nt=class{constructor(){this.pos=0,this.out="",this.buffer=new Uint8Array(Te)}write(n){let{buffer:e}=this;e[this.pos++]=n,this.pos===Te&&(this.out+=$e.decode(e),this.pos=0)}flush(){let{buffer:n,out:e,pos:t}=this;return t>0?e+$e.decode(n.subarray(0,t)):e}};function Pe(n){let e=new Nt,t=0,r=0,i=0,s=0;for(let o=0;o<n.length;o++){let a=n[o];if(o>0&&e.write(xt),a.length===0)continue;let l=0;for(let c=0;c<a.length;c++){let u=a[c];c>0&&e.write(vt),l=M(e,u[0],l),u.length!==1&&(t=M(e,u[1],t),r=M(e,u[2],r),i=M(e,u[3],i),u.length!==4&&(s=M(e,u[4],s)))}}return e.flush()}var V=class n{constructor(e){this.bits=e instanceof n?e.bits.slice():[]}add(e){this.bits[e>>5]|=1<<(e&31)}has(e){return!!(this.bits[e>>5]&1<<(e&31))}},W=class n{constructor(e,t,r){this.start=e,this.end=t,this.original=r,this.intro="",this.outro="",this.content=r,this.storeName=!1,this.edited=!1,this.previous=null,this.next=null}appendLeft(e){this.outro+=e}appendRight(e){this.intro=this.intro+e}clone(){let e=new n(this.start,this.end,this.original);return e.intro=this.intro,e.outro=this.outro,e.content=this.content,e.storeName=this.storeName,e.edited=this.edited,e}contains(e){return this.start<e&&e<this.end}eachNext(e){let t=this;for(;t;)e(t),t=t.next}eachPrevious(e){let t=this;for(;t;)e(t),t=t.previous}edit(e,t,r){return this.content=e,r||(this.intro="",this.outro=""),this.storeName=t,this.edited=!0,this}prependLeft(e){this.outro=e+this.outro}prependRight(e){this.intro=e+this.intro}reset(){this.intro="",this.outro="",this.edited&&(this.content=this.original,this.storeName=!1,this.edited=!1)}split(e){let t=e-this.start,r=this.original.slice(0,t),i=this.original.slice(t);this.original=r;let s=new n(e,this.end,i);return s.outro=this.outro,this.outro="",this.end=e,this.edited?(s.edit("",!1),this.content=""):this.content=r,s.next=this.next,s.next&&(s.next.previous=s),s.previous=this,this.next=s,s}toString(){return this.intro+this.content+this.outro}trimEnd(e){if(this.outro=this.outro.replace(e,""),this.outro.length)return!0;let t=this.content.replace(e,"");if(t.length)return t!==this.content&&(this.split(this.start+t.length).edit("",void 0,!0),this.edited&&this.edit(t,this.storeName,!0)),!0;if(this.edit("",void 0,!0),this.intro=this.intro.replace(e,""),this.intro.length)return!0}trimStart(e){if(this.intro=this.intro.replace(e,""),this.intro.length)return!0;let t=this.content.replace(e,"");if(t.length){if(t!==this.content){let r=this.split(this.end-t.length);this.edited&&r.edit(t,this.storeName,!0),this.edit("",void 0,!0)}return!0}else if(this.edit("",void 0,!0),this.outro=this.outro.replace(e,""),this.outro.length)return!0}};function wt(){return typeof globalThis<"u"&&typeof globalThis.btoa=="function"?n=>globalThis.btoa(unescape(encodeURIComponent(n))):typeof Buffer=="function"?n=>Buffer.from(n,"utf-8").toString("base64"):()=>{throw new Error("Unsupported environment: `window.btoa` or `Buffer` should be supported.")}}var Rt=wt(),ue=class{constructor(e){this.version=3,this.file=e.file,this.sources=e.sources,this.sourcesContent=e.sourcesContent,this.names=e.names,this.mappings=Pe(e.mappings),typeof e.x_google_ignoreList<"u"&&(this.x_google_ignoreList=e.x_google_ignoreList),typeof e.debugId<"u"&&(this.debugId=e.debugId)}toString(){return JSON.stringify(this)}toUrl(){return"data:application/json;charset=utf-8;base64,"+Rt(this.toString())}};function St(n){let e=n.split(`
|
|
2
|
+
`),t=e.filter(s=>/^\t+/.test(s)),r=e.filter(s=>/^ {2,}/.test(s));if(t.length===0&&r.length===0)return null;if(t.length>=r.length)return" ";let i=r.reduce((s,o)=>{let a=/^ +/.exec(o)[0].length;return Math.min(a,s)},1/0);return new Array(i+1).join(" ")}function kt(n,e){let t=n.split(/[/\\]/),r=e.split(/[/\\]/);for(t.pop();t[0]===r[0];)t.shift(),r.shift();if(t.length){let i=t.length;for(;i--;)t[i]=".."}return t.concat(r).join("/")}var Et=Object.prototype.toString;function Ct(n){return Et.call(n)==="[object Object]"}function Le(n){let e=n.split(`
|
|
3
|
+
`),t=[];for(let r=0,i=0;r<e.length;r++)t.push(i),i+=e[r].length+1;return function(i){let s=0,o=t.length;for(;s<o;){let c=s+o>>1;i<t[c]?o=c:s=c+1}let a=s-1,l=i-t[a];return{line:a,column:l}}}var It=/\w/,de=class{constructor(e){this.hires=e,this.generatedCodeLine=0,this.generatedCodeColumn=0,this.raw=[],this.rawSegments=this.raw[this.generatedCodeLine]=[],this.pending=null}addEdit(e,t,r,i){if(t.length){let s=t.length-1,o=t.indexOf(`
|
|
4
|
+
`,0),a=-1;for(;o>=0&&s>o;){let c=[this.generatedCodeColumn,e,r.line,r.column];i>=0&&c.push(i),this.rawSegments.push(c),this.generatedCodeLine+=1,this.raw[this.generatedCodeLine]=this.rawSegments=[],this.generatedCodeColumn=0,a=o,o=t.indexOf(`
|
|
5
|
+
`,o+1)}let l=[this.generatedCodeColumn,e,r.line,r.column];i>=0&&l.push(i),this.rawSegments.push(l),this.advance(t.slice(a+1))}else this.pending&&(this.rawSegments.push(this.pending),this.advance(t));this.pending=null}addUneditedChunk(e,t,r,i,s){let o=t.start,a=!0,l=!1;for(;o<t.end;){if(r[o]===`
|
|
6
|
+
`)i.line+=1,i.column=0,this.generatedCodeLine+=1,this.raw[this.generatedCodeLine]=this.rawSegments=[],this.generatedCodeColumn=0,a=!0,l=!1;else{if(this.hires||a||s.has(o)){let c=[this.generatedCodeColumn,e,i.line,i.column];this.hires==="boundary"?It.test(r[o])?l||(this.rawSegments.push(c),l=!0):(this.rawSegments.push(c),l=!1):this.rawSegments.push(c)}i.column+=1,this.generatedCodeColumn+=1,a=!1}o+=1}this.pending=null}advance(e){if(!e)return;let t=e.split(`
|
|
7
|
+
`);if(t.length>1){for(let r=0;r<t.length-1;r++)this.generatedCodeLine++,this.raw[this.generatedCodeLine]=this.rawSegments=[];this.generatedCodeColumn=0}this.generatedCodeColumn+=t[t.length-1].length}},A=`
|
|
8
|
+
`,I={insertLeft:!1,insertRight:!1,storeName:!1},K=class n{constructor(e,t={}){let r=new W(0,e.length,e);Object.defineProperties(this,{original:{writable:!0,value:e},outro:{writable:!0,value:""},intro:{writable:!0,value:""},firstChunk:{writable:!0,value:r},lastChunk:{writable:!0,value:r},lastSearchedChunk:{writable:!0,value:r},byStart:{writable:!0,value:{}},byEnd:{writable:!0,value:{}},filename:{writable:!0,value:t.filename},indentExclusionRanges:{writable:!0,value:t.indentExclusionRanges},sourcemapLocations:{writable:!0,value:new V},storedNames:{writable:!0,value:{}},indentStr:{writable:!0,value:void 0},ignoreList:{writable:!0,value:t.ignoreList},offset:{writable:!0,value:t.offset||0}}),this.byStart[0]=r,this.byEnd[e.length]=r}addSourcemapLocation(e){this.sourcemapLocations.add(e)}append(e){if(typeof e!="string")throw new TypeError("outro content must be a string");return this.outro+=e,this}appendLeft(e,t){if(e=e+this.offset,typeof t!="string")throw new TypeError("inserted content must be a string");this._split(e);let r=this.byEnd[e];return r?r.appendLeft(t):this.intro+=t,this}appendRight(e,t){if(e=e+this.offset,typeof t!="string")throw new TypeError("inserted content must be a string");this._split(e);let r=this.byStart[e];return r?r.appendRight(t):this.outro+=t,this}clone(){let e=new n(this.original,{filename:this.filename,offset:this.offset}),t=this.firstChunk,r=e.firstChunk=e.lastSearchedChunk=t.clone();for(;t;){e.byStart[r.start]=r,e.byEnd[r.end]=r;let i=t.next,s=i&&i.clone();s&&(r.next=s,s.previous=r,r=s),t=i}return e.lastChunk=r,this.indentExclusionRanges&&(e.indentExclusionRanges=this.indentExclusionRanges.slice()),e.sourcemapLocations=new V(this.sourcemapLocations),e.intro=this.intro,e.outro=this.outro,e}generateDecodedMap(e){e=e||{};let t=0,r=Object.keys(this.storedNames),i=new de(e.hires),s=Le(this.original);return this.intro&&i.advance(this.intro),this.firstChunk.eachNext(o=>{let a=s(o.start);o.intro.length&&i.advance(o.intro),o.edited?i.addEdit(t,o.content,a,o.storeName?r.indexOf(o.original):-1):i.addUneditedChunk(t,o,this.original,a,this.sourcemapLocations),o.outro.length&&i.advance(o.outro)}),this.outro&&i.advance(this.outro),{file:e.file?e.file.split(/[/\\]/).pop():void 0,sources:[e.source?kt(e.file||"",e.source):e.file||""],sourcesContent:e.includeContent?[this.original]:void 0,names:r,mappings:i.raw,x_google_ignoreList:this.ignoreList?[t]:void 0}}generateMap(e){return new ue(this.generateDecodedMap(e))}_ensureindentStr(){this.indentStr===void 0&&(this.indentStr=St(this.original))}_getRawIndentString(){return this._ensureindentStr(),this.indentStr}getIndentString(){return this._ensureindentStr(),this.indentStr===null?" ":this.indentStr}indent(e,t){let r=/^[^\r\n]/gm;if(Ct(e)&&(t=e,e=void 0),e===void 0&&(this._ensureindentStr(),e=this.indentStr||" "),e==="")return this;t=t||{};let i={};t.exclude&&(typeof t.exclude[0]=="number"?[t.exclude]:t.exclude).forEach(u=>{for(let p=u[0];p<u[1];p+=1)i[p]=!0});let s=t.indentStart!==!1,o=c=>s?`${e}${c}`:(s=!0,c);this.intro=this.intro.replace(r,o);let a=0,l=this.firstChunk;for(;l;){let c=l.end;if(l.edited)i[a]||(l.content=l.content.replace(r,o),l.content.length&&(s=l.content[l.content.length-1]===`
|
|
9
9
|
`));else for(a=l.start;a<c;){if(!i[a]){let u=this.original[a];u===`
|
|
10
|
-
`?o=!0:u!=="\r"&&o&&(o=!1,a===l.start||(this._splitChunk(l,a),l=l.next),l.prependRight(e))}a+=1}a=l.end,l=l.next}return this.outro=this.outro.replace(r,s),this}insert(){throw new Error("magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)")}insertLeft(e,t){return b.insertLeft||(console.warn("magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead"),b.insertLeft=!0),this.appendLeft(e,t)}insertRight(e,t){return b.insertRight||(console.warn("magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead"),b.insertRight=!0),this.prependRight(e,t)}move(e,t,r){if(e=e+this.offset,t=t+this.offset,r=r+this.offset,r>=e&&r<=t)throw new Error("Cannot move a selection inside itself");this._split(e),this._split(t),this._split(r);let i=this.byStart[e],o=this.byEnd[t],s=i.previous,a=o.next,l=this.byStart[r];if(!l&&o===this.lastChunk)return this;let c=l?l.previous:this.lastChunk;return s&&(s.next=a),a&&(a.previous=s),c&&(c.next=i),l&&(l.previous=o),i.previous||(this.firstChunk=o.next),o.next||(this.lastChunk=i.previous,this.lastChunk.next=null),i.previous=c,o.next=l||null,c||(this.firstChunk=i),l||(this.lastChunk=o),this}overwrite(e,t,r,i){return i=i||{},this.update(e,t,r,{...i,overwrite:!i.contentOnly})}update(e,t,r,i){if(e=e+this.offset,t=t+this.offset,typeof r!="string")throw new TypeError("replacement content must be a string");if(this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}if(t>this.original.length)throw new Error("end is out of bounds");if(e===t)throw new Error("Cannot overwrite a zero-length range – use appendLeft or prependRight instead");this._split(e),this._split(t),i===!0&&(b.storeName||(console.warn("The final argument to magicString.overwrite(...) should be an options object. See https://github.com/rich-harris/magic-string"),b.storeName=!0),i={storeName:!0});let o=i!==void 0?i.storeName:!1,s=i!==void 0?i.overwrite:!1;if(o){let c=this.original.slice(e,t);Object.defineProperty(this.storedNames,c,{writable:!0,value:!0,enumerable:!0})}let a=this.byStart[e],l=this.byEnd[t];if(a){let c=a;for(;c!==l;){if(c.next!==this.byStart[c.end])throw new Error("Cannot overwrite across a split point");c=c.next,c.edit("",!1)}a.edit(r,o,!s)}else{let c=new J(e,t,"").edit(r,o);l.next=c,c.previous=l}return this}prepend(e){if(typeof e!="string")throw new TypeError("outro content must be a string");return this.intro=e+this.intro,this}prependLeft(e,t){if(e=e+this.offset,typeof t!="string")throw new TypeError("inserted content must be a string");this._split(e);let r=this.byEnd[e];return r?r.prependLeft(t):this.intro=t+this.intro,this}prependRight(e,t){if(e=e+this.offset,typeof t!="string")throw new TypeError("inserted content must be a string");this._split(e);let r=this.byStart[e];return r?r.prependRight(t):this.outro=t+this.outro,this}remove(e,t){if(e=e+this.offset,t=t+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}if(e===t)return this;if(e<0||t>this.original.length)throw new Error("Character is out of bounds");if(e>t)throw new Error("end must be greater than start");this._split(e),this._split(t);let r=this.byStart[e];for(;r;)r.intro="",r.outro="",r.edit(""),r=t>r.end?this.byStart[r.end]:null;return this}reset(e,t){if(e=e+this.offset,t=t+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}if(e===t)return this;if(e<0||t>this.original.length)throw new Error("Character is out of bounds");if(e>t)throw new Error("end must be greater than start");this._split(e),this._split(t);let r=this.byStart[e];for(;r;)r.reset(),r=t>r.end?this.byStart[r.end]:null;return this}lastChar(){if(this.outro.length)return this.outro[this.outro.length-1];let e=this.lastChunk;do{if(e.outro.length)return e.outro[e.outro.length-1];if(e.content.length)return e.content[e.content.length-1];if(e.intro.length)return e.intro[e.intro.length-1]}while(e=e.previous);return this.intro.length?this.intro[this.intro.length-1]:""}lastLine(){let e=this.outro.lastIndexOf(E);if(e!==-1)return this.outro.substr(e+1);let t=this.outro,r=this.lastChunk;do{if(r.outro.length>0){if(e=r.outro.lastIndexOf(E),e!==-1)return r.outro.substr(e+1)+t;t=r.outro+t}if(r.content.length>0){if(e=r.content.lastIndexOf(E),e!==-1)return r.content.substr(e+1)+t;t=r.content+t}if(r.intro.length>0){if(e=r.intro.lastIndexOf(E),e!==-1)return r.intro.substr(e+1)+t;t=r.intro+t}}while(r=r.previous);return e=this.intro.lastIndexOf(E),e!==-1?this.intro.substr(e+1)+t:this.intro+t}slice(e=0,t=this.original.length-this.offset){if(e=e+this.offset,t=t+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}let r="",i=this.firstChunk;for(;i&&(i.start>e||i.end<=e);){if(i.start<t&&i.end>=t)return r;i=i.next}if(i&&i.edited&&i.start!==e)throw new Error(`Cannot use replaced character ${e} as slice start anchor.`);let o=i;for(;i;){i.intro&&(o!==i||i.start===e)&&(r+=i.intro);let s=i.start<t&&i.end>=t;if(s&&i.edited&&i.end!==t)throw new Error(`Cannot use replaced character ${t} as slice end anchor.`);let a=o===i?e-i.start:0,l=s?i.content.length+t-i.end:i.content.length;if(r+=i.content.slice(a,l),i.outro&&(!s||i.end===t)&&(r+=i.outro),s)break;i=i.next}return r}snip(e,t){let r=this.clone();return r.remove(0,e),r.remove(t,r.original.length),r}_split(e){if(this.byStart[e]||this.byEnd[e])return;let t=this.lastSearchedChunk,r=t,i=e>t.end;for(;t;){if(t.contains(e))return this._splitChunk(t,e);if(t=i?this.byStart[t.end]:this.byEnd[t.start],t===r)return;r=t}}_splitChunk(e,t){if(e.edited&&e.content.length){let i=ye(this.original)(t);throw new Error(`Cannot split a chunk that has already been edited (${i.line}:${i.column} – "${e.original}")`)}let r=e.split(t);return this.byEnd[t]=e,this.byStart[t]=r,this.byEnd[r.end]=r,e===this.lastChunk&&(this.lastChunk=r),this.lastSearchedChunk=e,!0}toString(){let e=this.intro,t=this.firstChunk;for(;t;)e+=t.toString(),t=t.next;return e+this.outro}isEmpty(){let e=this.firstChunk;do if(e.intro.length&&e.intro.trim()||e.content.length&&e.content.trim()||e.outro.length&&e.outro.trim())return!1;while(e=e.next);return!0}length(){let e=this.firstChunk,t=0;do t+=e.intro.length+e.content.length+e.outro.length;while(e=e.next);return t}trimLines(){return this.trim("[\\r\\n]")}trim(e){return this.trimStart(e).trimEnd(e)}trimEndAborted(e){let t=new RegExp((e||"\\s")+"+$");if(this.outro=this.outro.replace(t,""),this.outro.length)return!0;let r=this.lastChunk;do{let i=r.end,o=r.trimEnd(t);if(r.end!==i&&(this.lastChunk===r&&(this.lastChunk=r.next),this.byEnd[r.end]=r,this.byStart[r.next.start]=r.next,this.byEnd[r.next.end]=r.next),o)return!0;r=r.previous}while(r);return!1}trimEnd(e){return this.trimEndAborted(e),this}trimStartAborted(e){let t=new RegExp("^"+(e||"\\s")+"+");if(this.intro=this.intro.replace(t,""),this.intro.length)return!0;let r=this.firstChunk;do{let i=r.end,o=r.trimStart(t);if(r.end!==i&&(r===this.lastChunk&&(this.lastChunk=r.next),this.byEnd[r.end]=r,this.byStart[r.next.start]=r.next,this.byEnd[r.next.end]=r.next),o)return!0;r=r.next}while(r);return!1}trimStart(e){return this.trimStartAborted(e),this}hasChanged(){return this.original!==this.toString()}_replaceRegexp(e,t){function r(o,s){return typeof t=="string"?t.replace(/\$(\$|&|\d+)/g,(a,l)=>l==="$"?"$":l==="&"?o[0]:+l<o.length?o[+l]:`$${l}`):t(...o,o.index,s,o.groups)}function i(o,s){let a,l=[];for(;a=o.exec(s);)l.push(a);return l}if(e.global)i(e,this.original).forEach(s=>{if(s.index!=null){let a=r(s,this.original);a!==s[0]&&this.overwrite(s.index,s.index+s[0].length,a)}});else{let o=this.original.match(e);if(o&&o.index!=null){let s=r(o,this.original);s!==o[0]&&this.overwrite(o.index,o.index+o[0].length,s)}}return this}_replaceString(e,t){let{original:r}=this,i=r.indexOf(e);return i!==-1&&(typeof t=="function"&&(t=t(e,i,r)),e!==t&&this.overwrite(i,i+e.length,t)),this}replace(e,t){return typeof e=="string"?this._replaceString(e,t):this._replaceRegexp(e,t)}_replaceAllString(e,t){let{original:r}=this,i=e.length;for(let o=r.indexOf(e);o!==-1;o=r.indexOf(e,o+i)){let s=r.slice(o,o+i),a=t;typeof t=="function"&&(a=t(s,o,r)),s!==a&&this.overwrite(o,o+i,a)}return this}replaceAll(e,t){if(typeof e=="string")return this._replaceAllString(e,t);if(!e.global)throw new TypeError("MagicString.prototype.replaceAll called with a non-global RegExp argument");return this._replaceRegexp(e,t)}};function rt(n){switch(n.kind){case"event":return"event";case"ref":return"ref";case"spread":return"spread";case"class":case"style":return"class-or-style-directive";case"attr":case"prop":return n.reactive?"reactive-prop":n.expr!==void 0?"expression-prop":void 0;default:return"expression-prop"}}function R(n){let e=[],t=new Map,r=i=>{switch(i.kind){case"text":return!0;case"expr":return!1;case"component":case"control":for(let o of i.children)r(o);return!1;case"fragment":for(let o of i.children)r(o);return!1;case"element":{let o=!0;for(let a of i.children)r(a)||(o=!1);let s;for(let a of i.props)if(s=rt(a),s)break;return!s&&!o&&(s=it(i)),i.static=!s,s?t.set(i,s):e.push(i),i.static}default:return!1}};for(let i of Array.isArray(n)?n:[n])r(i);return{staticElements:e,reasons:t}}function it(n){for(let e of n.children){if(e.kind==="expr")return"expression-child";if(e.kind==="component")return"component-child";if(e.kind==="control")return"control-child";if(e.kind==="element"&&!e.static||e.kind==="fragment")return"expression-child"}return"expression-child"}var F={kind:"eager"},ot=["pointerdown","focusin","keydown"],xe=new Set(["eager","idle","visible","interaction","media","never"]),v=class extends Error{};function te(n){return n.startsWith("load:")}function H(n,e){let t=n.slice(5);if(!xe.has(t))throw new v(`Unknown load strategy 'load:${t}'. Expected one of ${[...xe].join(", ")}.`);switch(t){case"eager":return F;case"idle":return{kind:"idle"};case"never":return{kind:"never"};case"visible":return e?{kind:"visible",rootMargin:e}:{kind:"visible"};case"interaction":return{kind:"interaction",events:e?st(e):[...ot]};case"media":if(!e)throw new v(`'load:media' needs a query, e.g. load:media="(min-width: 1024px)".`);return{kind:"media",query:e};default:throw new v(`Unhandled load strategy '${t}'.`)}}function st(n){let e=n.split(/[\s,]+/).map(t=>t.trim()).filter(Boolean);if(e.length===0)throw new v("'load:interaction' was given no event names.");return e}function q(n){return n.kind!=="eager"&&n.kind!=="never"}var I=["Show","For","Index","Switch","Match","Portal","Dynamic","ErrorBoundary"],T=["Suspense","SuspenseList","Await"],w=["Router","Outlet","Redirect","Link"],nn=[...I,...T,...w],ne=new Set([...I,...T]);function be(n={}){let{controlFlowModule:e="@fluixi/dom",coreModule:t="@fluixi/core",routerModule:r="@fluixi/core/router-next"}=n,i={};for(let o of I)i[o]=e;for(let o of T)i[o]=t;for(let o of w)i[o]=r;return i}function U(n,e={}){let{resolver:t,isBound:r,modules:i,strategyFor:o}=e,s=be(i),a=new Map,l=new Set,c=p=>{let{name:d}=p;if(!d||d.includes(".")||r?.(d))return;let h=u(d);if(!h){l.add(d);return}let m=h.origin==="builtin"&&ne.has(d)?F:o?.(p)??F;p.source={...h,loading:m},a.set(d,p.source)},u=p=>{if(ne.has(p))return{module:s[p],export:p,origin:"builtin"};let d=t?.resolve(p);if(d)return{module:d.module,export:d.export,origin:"rule"};if(w.includes(p))return{module:s[p],export:p,origin:"builtin"}};return X(n,p=>{p.kind==="component"&&c(p)}),{resolved:a,unresolved:[...l]}}function X(n,e){let t=Array.isArray(n)?n:[n];for(let r of t){e(r);let i=r.children;i&&X(i,e)}}function z(n){let e=[];X(n,o=>{o.kind==="component"&&o.source&&e.push(o)});let t=new Set,r=new Set;for(let o of e){let{module:s,loading:a}=o.source;a.kind==="eager"&&t.add(s),a.kind==="never"&&r.add(s)}let i=new Map;for(let o of e){let s=o.source;q(s.loading)&&t.has(s.module)&&(s.loading={kind:"eager"},i.set(s.module,(i.get(s.module)??0)+1))}return{collapsed:i,conflicted:[...r].filter(o=>t.has(o))}}var at=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),Re={className:"class",htmlFor:"for"},lt=new Set(["innerHTML","outerHTML","innerText","textContent","value","checked","selected","muted","defaultValue","defaultChecked","children","ref"]),ct=new Set(["script","style","textarea","title"]);function re(n){return ct.has(n)}function we(n){return Re[n]??n}function $(n){return n.kind!=="attr"||n.expr!==void 0||n.name.includes(":")?!1:!lt.has(n.name)}function ie(n){if(!n.static||re(n.tag))return!1;for(let e of n.props)if(!$(e))return!1;for(let e of n.children)if(e.kind!=="text"&&!(e.kind==="element"&&ie(e)))return!1;return!0}function O(n){let e=n.props.map(dt).filter(Boolean).join(""),t=`<${n.tag}${e}>`;return at.has(n.tag)?t:`${t}${n.children.map(ut).join("")}</${n.tag}>`}function ut(n){if(n.kind==="text")return ft(n.value);if(n.kind!=="element")throw new Error(`serializeStatic: unexpected ${n.kind}`);return O(n)}function dt(n){let e=Re[n.name]??n.name,t=n.literal;return t===!0||t===void 0?` ${e}`:t===!1||t===null?"":` ${e}="${pt(String(t))}"`}function pt(n){return n.replace(/&/g,"&").replace(/"/g,""").replace(/</g,"<").replace(/>/g,">")}function ft(n){return n.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}var ht="<!--fx-->",mt="<!--fx/-->";function G(n){return n.kind==="expr"||n.kind==="component"||n.kind==="control"}function gt(n){return n.kind==="text"||n.kind==="element"&&Se(n)}function Se(n){return n.svg||re(n.tag)||!n.props.every(e=>$(e))?!1:n.children.every(e=>gt(e)||G(e))}function W(n){if(G(n))return!0;let e=n.children;return e?e.some(W):!1}function Ce(n){for(let e=0;e<n.children.length;e++){let t=n.children[e];if(t.kind==="text"&&(t.value===""||n.children[e+1]?.kind==="text"))return!1}return n.children.every(e=>e.kind!=="element"||Ce(e))}function ke(n){if(!Se(n)||!Ce(n)||!n.children.some(W))return null;let e=[],t=[],r=0,i=s=>{let a=`_n$${r++}`;return e.push({ref:a,expr:s}),a};return o(n,"_el$"),{html:vt(n),tag:n.tag,steps:e,holes:t};function o(s,a){let l=-1;s.children.forEach((u,p)=>{W(u)&&(l=p)});let c=null;for(let u=0;u<=l;u++){let p=s.children[u],d=c?`${c}.nextSibling`:`${a}.firstChild`;if(G(p)){let m=i(d),_=i(`holeEnd(${m})`);t.push({parentRef:a,startRef:m,endRef:_,node:p}),c=_;continue}let h=i(d);p.kind==="element"&&W(p)&&o(p,h),c=h}}}function vt(n){return O(Ne(n)).split(Ee).join(ht+mt)}function Ne(n){return{...n,children:n.children.map(e=>G(e)?{kind:"text",value:Ee}:e.kind==="element"?Ne(e):e)}}var Ee="\0fx-hole\0";var oe={version:1,module:"@fluixi/dom",symbols:["createNativeElement","insert","spread","setAttribute","delegateEvents","createComponent","createMemo","untrack","Show","For","Index","Switch","Match","Dynamic","ErrorBoundary"]},hn={version:2,module:"@fluixi/dom",symbols:[...oe.symbols,"template","cloneTemplate","walk"]};var yt={show:"Show",for:"For",index:"Index",switch:"Switch",match:"Match",dynamic:"Dynamic",errorBoundary:"ErrorBoundary",suspense:"Suspense"};function xt(n){return/^[A-Za-z_$][A-Za-z0-9_$]*$/.test(n)}function Te(n){return xt(n)?n:JSON.stringify(n)}function bt(n){return n.expr!==void 0?n.reactive?`() => (${n.expr})`:`(${n.expr})`:JSON.stringify(n.literal??!0)}function Rt(n){return n.expr!==void 0?`(${n.expr})`:JSON.stringify(n.literal??!0)}function wt(n,e,t){let r=n.filter(a=>a.kind==="spread"),o=n.filter(a=>a.kind!=="spread").map(a=>`${Te(a.name)}: ${bt(a)}`);e!=null&&o.push(`children: ${e}`);let s=`{ ${o.join(", ")} }`;return r.length>0?(t.add("mergeProps"),`mergeProps(${r.map(a=>a.expr).join(", ")}, ${s})`):s}function $e(n,e,t){return n.length===1?L(n[0],e,t):`[${n.map(r=>L(r,e,t)).join(", ")}]`}function Ie(n,e,t,r,i){r.add("createMemo"),r.add("createComponent");let o=e.filter(c=>c.kind==="spread"),a=e.filter(c=>c.kind!=="spread").map(c=>`get ${Te(c.name)}() { return ${Rt(c)}; }`);t.length>0&&a.push(`get children() { return ${$e(t,r,i)}; }`);let l=`{ ${a.join(", ")} }`;return o.length>0&&(r.add("mergeProps"),l=`mergeProps(${o.map(c=>c.expr).join(", ")}, ${l})`),`createMemo(() => createComponent(${n}, ${l}))`}function St(n,e){let t=we(e.name),r=e.literal;return r===!0||r===void 0?`${n}.setAttribute(${JSON.stringify(t)}, "");`:r===!1||r===null?"":`${n}.setAttribute(${JSON.stringify(t)}, ${JSON.stringify(String(r))});`}var Oe=!1;function L(n,e,t){switch(n.kind){case"text":return JSON.stringify(n.value);case"expr":return n.reactive?`() => (${n.code})`:`(${n.code})`;case"fragment":return n.children.length===0?"null":$e(n.children,e,t);case"component":return Ie(n.name,n.props,n.children,e,t);case"control":{let r=yt[n.control]??n.control;return e.add(r),Ie(r,n.props,n.children,e,t)}case"element":{if(t&&n.static&&!n.svg&&ie(n)){e.add("templateNode");let a=`_tmpl$${t.length}`;return t.push({id:a,html:O(n),tag:n.tag,svg:!1}),`templateNode(${a}, ${JSON.stringify(n.tag)})`}if(t&&Oe){let a=ke(n);if(a){e.add("templateNode"),e.add("insert"),e.add("holeEnd"),e.add("holeContent"),e.add("holeScope");let l=`_tmpl$${t.length}`;t.push({id:l,html:a.html,tag:a.tag,svg:!1});let c=[`const _el$ = templateNode(${l}, ${JSON.stringify(a.tag)}, true);`];for(let u of a.steps)c.push(`const ${u.ref} = ${u.expr};`);for(let u of a.holes)c.push(`insert(${u.parentRef}, holeScope(${u.startRef}, () => (${L(u.node,e,t)})), ${u.endRef}, holeContent(${u.startRef}, ${u.endRef}));`);return c.push("return _el$;"),`(() => { ${c.join(" ")} })()`}}e.add("createNativeElement");let r=JSON.stringify(n.tag),i="_el$",o=[],s=n.svg?`${r}, true`:r;if(o.push(`const ${i} = createNativeElement(${s});`),n.props.length>0)if(!n.svg&&n.props.every($))for(let a of n.props)o.push(St(i,a));else{e.add("spread");let a=n.svg?", isSVG: true":"";o.push(`spread({ element: ${i}, props: ${wt(n.props,null,e)}${a} });`)}for(let a of n.children){e.add("insert");let l=L(a,e,t),c=a.kind==="expr"&&a.reactive||a.kind==="component"||a.kind==="control";o.push(c?`insert(${i}, ${l}, null);`:`insert(${i}, ${l});`)}return o.push(`return ${i};`),`(() => { ${o.join(" ")} })()`}}}function V(n,e){if(!e||e.length===0)return n;let t=new Map(e.map(r=>[r.id,JSON.stringify(r.html)]));return n.replace(/_tmpl\$\d+/g,r=>t.get(r)??r)}var S={name:"imperative",contract:oe,emit(n,e){let t=new Set,r=e?.templateClone!==!1?[]:void 0;return Oe=e?.partialTemplates===!0,{code:L(n,t,r),imports:Array.from(t),templates:r}}};var Ct=n=>"components"in n;function Le(n,e){return n.replace(/\$(\d+)/g,(t,r)=>e[Number(r)]??t)}function kt(n,e){return typeof e=="string"?{module:e,export:n}:e}function K(n=[]){let e=new Map,t=[],r=[];for(let s of n){if(!Ct(s)){r.push(s);continue}for(let[a,l]of Object.entries(s.components)){let c=kt(a,l),u=e.get(a);if(u&&u.module!==c.module){let p=t.find(d=>d.name===a);p?p.modules.push(c.module):t.push({name:a,modules:[u.module,c.module]});continue}e.set(a,c)}}let i=new Map;return{resolve:s=>{if(i.has(s))return i.get(s);let a=e.get(s);if(!a)for(let l of r){let c=s.match(new RegExp(l.match.source,l.match.flags.replace("g","")));if(c){a={module:Le(l.module,c),export:l.export?Le(l.export,c):s};break}}return i.set(s,a),a},names:()=>[...e.keys()],conflicts:()=>t}}import{parseTemplate as Nt}from"@fluixi/template-parser";function M(n){let e=n.split(/\r\n|\n|\r/),t=0;for(let i=0;i<e.length;i++)/[^ \t]/.test(e[i])&&(t=i);let r="";for(let i=0;i<e.length;i++){let o=e[i].replace(/\t/g," ");i!==0&&(o=o.replace(/^ +/,"")),i!==e.length-1&&(o=o.replace(/ +$/,"")),o&&(i!==t&&(o+=" "),r+=o)}return r}var Me=new Set(["click","dblclick","input","change","submit","focus","blur","keydown","keyup","keypress","mousedown","mouseup"]);function Et(n){return n.replace(/\\/g,"\\\\").replace(/`/g,"\\`").replace(/\$\{/g,"\\${")}function Pe(n){return n.charAt(0).toUpperCase()+n.slice(1)}var se=class{constructor(e,t){this.holes=e;this.used=t}hole(e){return this.holes[e]??{code:"undefined",reactive:!1}}emit(e){let{code:t,imports:r,templates:i}=S.emit(e,{});for(let o of r)this.used.add(o);return V(t,i)}lowerRoot(e){let t=this.lowerChildren(e);return t.length===1?t[0]:{kind:"fragment",children:t}}lowerChildren(e){let t=[];for(let r=0;r<e.length;r++){let i=e[r];if(i.kind==="Element"||i.kind==="Component"){let s=i.attributes.find(a=>a.kind==="IfDirective");if(s&&s.kind==="IfDirective"){let a=r+1;a<e.length&&this.isBlankText(e[a])&&a++;let l=e[a],c=l&&(l.kind==="Element"||l.kind==="Component")&&l.attributes.some(u=>u.kind==="ElseDirective");t.push(this.lowerIf(i,s.hole,c?l:null)),c&&(r=a);continue}if(i.attributes.some(a=>a.kind==="EachDirective")){t.push(this.lowerEach(i));continue}}let o=this.lowerNode(i);o&&t.push(o)}return t}isBlankText(e){return e.kind==="Text"&&!e.raw&&M(e.value)===""}lowerNode(e){switch(e.kind){case"Text":{if(e.raw)return{kind:"text",value:e.value};let t=M(e.value);return t?{kind:"text",value:t}:null}case"Comment":return null;case"Expression":{let t=this.hole(e.hole);return{kind:"expr",code:t.code,reactive:t.reactive}}case"Fragment":return{kind:"fragment",children:this.lowerChildren(e.children)};case"Element":return this.lowerElement(e);case"Component":return this.lowerComponent(e);default:return null}}lowerElement(e){let t=e.attributes.find(r=>r.kind==="Attribute"&&r.name==="is");if(e.tag==="component"&&t&&t.value&&t.value.kind==="hole"){let r=e.attributes.filter(o=>o!==t),i=this.lowerComponent({...e,kind:"Component",tag:"Dynamic",tagHole:null,attributes:r});return i.props.unshift({name:"component",kind:"attr",expr:`() => (${this.hole(t.value.hole).code})`}),i}return{kind:"element",tag:e.tag,svg:e.namespace==="svg",props:this.lowerAttributes(e.attributes),children:this.lowerChildren(e.children),static:!1}}lowerComponent(e){let t=e.tagHole!=null?this.hole(e.tagHole).code:e.tag,r=this.lowerAttributes(e.attributes),{slots:i,rest:o}=this.partitionSlots(e.children);for(let[l,c]of i){let u=c.length===1?c[0]:{kind:"fragment",children:c},p={name:l,kind:"attr",expr:this.emit(u),jsxElement:!0},d=r.findIndex(h=>h.name===l);d>=0?r[d]=p:r.push(p)}let s=e.attributes.find(l=>l.kind==="LoadDirective"),a=s?H(`load:${s.strategy}`,s.modifier):void 0;return{kind:"component",name:t,props:r,children:this.lowerChildren(o),...a?{load:a}:{}}}partitionSlots(e){let t=new Map,r=[];for(let i of e){if(i.kind==="Element"||i.kind==="Component"){let o=i.attributes.find(s=>s.kind==="Attribute"&&s.name==="slot");if(o&&o.value&&o.value.kind==="static"){let s={...i,attributes:i.attributes.filter(c=>c!==o)},a=s.kind==="Element"?this.lowerElement(s):this.lowerComponent(s),l=t.get(o.value.value)??[];l.push(a),t.set(o.value.value,l);continue}}r.push(i)}return{slots:t,rest:r}}lowerIf(e,t,r){let i=this.hole(t),o=[{name:"when",kind:"attr",expr:i.code,reactive:i.reactive}];if(r){let a=this.stripAndLower(r,l=>l.kind==="ElseDirective");o.push({name:"fallback",kind:"attr",expr:this.emit(a),jsxElement:!0})}let s=this.stripAndLower(e,a=>a.kind==="IfDirective");return{kind:"component",name:"Show",props:o,children:[s]}}lowerEach(e){let t=e.attributes.find(l=>l.kind==="EachDirective");if(!t||t.kind!=="EachDirective")return this.lowerNode(e);let r=this.hole(t.hole),i=[{name:"each",kind:"attr",expr:r.code,reactive:r.reactive}];if(t.key){let l="static"in t.key?`(item) => item[${JSON.stringify(t.key.static)}]`:this.hole(t.key.hole).code;i.push({name:"by",kind:"attr",expr:l})}let o=this.itemArrow(e),s;if(o){let l={kind:"expr",code:o.body,reactive:o.bodyReactive},c=this.rebuildWithChildren(e,[l]);s=`(${o.params.join(", ")}) => (${this.emit(c)})`}else{let l=this.stripAndLower(e,c=>c.kind==="EachDirective");s=`() => (${this.emit(l)})`}return{kind:"component",name:"For",props:i,children:[{kind:"expr",code:s,reactive:!1}]}}itemArrow(e){let t=e.children.filter(r=>!this.isBlankText(r));return t.length!==1||t[0].kind!=="Expression"?null:this.hole(t[0].hole).arrow??null}stripAndLower(e,t){let r={...e,attributes:e.attributes.filter(i=>!t(i))};return r.kind==="Element"?this.lowerElement(r):this.lowerComponent(r)}rebuildWithChildren(e,t){let r=this.lowerAttributes(e.attributes.filter(i=>i.kind!=="EachDirective"));return e.kind==="Element"?{kind:"element",tag:e.tag,svg:e.namespace==="svg",props:r,children:t,static:!1}:{kind:"component",name:e.tag,props:r,children:t}}lowerAttributes(e){let t=[],r=[],i=!1,o=[],s=!1,a=[];for(let l of e)switch(l.kind){case"IfDirective":case"EachDirective":case"ElseDirective":break;case"Attribute":t.push(this.plainAttr(l));break;case"PropertyBinding":t.push({name:l.name,kind:"prop",expr:this.hole(l.hole).code,reactive:this.hole(l.hole).reactive});break;case"EventBinding":t.push(this.eventProp(l));break;case"RefBinding":t.push({name:"ref",kind:"ref",expr:this.hole(l.hole).code,reactive:this.hole(l.hole).reactive});break;case"Spread":t.push({name:"",kind:"spread",expr:this.hole(l.hole).code});break;case"ClassDirective":{let c=this.hole(l.hole);r.push(`${JSON.stringify(l.name)}: ${c.code}`),i=i||c.reactive;break}case"StyleDirective":{let c=this.hole(l.hole);o.push(`${JSON.stringify(l.name)}: ${c.code}`),s=s||c.reactive;break}case"BindDirective":t.push(...this.bindProps(l.name,this.hole(l.hole).code));break;case"UseDirective":{let c=l.name??(l.hole!=null?this.hole(l.hole).code:null);if(!c)break;a.push(l.name!=null&&l.hole!=null?`[${c}, () => (${this.hole(l.hole).code})]`:`[${c}]`);break}}return r.length>0&&t.push({name:"classList",kind:"attr",expr:`{ ${r.join(", ")} }`,reactive:i}),o.length>0&&t.push({name:"style",kind:"attr",expr:`{ ${o.join(", ")} }`,reactive:s}),a.length>0&&t.push({name:"use",kind:"attr",expr:`[${a.join(", ")}]`}),t}eventProp(e){let t=e.name.toLowerCase(),r=this.hole(e.hole).code;if(!(e.syntax==="colon"||e.modifiers.length>0))return{name:"on"+Pe(e.name),kind:"event",event:{name:t,delegated:Me.has(t)},expr:r};let o=this.wrapHandler(r,e.modifiers),s=this.eventOptions(e.modifiers),a=s?`[${o}, ${s}]`:o;return{name:"on:"+t,kind:"attr",expr:a}}wrapHandler(e,t){let r=t.includes("self")?"if (e.target !== e.currentTarget) return; ":"",i=[];return t.includes("prevent")&&i.push("e.preventDefault();"),t.includes("stop")&&i.push("e.stopPropagation();"),!r&&i.length===0?e:`(e) => { ${r}${i.join(" ")} return (${e})(e); }`}eventOptions(e){let t=[];return e.includes("capture")&&t.push("capture: true"),e.includes("once")&&t.push("once: true"),e.includes("passive")&&t.push("passive: true"),t.length?`{ ${t.join(", ")} }`:null}bindProps(e,t){let r=e==="checked",i=r?"change":"input",o=r?"checked":"value",s=`(${t})`;return[{name:e,kind:"attr",expr:`${s}[0]()`,reactive:!0},{name:"on"+Pe(i),kind:"event",event:{name:i,delegated:Me.has(i)},expr:`(e) => ${s}[1](e.target.${o})`}]}plainAttr(e){let t=e.value,r=e.name;e.name==="class"?r=t&&t.kind==="hole"&&this.hole(t.hole).object?"classList":"className":e.name==="html"&&(r="innerHTML");let o={name:r,kind:"attr"};if(t==null)return o.literal=!0,o;if(t.kind==="static")return o.literal=t.value,o;if(t.kind==="hole"){let l=this.hole(t.hole);return o.expr=l.code,o.reactive=l.reactive,o}let s=!1,a=t.parts.map(l=>{if("text"in l)return Et(l.text);let c=this.hole(l.hole);return s=s||c.reactive,"${"+c.code+"}"}).join("");return o.expr="`"+a+"`",o.reactive=s,o}};function Ae(n,e,t,r={}){let{root:i}=Nt(n,{svg:r.svg});return new se(e,t).lowerRoot(i.children)}function _e(n,e,t={}){let r=new Set,i=Ae(n,[...e],r,{svg:t.svg});R(i),U(i,{resolver:K(t.resolve??[]),modules:{controlFlowModule:t.controlFlowModule??"@fluixi/dom",coreModule:t.coreModule??"@fluixi/core",routerModule:t.routerModule??"@fluixi/core/router-next"},strategyFor:l=>l.load}),z(i);let{code:o,imports:s,templates:a}=S.emit(i,{templateClone:t.templateClone,partialTemplates:t.partialTemplates});for(let l of s)r.add(l);return t.hoistTemplates?{code:o,imports:[...r],ir:i,templates:a}:{code:V(o,a),imports:[...r],ir:i}}var It="children";function C(n){switch(n.kind){case"call":return!0;case"member":return n.property!==It;case"compound":return n.parts.some(C);case"opaque":return!1}}var Tt=new Set(["CallExpression","OptionalCallExpression"]),$t=new Set(["MemberExpression","OptionalMemberExpression"]);function k(n){if(!n)return{kind:"opaque"};if(Tt.has(n.type))return{kind:"call"};if($t.has(n.type)){let e=n.property;return{kind:"member",property:!(n.computed===!0)&&e?.type==="Identifier"?e.name:null}}return n.type==="ConditionalExpression"?{kind:"compound",parts:[n.test,n.consequent,n.alternate].map(P)}:n.type==="LogicalExpression"||n.type==="BinaryExpression"?{kind:"compound",parts:[n.left,n.right].map(P)}:n.type==="TemplateLiteral"?{kind:"compound",parts:n.expressions.map(P)}:n.type==="ObjectExpression"?{kind:"compound",parts:n.properties.filter(t=>(t.type==="ObjectProperty"||t.type==="Property")&&t.computed!==!0).map(t=>P(t.value))}:n.type==="ArrayExpression"?{kind:"compound",parts:n.elements.filter(t=>t!=null&&t.type!=="SpreadElement").map(P)}:{kind:"opaque"}}var P=n=>k(n);var Ot=new Set(["svg","path","circle","rect","line","polygon","polyline","ellipse","g","defs","clipPath","text"]),Lt=/^on[A-Z]/,Mt=new Set(["click","dblclick","input","change","submit","focus","blur","keydown","keyup","keypress","mousedown","mouseup"]),Je=n=>C(k(n));function A(n){if(n.type==="StringLiteral"||n.type==="NumericLiteral"||n.type==="BooleanLiteral"||n.type==="Literal"&&(typeof n.value=="string"||typeof n.value=="number"||typeof n.value=="boolean"))return n.value}var ae=n=>!!n&&typeof A(n)=="string";function Pt(n,e){return n.type==="JSXIdentifier"?{tag:n.name,component:n.name[0]!==n.name[0].toLowerCase()}:n.type==="JSXMemberExpression"?{tag:e.code(n),component:!0}:n.type==="JSXNamespacedName"?{tag:`${n.namespace.name}:${n.name.name}`,component:!1}:{tag:"div",component:!1}}function le(n){return n.type==="JSXIdentifier"?n.name==="class"?"className":n.name:n.type==="JSXNamespacedName"?`${n.namespace.name}:${n.name.name}`:"unknown"}function At(n,e){let t=le(n.name),r=Lt.test(t),i=r||t.startsWith("on:")||t==="ref",s={name:t,kind:r?"event":"attr"};if(r){let l=t.slice(2).toLowerCase();s.event={name:l,delegated:Mt.has(l)}}let a=n.value;if(a==null)return s.literal=!0,s;if(ae(a))return s.literal=A(a),s;if(a.type==="JSXExpressionContainer"&&a.expression?.type!=="JSXEmptyExpression"){let l=a.expression,c=A(l);return c!==void 0?(s.literal=c,s):(s.expr=e.code(l),s.reactive=i?!1:Je(l),(l.type==="JSXElement"||l.type==="JSXFragment")&&(s.jsxElement=!0),s)}return s.literal=!0,s}function je(n,e){let t=n.value;return t==null?null:ae(t)?JSON.stringify(A(t)):t.type==="JSXExpressionContainer"&&t.expression?.type!=="JSXEmptyExpression"?e.code(t.expression):null}function _t(n,e){let t=[],r=[];for(let i of n){if(i.type==="JSXSpreadAttribute"){t.push({name:"",kind:"spread",expr:e.code(i.argument)});continue}if(i.type!=="JSXAttribute"||te(le(i.name)))continue;let o=i.name.type==="JSXNamespacedName"?i.name.namespace.name:null;if(o==="use"){let s=i.name.name.name;e.used.add(s);let a=je(i,e);r.push(a!=null?`[${s}, () => (${a})]`:`[${s}]`);continue}if(o==="oncapture"){let s=i.name.name.name.toLowerCase(),a=je(i,e)??"undefined";t.push({name:"on:"+s,kind:"attr",expr:`[${a}, { capture: true }]`});continue}t.push(At(i,e))}return r.length>0&&t.push({name:"use",kind:"attr",expr:`[${r.join(", ")}]`}),t}function De(n,e){let t=[];for(let r of n)if(r.type==="JSXText"){let i=M(r.value);i&&t.push({kind:"text",value:i})}else if(r.type==="JSXExpressionContainer"){if(r.expression?.type!=="JSXEmptyExpression"){let i=r.expression;t.push({kind:"expr",code:e.code(i),reactive:Je(i)})}}else r.type==="JSXElement"||r.type==="JSXFragment"?t.push(Be(r,e)):r.type==="JSXSpreadChild"&&t.push({kind:"expr",code:e.code(r.expression),reactive:!1});return t}function jt(n){for(let e of n){if(e.type!=="JSXAttribute")continue;let t=le(e.name);if(te(t)){if(e.value&&!ae(e.value))throw new v(`'${t}' needs a literal value, not an expression — the strategy is compile-time.`);return H(t,e.value?A(e.value):null)}}}function Be(n,e){if(n.type==="JSXFragment")return{kind:"fragment",children:De(n.children,e)};let{tag:t,component:r}=Pt(n.openingElement.name,e),i=_t(n.openingElement.attributes,e),o=De(n.children,e);if(r){let s=jt(n.openingElement.attributes);return{kind:"component",name:t,props:i,children:o,...s?{load:s}:{}}}return{kind:"element",tag:t,svg:Ot.has(t),props:i,children:o,static:!1}}function Fe(n,e){let t=Be(n,e);return R(t),t}function y(n,e){if(n)switch(n.type){case"Identifier":e.add(n.name);return;case"ObjectPattern":for(let t of n.properties)t.type==="RestElement"?y(t.argument,e):y(t.value,e);return;case"ArrayPattern":for(let t of n.elements)y(t,e);return;case"AssignmentPattern":y(n.left,e);return;case"RestElement":y(n.argument,e);return}}function He(n,e){switch(n.type){case"ImportDeclaration":for(let t of n.specifiers)y(t.local,e);return;case"VariableDeclaration":for(let t of n.declarations)y(t.id,e);return;case"FunctionDeclaration":case"ClassDeclaration":y(n.id,e);return;case"ExportNamedDeclaration":case"ExportDefaultDeclaration":n.declaration&&He(n.declaration,e);return}}function qe(n){let e=new Set;for(let t of n.body)He(t,e);return e}var Jt=new Set(I),Bt=new Set(T),Ft=new Set(w),Ht=new Set(["createMemo","createEffect","createRenderEffect","createRoot","createSignal","onCleanup","batch","untrack"]);function ce(n,e,t=null,r=""){if(!(!n||typeof n!="object")){if(Array.isArray(n)){for(let i of n)ce(i,e,t,r);return}typeof n.type=="string"&&e(n,t,r);for(let i of Object.keys(n))i==="loc"||i==="leadingComments"||i==="trailingComments"||ce(n[i],e,typeof n.type=="string"?n:t,i)}}var ue=n=>n.type==="JSXElement"||n.type==="JSXFragment";function qt(n,e,t){return ue(n)?!(e&&ue(e)&&t==="children"):!1}function Ut(n,e){return n.type==="TaggedTemplateExpression"&&n.tag?.type==="Identifier"&&(n.tag.name===e||n.tag.name==="svg")}function Ue(n){return n.filter(e=>!n.some(t=>t!==e&&t.start<=e.start&&t.end>=e.end&&t.end-t.start>e.end-e.start))}function Y(n,e,t,r){let i=Ue(r.filter(s=>s.start>=e&&s.end<=t)).sort((s,a)=>a.start-s.start),o=n.slice(e,t);for(let s of i)o=o.slice(0,s.start-e)+s.code+o.slice(s.end-e);return o}function Xt(n,e,t){let r={code:Y(n,e.start,e.end,t),reactive:C(k(e))};return e.type==="ArrowFunctionExpression"&&e.body?.type!=="BlockStatement"&&(r.arrow={params:e.params.map(i=>Y(n,i.start,i.end,t)),body:Y(n,e.body.start,e.body.end,t),bodyReactive:C(k(e.body))}),e.type==="ObjectExpression"&&(r.object=!0),r}function Xe(n,e,t){if(!e||e.length===0)return n;let r=new Map;for(let i of e){let o=`${i.svg?"svg:":""}${i.html}`,s=t.get(o);s||(s=`_fxTmpl$${t.size}`,t.set(o,s)),r.set(i.id,s)}return n.replace(/_tmpl\$\d+/g,i=>r.get(i)??i)}function de(n,e){if(n.kind==="component"&&n.source){let t=n.source;t.origin==="builtin"?e.builtins.add(n.name):q(t.loading)&&!e.resolved.has(n.name)?e.deferred.set(n.name,t):(e.deferred.delete(n.name),e.resolved.set(n.name,t))}if("props"in n&&n.props)for(let t of n.props)t.kind==="event"&&t.event?.delegated&&e.delegatedEvents.add(t.event.name);if("children"in n&&n.children)for(let t of n.children)de(t,e)}function zt(n){let e=[`kind: ${JSON.stringify(n.kind)}`];return n.kind==="visible"&&n.rootMargin&&e.push(`rootMargin: ${JSON.stringify(n.rootMargin)}`),n.kind==="interaction"&&e.push(`events: ${JSON.stringify(n.events)}`),n.kind==="media"&&e.push(`query: ${JSON.stringify(n.query)}`),`{ ${e.join(", ")} }`}function Wt(n){let e=[];return n.quasi.quasis.forEach((t,r)=>{if(e.push({kind:"static",text:t.value.cooked??t.value.raw,start:t.start}),r<n.quasi.expressions.length){let i=n.quasi.expressions[r];e.push({kind:"hole",index:r,start:i.start,end:i.end})}}),e}function rr(n,e,t={}){let r=t.litTag??"html",i=t.format??"both",o=i!=="jsx",s=i!=="lit";if(!(o&&(n.includes(`${r}\``)||n.includes("svg`")))&&!(s&&n.includes("<")))return null;let l=Dt(n,{sourceType:"module",plugins:["jsx","typescript"],errorRecovery:!0}),c=[];if(ce(l.program,(f,x,Z)=>{(o&&Ut(f,r)||s&&qt(f,x,Z))&&c.push(f)}),c.length===0)return null;c.sort((f,x)=>x.start-f.start||f.end-x.end);let u=new Set,p={builtins:new Set,resolved:new Map,deferred:new Map,delegatedEvents:new Set},d=new Map,h=[];for(let f of c){let x=c.some(g=>g!==f&&g.start<=f.start&&g.end>=f.end&&g.end-g.start>f.end-f.start);if(ue(f)){h.push({start:f.start,end:f.end,code:Gt(n,f,h,x,u,p,d,t)});continue}let Z=f.quasi.expressions.map(g=>Xt(n,g,h)),j=_e(Wt(f),Z,{...t,hoistTemplates:!0,templateClone:t.templateClone??!0,partialTemplates:x?!1:t.partialTemplates??!0,svg:f.tag.name==="svg"});for(let g of j.imports)u.add(g);de(j.ir,p),h.push({start:f.start,end:f.end,code:Xe(j.code,j.templates,d)})}let m=new B(n);for(let f of Ue(h))m.overwrite(f.start,f.end,f.code);let _=qe(l.program),pe=Vt(u,p,d,_,t);pe&&m.prepend(pe);for(let f of l.program.body)f.type==="ImportDeclaration"&&f.source?.value==="@fluixi/core/rx"&&m.overwrite(f.source.start,f.source.end,JSON.stringify("@fluixi/reactive"));return{code:m.toString(),map:m.generateMap({source:e,includeContent:!0,hires:!0})}}function Gt(n,e,t,r,i,o,s,a){let l=Fe(e,{code:u=>Y(n,u.start,u.end,t),used:i});R(l),U(l,{resolver:K(a.resolve??[]),modules:{controlFlowModule:a.controlFlowModule??a.runtimeModule??"@fluixi/dom",coreModule:a.coreModule??"@fluixi/core",routerModule:a.routerModule??"@fluixi/core/router-next"},strategyFor:u=>u.load}),z(l);let c=S.emit(l,{templateClone:a.templateClone??!0,partialTemplates:r?!1:a.partialTemplates??!0});for(let u of c.imports)i.add(u);return de(l,o),Xe(c.code,c.templates,s)}function Vt(n,e,t,r,i){let o=i.runtimeModule??"@fluixi/dom",s=i.coreModule??"@fluixi/core",a=new Map,l=(d,h)=>a.set(d,[...a.get(d)??[],h]),c=new Set(n);for(let d of e.builtins)c.add(d);e.delegatedEvents.size>0&&c.add("delegateEvents");for(let d of[...c].sort())r.has(d)||(Ht.has(d)?l(i.reactiveModule??"@fluixi/reactive/signal",d):Ft.has(d)?l(i.routerModule??"@fluixi/core/router-next",d):Bt.has(d)?l(s,d):Jt.has(d)?l(i.controlFlowModule??o,d):l(o,d));for(let[d,h]of e.resolved)r.has(d)||l(h.module,h.export==="default"?`default as ${d}`:d===h.export?d:`${h.export} as ${d}`);let u=[];for(let[d,h]of a)u.push(`import { ${h.join(", ")} } from ${JSON.stringify(d)};`);let p=[...e.deferred].filter(([d])=>!r.has(d));if(p.length>0){r.has("deferred")||u.push(`import { deferred } from ${JSON.stringify(s)};`);for(let[d,h]of p)u.push(`const ${d} = deferred(() => import(${JSON.stringify(h.module)}), { strategy: ${zt(h.loading)}, export: ${JSON.stringify(h.export)} });`)}for(let[d,h]of t)u.push(`const ${h} = ${JSON.stringify(d.startsWith("svg:")?d.slice(4):d)};`);return e.delegatedEvents.size>0&&u.push(`delegateEvents(${JSON.stringify([...e.delegatedEvents])});`),u.length>0?u.join(`
|
|
10
|
+
`?s=!0:u!=="\r"&&s&&(s=!1,a===l.start||(this._splitChunk(l,a),l=l.next),l.prependRight(e))}a+=1}a=l.end,l=l.next}return this.outro=this.outro.replace(r,o),this}insert(){throw new Error("magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)")}insertLeft(e,t){return I.insertLeft||(console.warn("magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead"),I.insertLeft=!0),this.appendLeft(e,t)}insertRight(e,t){return I.insertRight||(console.warn("magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead"),I.insertRight=!0),this.prependRight(e,t)}move(e,t,r){if(e=e+this.offset,t=t+this.offset,r=r+this.offset,r>=e&&r<=t)throw new Error("Cannot move a selection inside itself");this._split(e),this._split(t),this._split(r);let i=this.byStart[e],s=this.byEnd[t],o=i.previous,a=s.next,l=this.byStart[r];if(!l&&s===this.lastChunk)return this;let c=l?l.previous:this.lastChunk;return o&&(o.next=a),a&&(a.previous=o),c&&(c.next=i),l&&(l.previous=s),i.previous||(this.firstChunk=s.next),s.next||(this.lastChunk=i.previous,this.lastChunk.next=null),i.previous=c,s.next=l||null,c||(this.firstChunk=i),l||(this.lastChunk=s),this}overwrite(e,t,r,i){return i=i||{},this.update(e,t,r,{...i,overwrite:!i.contentOnly})}update(e,t,r,i){if(e=e+this.offset,t=t+this.offset,typeof r!="string")throw new TypeError("replacement content must be a string");if(this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}if(t>this.original.length)throw new Error("end is out of bounds");if(e===t)throw new Error("Cannot overwrite a zero-length range – use appendLeft or prependRight instead");this._split(e),this._split(t),i===!0&&(I.storeName||(console.warn("The final argument to magicString.overwrite(...) should be an options object. See https://github.com/rich-harris/magic-string"),I.storeName=!0),i={storeName:!0});let s=i!==void 0?i.storeName:!1,o=i!==void 0?i.overwrite:!1;if(s){let c=this.original.slice(e,t);Object.defineProperty(this.storedNames,c,{writable:!0,value:!0,enumerable:!0})}let a=this.byStart[e],l=this.byEnd[t];if(a){let c=a;for(;c!==l;){if(c.next!==this.byStart[c.end])throw new Error("Cannot overwrite across a split point");c=c.next,c.edit("",!1)}a.edit(r,s,!o)}else{let c=new W(e,t,"").edit(r,s);l.next=c,c.previous=l}return this}prepend(e){if(typeof e!="string")throw new TypeError("outro content must be a string");return this.intro=e+this.intro,this}prependLeft(e,t){if(e=e+this.offset,typeof t!="string")throw new TypeError("inserted content must be a string");this._split(e);let r=this.byEnd[e];return r?r.prependLeft(t):this.intro=t+this.intro,this}prependRight(e,t){if(e=e+this.offset,typeof t!="string")throw new TypeError("inserted content must be a string");this._split(e);let r=this.byStart[e];return r?r.prependRight(t):this.outro=t+this.outro,this}remove(e,t){if(e=e+this.offset,t=t+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}if(e===t)return this;if(e<0||t>this.original.length)throw new Error("Character is out of bounds");if(e>t)throw new Error("end must be greater than start");this._split(e),this._split(t);let r=this.byStart[e];for(;r;)r.intro="",r.outro="",r.edit(""),r=t>r.end?this.byStart[r.end]:null;return this}reset(e,t){if(e=e+this.offset,t=t+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}if(e===t)return this;if(e<0||t>this.original.length)throw new Error("Character is out of bounds");if(e>t)throw new Error("end must be greater than start");this._split(e),this._split(t);let r=this.byStart[e];for(;r;)r.reset(),r=t>r.end?this.byStart[r.end]:null;return this}lastChar(){if(this.outro.length)return this.outro[this.outro.length-1];let e=this.lastChunk;do{if(e.outro.length)return e.outro[e.outro.length-1];if(e.content.length)return e.content[e.content.length-1];if(e.intro.length)return e.intro[e.intro.length-1]}while(e=e.previous);return this.intro.length?this.intro[this.intro.length-1]:""}lastLine(){let e=this.outro.lastIndexOf(A);if(e!==-1)return this.outro.substr(e+1);let t=this.outro,r=this.lastChunk;do{if(r.outro.length>0){if(e=r.outro.lastIndexOf(A),e!==-1)return r.outro.substr(e+1)+t;t=r.outro+t}if(r.content.length>0){if(e=r.content.lastIndexOf(A),e!==-1)return r.content.substr(e+1)+t;t=r.content+t}if(r.intro.length>0){if(e=r.intro.lastIndexOf(A),e!==-1)return r.intro.substr(e+1)+t;t=r.intro+t}}while(r=r.previous);return e=this.intro.lastIndexOf(A),e!==-1?this.intro.substr(e+1)+t:this.intro+t}slice(e=0,t=this.original.length-this.offset){if(e=e+this.offset,t=t+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;t<0;)t+=this.original.length}let r="",i=this.firstChunk;for(;i&&(i.start>e||i.end<=e);){if(i.start<t&&i.end>=t)return r;i=i.next}if(i&&i.edited&&i.start!==e)throw new Error(`Cannot use replaced character ${e} as slice start anchor.`);let s=i;for(;i;){i.intro&&(s!==i||i.start===e)&&(r+=i.intro);let o=i.start<t&&i.end>=t;if(o&&i.edited&&i.end!==t)throw new Error(`Cannot use replaced character ${t} as slice end anchor.`);let a=s===i?e-i.start:0,l=o?i.content.length+t-i.end:i.content.length;if(r+=i.content.slice(a,l),i.outro&&(!o||i.end===t)&&(r+=i.outro),o)break;i=i.next}return r}snip(e,t){let r=this.clone();return r.remove(0,e),r.remove(t,r.original.length),r}_split(e){if(this.byStart[e]||this.byEnd[e])return;let t=this.lastSearchedChunk,r=t,i=e>t.end;for(;t;){if(t.contains(e))return this._splitChunk(t,e);if(t=i?this.byStart[t.end]:this.byEnd[t.start],t===r)return;r=t}}_splitChunk(e,t){if(e.edited&&e.content.length){let i=Le(this.original)(t);throw new Error(`Cannot split a chunk that has already been edited (${i.line}:${i.column} – "${e.original}")`)}let r=e.split(t);return this.byEnd[t]=e,this.byStart[t]=r,this.byEnd[r.end]=r,e===this.lastChunk&&(this.lastChunk=r),this.lastSearchedChunk=e,!0}toString(){let e=this.intro,t=this.firstChunk;for(;t;)e+=t.toString(),t=t.next;return e+this.outro}isEmpty(){let e=this.firstChunk;do if(e.intro.length&&e.intro.trim()||e.content.length&&e.content.trim()||e.outro.length&&e.outro.trim())return!1;while(e=e.next);return!0}length(){let e=this.firstChunk,t=0;do t+=e.intro.length+e.content.length+e.outro.length;while(e=e.next);return t}trimLines(){return this.trim("[\\r\\n]")}trim(e){return this.trimStart(e).trimEnd(e)}trimEndAborted(e){let t=new RegExp((e||"\\s")+"+$");if(this.outro=this.outro.replace(t,""),this.outro.length)return!0;let r=this.lastChunk;do{let i=r.end,s=r.trimEnd(t);if(r.end!==i&&(this.lastChunk===r&&(this.lastChunk=r.next),this.byEnd[r.end]=r,this.byStart[r.next.start]=r.next,this.byEnd[r.next.end]=r.next),s)return!0;r=r.previous}while(r);return!1}trimEnd(e){return this.trimEndAborted(e),this}trimStartAborted(e){let t=new RegExp("^"+(e||"\\s")+"+");if(this.intro=this.intro.replace(t,""),this.intro.length)return!0;let r=this.firstChunk;do{let i=r.end,s=r.trimStart(t);if(r.end!==i&&(r===this.lastChunk&&(this.lastChunk=r.next),this.byEnd[r.end]=r,this.byStart[r.next.start]=r.next,this.byEnd[r.next.end]=r.next),s)return!0;r=r.next}while(r);return!1}trimStart(e){return this.trimStartAborted(e),this}hasChanged(){return this.original!==this.toString()}_replaceRegexp(e,t){function r(s,o){return typeof t=="string"?t.replace(/\$(\$|&|\d+)/g,(a,l)=>l==="$"?"$":l==="&"?s[0]:+l<s.length?s[+l]:`$${l}`):t(...s,s.index,o,s.groups)}function i(s,o){let a,l=[];for(;a=s.exec(o);)l.push(a);return l}if(e.global)i(e,this.original).forEach(o=>{if(o.index!=null){let a=r(o,this.original);a!==o[0]&&this.overwrite(o.index,o.index+o[0].length,a)}});else{let s=this.original.match(e);if(s&&s.index!=null){let o=r(s,this.original);o!==s[0]&&this.overwrite(s.index,s.index+s[0].length,o)}}return this}_replaceString(e,t){let{original:r}=this,i=r.indexOf(e);return i!==-1&&(typeof t=="function"&&(t=t(e,i,r)),e!==t&&this.overwrite(i,i+e.length,t)),this}replace(e,t){return typeof e=="string"?this._replaceString(e,t):this._replaceRegexp(e,t)}_replaceAllString(e,t){let{original:r}=this,i=e.length;for(let s=r.indexOf(e);s!==-1;s=r.indexOf(e,s+i)){let o=r.slice(s,s+i),a=t;typeof t=="function"&&(a=t(o,s,r)),o!==a&&this.overwrite(s,s+i,a)}return this}replaceAll(e,t){if(typeof e=="string")return this._replaceAllString(e,t);if(!e.global)throw new TypeError("MagicString.prototype.replaceAll called with a non-global RegExp argument");return this._replaceRegexp(e,t)}};function Tt(n){switch(n.kind){case"event":return"event";case"ref":return"ref";case"spread":return"spread";case"class":case"style":return"class-or-style-directive";case"attr":case"prop":return n.reactive?"reactive-prop":n.expr!==void 0?"expression-prop":void 0;default:return"expression-prop"}}function T(n){let e=[],t=new Map,r=i=>{switch(i.kind){case"text":return!0;case"expr":return!1;case"component":case"control":for(let s of i.children)r(s);return!1;case"fragment":for(let s of i.children)r(s);return!1;case"element":{let s=!0;for(let a of i.children)r(a)||(s=!1);let o;for(let a of i.props)if(o=Tt(a),o)break;return!o&&!s&&(o=$t(i)),i.static=!o,o?t.set(i,o):e.push(i),i.static}default:return!1}};for(let i of Array.isArray(n)?n:[n])r(i);return{staticElements:e,reasons:t}}function $t(n){for(let e of n.children){if(e.kind==="expr")return"expression-child";if(e.kind==="component")return"component-child";if(e.kind==="control")return"control-child";if(e.kind==="element"&&!e.static||e.kind==="fragment")return"expression-child"}return"expression-child"}var G={kind:"eager"},Ot=["pointerdown","focusin","keydown"],Me=new Set(["eager","idle","visible","interaction","media","never"]),R=class extends Error{};function pe(n){return n.startsWith("load:")}function Y(n,e){let t=n.slice(5);if(!Me.has(t))throw new R(`Unknown load strategy 'load:${t}'. Expected one of ${[...Me].join(", ")}.`);switch(t){case"eager":return G;case"idle":return{kind:"idle"};case"never":return{kind:"never"};case"visible":return e?{kind:"visible",rootMargin:e}:{kind:"visible"};case"interaction":return{kind:"interaction",events:e?Pt(e):[...Ot]};case"media":if(!e)throw new R(`'load:media' needs a query, e.g. load:media="(min-width: 1024px)".`);return{kind:"media",query:e};default:throw new R(`Unhandled load strategy '${t}'.`)}}function Pt(n){let e=n.split(/[\s,]+/).map(t=>t.trim()).filter(Boolean);if(e.length===0)throw new R("'load:interaction' was given no event names.");return e}function Z(n){return n.kind!=="eager"&&n.kind!=="never"}var j=["Show","For","Index","Switch","Match","Portal","Dynamic","ErrorBoundary"],D=["Suspense","SuspenseList","Await"],$=["Router","Outlet","Redirect","Link"],Jn=[...j,...D,...$],fe=new Set([...j,...D]);function Ae(n={}){let{controlFlowModule:e="@fluixi/dom",coreModule:t="@fluixi/core",routerModule:r="@fluixi/core/router-next"}=n,i={};for(let s of j)i[s]=e;for(let s of D)i[s]=t;for(let s of $)i[s]=r;return i}function Q(n,e={}){let{resolver:t,isBound:r,modules:i,strategyFor:s}=e,o=Ae(i),a=new Map,l=new Set,c=p=>{let{name:d}=p;if(!d||d.includes(".")||r?.(d))return;let m=u(d);if(!m){l.add(d);return}let f=m.origin==="builtin"&&fe.has(d)?G:s?.(p)??G;p.source={...m,loading:f},a.set(d,p.source)},u=p=>{if(fe.has(p))return{module:o[p],export:p,origin:"builtin"};let d=t?.resolve(p);if(d)return{module:d.module,export:d.export,origin:"rule"};if($.includes(p))return{module:o[p],export:p,origin:"builtin"}};return ee(n,p=>{p.kind==="component"&&c(p)}),{resolved:a,unresolved:[...l]}}function ee(n,e){let t=Array.isArray(n)?n:[n];for(let r of t){e(r);let i=r.children;i&&ee(i,e)}}function te(n){let e=[];ee(n,s=>{s.kind==="component"&&s.source&&e.push(s)});let t=new Set,r=new Set;for(let s of e){let{module:o,loading:a}=s.source;a.kind==="eager"&&t.add(o),a.kind==="never"&&r.add(o)}let i=new Map;for(let s of e){let o=s.source;Z(o.loading)&&t.has(o.module)&&(o.loading={kind:"eager"},i.set(o.module,(i.get(o.module)??0)+1))}return{collapsed:i,conflicted:[...r].filter(s=>t.has(s))}}var Lt=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),je={className:"class",htmlFor:"for"},Mt=new Set(["innerHTML","outerHTML","innerText","textContent","value","checked","selected","muted","defaultValue","defaultChecked","children","ref"]),At=new Set(["script","style","textarea","title"]);function he(n){return At.has(n)}function De(n){return je[n]??n}function _(n){return n.kind!=="attr"||n.expr!==void 0||n.name.includes(":")?!1:!Mt.has(n.name)}function me(n){if(!n.static||he(n.tag))return!1;for(let e of n.props)if(!_(e))return!1;for(let e of n.children)if(e.kind!=="text"&&!(e.kind==="element"&&me(e)))return!1;return!0}function J(n){let e=n.props.map(Dt).filter(Boolean).join(""),t=`<${n.tag}${e}>`;return Lt.has(n.tag)?t:`${t}${n.children.map(jt).join("")}</${n.tag}>`}function jt(n){if(n.kind==="text")return Jt(n.value);if(n.kind!=="element")throw new Error(`serializeStatic: unexpected ${n.kind}`);return J(n)}function Dt(n){let e=je[n.name]??n.name,t=n.literal;return t===!0||t===void 0?` ${e}`:t===!1||t===null?"":` ${e}="${_t(String(t))}"`}function _t(n){return n.replace(/&/g,"&").replace(/"/g,""").replace(/</g,"<").replace(/>/g,">")}function Jt(n){return n.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}var Bt="<!--fx-->",Ft="<!--fx/-->";function re(n){return n.kind==="expr"||n.kind==="component"||n.kind==="control"}function Ht(n){return n.kind==="text"||n.kind==="element"&&_e(n)}function _e(n){return n.svg||he(n.tag)||!n.props.every(e=>_(e))?!1:n.children.every(e=>Ht(e)||re(e))}function ne(n){if(re(n))return!0;let e=n.children;return e?e.some(ne):!1}function Je(n){for(let e=0;e<n.children.length;e++){let t=n.children[e];if(t.kind==="text"&&(t.value===""||n.children[e+1]?.kind==="text"))return!1}return n.children.every(e=>e.kind!=="element"||Je(e))}function Be(n){if(!_e(n)||!Je(n)||!n.children.some(ne))return null;let e=[],t=[],r=0,i=o=>{let a=`_n$${r++}`;return e.push({ref:a,expr:o}),a};return s(n,"_el$"),{html:Ut(n),tag:n.tag,steps:e,holes:t};function s(o,a){let l=-1;o.children.forEach((u,p)=>{ne(u)&&(l=p)});let c=null;for(let u=0;u<=l;u++){let p=o.children[u],d=c?`${c}.nextSibling`:`${a}.firstChild`;if(re(p)){let f=i(d),g=i(`holeEnd(${f})`);t.push({parentRef:a,startRef:f,endRef:g,node:p}),c=g;continue}let m=i(d);p.kind==="element"&&ne(p)&&s(p,m),c=m}}}function Ut(n){return J(Fe(n)).split(He).join(Bt+Ft)}function Fe(n){return{...n,children:n.children.map(e=>re(e)?{kind:"text",value:He}:e.kind==="element"?Fe(e):e)}}var He="\0fx-hole\0";var ge={version:1,module:"@fluixi/dom",symbols:["createNativeElement","insert","spread","setAttribute","delegateEvents","createComponent","createMemo","untrack","Show","For","Index","Switch","Match","Dynamic","ErrorBoundary"]},Gn={version:2,module:"@fluixi/dom",symbols:[...ge.symbols,"template","cloneTemplate","walk"]};var qt={show:"Show",for:"For",index:"Index",switch:"Switch",match:"Match",dynamic:"Dynamic",errorBoundary:"ErrorBoundary",suspense:"Suspense"};function Xt(n){return/^[A-Za-z_$][A-Za-z0-9_$]*$/.test(n)}function qe(n){return Xt(n)?n:JSON.stringify(n)}function zt(n){return n.expr!==void 0?n.reactive?`() => (${n.expr})`:`(${n.expr})`:JSON.stringify(n.literal??!0)}function Vt(n){return n.expr!==void 0?`(${n.expr})`:JSON.stringify(n.literal??!0)}function Wt(n,e,t){let r=n.filter(a=>a.kind==="spread"),s=n.filter(a=>a.kind!=="spread").map(a=>`${qe(a.name)}: ${zt(a)}`);e!=null&&s.push(`children: ${e}`);let o=`{ ${s.join(", ")} }`;return r.length>0?(t.add("mergeProps"),`mergeProps(${r.map(a=>a.expr).join(", ")}, ${o})`):o}function Xe(n,e,t){return n.length===1?B(n[0],e,t):`[${n.map(r=>B(r,e,t)).join(", ")}]`}function Ue(n,e,t,r,i){r.add("createMemo"),r.add("createComponent");let s=e.filter(c=>c.kind==="spread"),a=e.filter(c=>c.kind!=="spread").map(c=>`get ${qe(c.name)}() { return ${Vt(c)}; }`);t.length>0&&a.push(`get children() { return ${Xe(t,r,i)}; }`);let l=`{ ${a.join(", ")} }`;return s.length>0&&(r.add("mergeProps"),l=`mergeProps(${s.map(c=>c.expr).join(", ")}, ${l})`),`createMemo(() => createComponent(${n}, ${l}))`}function Kt(n,e){let t=De(e.name),r=e.literal;return r===!0||r===void 0?`${n}.setAttribute(${JSON.stringify(t)}, "");`:r===!1||r===null?"":`${n}.setAttribute(${JSON.stringify(t)}, ${JSON.stringify(String(r))});`}var ze=!1;function B(n,e,t){switch(n.kind){case"text":return JSON.stringify(n.value);case"expr":return n.reactive?`() => (${n.code})`:`(${n.code})`;case"fragment":return n.children.length===0?"null":Xe(n.children,e,t);case"component":return Ue(n.name,n.props,n.children,e,t);case"control":{let r=qt[n.control]??n.control;return e.add(r),Ue(r,n.props,n.children,e,t)}case"element":{if(t&&n.static&&!n.svg&&me(n)){e.add("templateNode");let a=`_tmpl$${t.length}`;return t.push({id:a,html:J(n),tag:n.tag,svg:!1}),`templateNode(${a}, ${JSON.stringify(n.tag)})`}if(t&&ze){let a=Be(n);if(a){e.add("templateNode"),e.add("insert"),e.add("holeEnd"),e.add("holeContent"),e.add("holeScope");let l=`_tmpl$${t.length}`;t.push({id:l,html:a.html,tag:a.tag,svg:!1});let c=[`const _el$ = templateNode(${l}, ${JSON.stringify(a.tag)}, true);`];for(let u of a.steps)c.push(`const ${u.ref} = ${u.expr};`);for(let u of a.holes)c.push(`insert(${u.parentRef}, holeScope(${u.startRef}, () => (${B(u.node,e,t)})), ${u.endRef}, holeContent(${u.startRef}, ${u.endRef}));`);return c.push("return _el$;"),`(() => { ${c.join(" ")} })()`}}e.add("createNativeElement");let r=JSON.stringify(n.tag),i="_el$",s=[],o=n.svg?`${r}, true`:r;if(s.push(`const ${i} = createNativeElement(${o});`),n.props.length>0)if(!n.svg&&n.props.every(_))for(let a of n.props)s.push(Kt(i,a));else{e.add("spread");let a=n.svg?", isSVG: true":"";s.push(`spread({ element: ${i}, props: ${Wt(n.props,null,e)}${a} });`)}for(let a of n.children){e.add("insert");let l=B(a,e,t),c=a.kind==="expr"&&a.reactive||a.kind==="component"||a.kind==="control";s.push(c?`insert(${i}, ${l}, null);`:`insert(${i}, ${l});`)}return s.push(`return ${i};`),`(() => { ${s.join(" ")} })()`}}}function ie(n,e){if(!e||e.length===0)return n;let t=new Map(e.map(r=>[r.id,JSON.stringify(r.html)]));return n.replace(/_tmpl\$\d+/g,r=>t.get(r)??r)}var O={name:"imperative",contract:ge,emit(n,e){let t=new Set,r=e?.templateClone!==!1?[]:void 0;return ze=e?.partialTemplates===!0,{code:B(n,t,r),imports:Array.from(t),templates:r}}};var Gt=n=>"components"in n;function Ve(n,e){return n.replace(/\$(\d+)/g,(t,r)=>e[Number(r)]??t)}function Yt(n,e){return typeof e=="string"?{module:e,export:n}:e}function se(n=[]){let e=new Map,t=[],r=[];for(let o of n){if(!Gt(o)){r.push(o);continue}for(let[a,l]of Object.entries(o.components)){let c=Yt(a,l),u=e.get(a);if(u&&u.module!==c.module){let p=t.find(d=>d.name===a);p?p.modules.push(c.module):t.push({name:a,modules:[u.module,c.module]});continue}e.set(a,c)}}let i=new Map;return{resolve:o=>{if(i.has(o))return i.get(o);let a=e.get(o);if(!a)for(let l of r){let c=o.match(new RegExp(l.match.source,l.match.flags.replace("g","")));if(c){a={module:Ve(l.module,c),export:l.export?Ve(l.export,c):o};break}}return i.set(o,a),a},names:()=>[...e.keys()],conflicts:()=>t}}import{parseTemplate as Zt}from"@fluixi/template-parser";function F(n){let e=n.split(/\r\n|\n|\r/),t=0;for(let i=0;i<e.length;i++)/[^ \t]/.test(e[i])&&(t=i);let r="";for(let i=0;i<e.length;i++){let s=e[i].replace(/\t/g," ");i!==0&&(s=s.replace(/^ +/,"")),i!==e.length-1&&(s=s.replace(/ +$/,"")),s&&(i!==t&&(s+=" "),r+=s)}return r}var We=new Set(["click","dblclick","input","change","submit","focus","blur","keydown","keyup","keypress","mousedown","mouseup"]);function Qt(n){return n.replace(/\\/g,"\\\\").replace(/`/g,"\\`").replace(/\$\{/g,"\\${")}function Ke(n){return n.charAt(0).toUpperCase()+n.slice(1)}var ye=class{constructor(e,t){this.holes=e;this.used=t}hole(e){return this.holes[e]??{code:"undefined",reactive:!1}}emit(e){let{code:t,imports:r,templates:i}=O.emit(e,{});for(let s of r)this.used.add(s);return ie(t,i)}lowerRoot(e){let t=this.lowerChildren(e);return t.length===1?t[0]:{kind:"fragment",children:t}}lowerChildren(e){let t=[];for(let r=0;r<e.length;r++){let i=e[r];if(i.kind==="Element"||i.kind==="Component"){let o=i.attributes.find(a=>a.kind==="IfDirective");if(o&&o.kind==="IfDirective"){let a=r+1;a<e.length&&this.isBlankText(e[a])&&a++;let l=e[a],c=l&&(l.kind==="Element"||l.kind==="Component")&&l.attributes.some(u=>u.kind==="ElseDirective");t.push(this.lowerIf(i,o.hole,c?l:null)),c&&(r=a);continue}if(i.attributes.some(a=>a.kind==="EachDirective")){t.push(this.lowerEach(i));continue}}let s=this.lowerNode(i);s&&t.push(s)}return t}isBlankText(e){return e.kind==="Text"&&!e.raw&&F(e.value)===""}lowerNode(e){switch(e.kind){case"Text":{if(e.raw)return{kind:"text",value:e.value};let t=F(e.value);return t?{kind:"text",value:t}:null}case"Comment":return null;case"Expression":{let t=this.hole(e.hole);return{kind:"expr",code:t.code,reactive:t.reactive}}case"Fragment":return{kind:"fragment",children:this.lowerChildren(e.children)};case"Element":return this.lowerElement(e);case"Component":return this.lowerComponent(e);default:return null}}lowerElement(e){let t=e.attributes.find(r=>r.kind==="Attribute"&&r.name==="is");if(e.tag==="component"&&t&&t.value&&t.value.kind==="hole"){let r=e.attributes.filter(s=>s!==t),i=this.lowerComponent({...e,kind:"Component",tag:"Dynamic",tagHole:null,attributes:r});return i.props.unshift({name:"component",kind:"attr",expr:`() => (${this.hole(t.value.hole).code})`}),i}return{kind:"element",tag:e.tag,svg:e.namespace==="svg",props:this.lowerAttributes(e.attributes),children:this.lowerChildren(e.children),static:!1}}lowerComponent(e){let t=e.tagHole!=null?this.hole(e.tagHole).code:e.tag,r=this.lowerAttributes(e.attributes),{slots:i,rest:s}=this.partitionSlots(e.children);for(let[l,c]of i){let u=c.length===1?c[0]:{kind:"fragment",children:c},p={name:l,kind:"attr",expr:this.emit(u),jsxElement:!0},d=r.findIndex(m=>m.name===l);d>=0?r[d]=p:r.push(p)}let o=e.attributes.find(l=>l.kind==="LoadDirective"),a=o?Y(`load:${o.strategy}`,o.modifier):void 0;return{kind:"component",name:t,props:r,children:this.lowerChildren(s),...a?{load:a}:{}}}partitionSlots(e){let t=new Map,r=[];for(let i of e){if(i.kind==="Element"||i.kind==="Component"){let s=i.attributes.find(o=>o.kind==="Attribute"&&o.name==="slot");if(s&&s.value&&s.value.kind==="static"){let o={...i,attributes:i.attributes.filter(c=>c!==s)},a=o.kind==="Element"?this.lowerElement(o):this.lowerComponent(o),l=t.get(s.value.value)??[];l.push(a),t.set(s.value.value,l);continue}}r.push(i)}return{slots:t,rest:r}}lowerIf(e,t,r){let i=this.hole(t),s=[{name:"when",kind:"attr",expr:i.code,reactive:i.reactive}];if(r){let a=this.stripAndLower(r,l=>l.kind==="ElseDirective");s.push({name:"fallback",kind:"attr",expr:this.emit(a),jsxElement:!0})}let o=this.stripAndLower(e,a=>a.kind==="IfDirective");return{kind:"component",name:"Show",props:s,children:[o]}}lowerEach(e){let t=e.attributes.find(l=>l.kind==="EachDirective");if(!t||t.kind!=="EachDirective")return this.lowerNode(e);let r=this.hole(t.hole),i=[{name:"each",kind:"attr",expr:r.code,reactive:r.reactive}];if(t.key){let l="static"in t.key?`(item) => item[${JSON.stringify(t.key.static)}]`:this.hole(t.key.hole).code;i.push({name:"by",kind:"attr",expr:l})}let s=this.itemArrow(e),o;if(s){let l={kind:"expr",code:s.body,reactive:s.bodyReactive},c=this.rebuildWithChildren(e,[l]);o=`(${s.params.join(", ")}) => (${this.emit(c)})`}else{let l=this.stripAndLower(e,c=>c.kind==="EachDirective");o=`() => (${this.emit(l)})`}return{kind:"component",name:"For",props:i,children:[{kind:"expr",code:o,reactive:!1}]}}itemArrow(e){let t=e.children.filter(r=>!this.isBlankText(r));return t.length!==1||t[0].kind!=="Expression"?null:this.hole(t[0].hole).arrow??null}stripAndLower(e,t){let r={...e,attributes:e.attributes.filter(i=>!t(i))};return r.kind==="Element"?this.lowerElement(r):this.lowerComponent(r)}rebuildWithChildren(e,t){let r=this.lowerAttributes(e.attributes.filter(i=>i.kind!=="EachDirective"));return e.kind==="Element"?{kind:"element",tag:e.tag,svg:e.namespace==="svg",props:r,children:t,static:!1}:{kind:"component",name:e.tag,props:r,children:t}}lowerAttributes(e){let t=[],r=[],i=!1,s=[],o=!1,a=[];for(let l of e)switch(l.kind){case"IfDirective":case"EachDirective":case"ElseDirective":break;case"Attribute":t.push(this.plainAttr(l));break;case"PropertyBinding":t.push({name:l.name,kind:"prop",expr:this.hole(l.hole).code,reactive:this.hole(l.hole).reactive});break;case"EventBinding":t.push(this.eventProp(l));break;case"RefBinding":t.push({name:"ref",kind:"ref",expr:this.hole(l.hole).code,reactive:this.hole(l.hole).reactive});break;case"Spread":t.push({name:"",kind:"spread",expr:this.hole(l.hole).code});break;case"ClassDirective":{let c=this.hole(l.hole);r.push(`${JSON.stringify(l.name)}: ${c.code}`),i=i||c.reactive;break}case"StyleDirective":{let c=this.hole(l.hole);s.push(`${JSON.stringify(l.name)}: ${c.code}`),o=o||c.reactive;break}case"BindDirective":t.push(...this.bindProps(l.name,this.hole(l.hole).code));break;case"UseDirective":{let c=l.name??(l.hole!=null?this.hole(l.hole).code:null);if(!c)break;a.push(l.name!=null&&l.hole!=null?`[${c}, () => (${this.hole(l.hole).code})]`:`[${c}]`);break}}return r.length>0&&t.push({name:"classList",kind:"attr",expr:`{ ${r.join(", ")} }`,reactive:i}),s.length>0&&t.push({name:"style",kind:"attr",expr:`{ ${s.join(", ")} }`,reactive:o}),a.length>0&&t.push({name:"use",kind:"attr",expr:`[${a.join(", ")}]`}),t}eventProp(e){let t=e.name.toLowerCase(),r=this.hole(e.hole).code;if(!(e.syntax==="colon"||e.modifiers.length>0))return{name:"on"+Ke(e.name),kind:"event",event:{name:t,delegated:We.has(t)},expr:r};let s=this.wrapHandler(r,e.modifiers),o=this.eventOptions(e.modifiers),a=o?`[${s}, ${o}]`:s;return{name:"on:"+t,kind:"attr",expr:a}}wrapHandler(e,t){let r=t.includes("self")?"if (e.target !== e.currentTarget) return; ":"",i=[];return t.includes("prevent")&&i.push("e.preventDefault();"),t.includes("stop")&&i.push("e.stopPropagation();"),!r&&i.length===0?e:`(e) => { ${r}${i.join(" ")} return (${e})(e); }`}eventOptions(e){let t=[];return e.includes("capture")&&t.push("capture: true"),e.includes("once")&&t.push("once: true"),e.includes("passive")&&t.push("passive: true"),t.length?`{ ${t.join(", ")} }`:null}bindProps(e,t){let r=e==="checked",i=r?"change":"input",s=r?"checked":"value";this.used.add("bindPair");let o=`bindPair(${t})`;return[{name:e,kind:"attr",expr:`${o}[0]()`,reactive:!0},{name:"on"+Ke(i),kind:"event",event:{name:i,delegated:We.has(i)},expr:`(e) => ${o}[1](e.target.${s})`}]}plainAttr(e){let t=e.value,r=e.name;e.name==="class"?r=t&&t.kind==="hole"&&this.hole(t.hole).object?"classList":"className":e.name==="html"&&(r="innerHTML");let s={name:r,kind:"attr"};if(t==null)return s.literal=!0,s;if(t.kind==="static")return s.literal=t.value,s;if(t.kind==="hole"){let l=this.hole(t.hole);return s.expr=l.code,s.reactive=l.reactive,s}let o=!1,a=t.parts.map(l=>{if("text"in l)return Qt(l.text);let c=this.hole(l.hole);return o=o||c.reactive,"${"+c.code+"}"}).join("");return s.expr="`"+a+"`",s.reactive=o,s}};function Ge(n,e,t,r={}){let{root:i}=Zt(n,{svg:r.svg});return new ye(e,t).lowerRoot(i.children)}function Ye(n,e,t={}){let r=new Set,i=Ge(n,[...e],r,{svg:t.svg});T(i),Q(i,{resolver:se(t.resolve??[]),modules:{controlFlowModule:t.controlFlowModule??"@fluixi/dom",coreModule:t.coreModule??"@fluixi/core",routerModule:t.routerModule??"@fluixi/core/router-next"},strategyFor:l=>l.load}),te(i);let{code:s,imports:o,templates:a}=O.emit(i,{templateClone:t.templateClone,partialTemplates:t.partialTemplates});for(let l of o)r.add(l);return t.hoistTemplates?{code:s,imports:[...r],ir:i,templates:a}:{code:ie(s,a),imports:[...r],ir:i}}var en="children";function P(n){switch(n.kind){case"call":return!0;case"member":return n.property!==en;case"compound":return n.parts.some(P);case"opaque":return!1}}var tn=new Set(["CallExpression","OptionalCallExpression"]),nn=new Set(["MemberExpression","OptionalMemberExpression"]);function L(n){if(!n)return{kind:"opaque"};if(tn.has(n.type))return{kind:"call"};if(nn.has(n.type)){let e=n.property;return{kind:"member",property:!(n.computed===!0)&&e?.type==="Identifier"?e.name:null}}return n.type==="ConditionalExpression"?{kind:"compound",parts:[n.test,n.consequent,n.alternate].map(H)}:n.type==="LogicalExpression"||n.type==="BinaryExpression"?{kind:"compound",parts:[n.left,n.right].map(H)}:n.type==="TemplateLiteral"?{kind:"compound",parts:n.expressions.map(H)}:n.type==="ObjectExpression"?{kind:"compound",parts:n.properties.filter(t=>(t.type==="ObjectProperty"||t.type==="Property")&&t.computed!==!0).map(t=>H(t.value))}:n.type==="ArrayExpression"?{kind:"compound",parts:n.elements.filter(t=>t!=null&&t.type!=="SpreadElement").map(H)}:{kind:"opaque"}}var H=n=>L(n);var rn=new Set(["svg","path","circle","rect","line","polygon","polyline","ellipse","g","defs","clipPath","text"]),sn=/^on[A-Z]/,on=new Set(["click","dblclick","input","change","submit","focus","blur","keydown","keyup","keypress","mousedown","mouseup"]),et=n=>P(L(n));function U(n){if(n.type==="StringLiteral"||n.type==="NumericLiteral"||n.type==="BooleanLiteral"||n.type==="Literal"&&(typeof n.value=="string"||typeof n.value=="number"||typeof n.value=="boolean"))return n.value}var ve=n=>!!n&&typeof U(n)=="string";function an(n,e){return n.type==="JSXIdentifier"?{tag:n.name,component:n.name[0]!==n.name[0].toLowerCase()}:n.type==="JSXMemberExpression"?{tag:e.code(n),component:!0}:n.type==="JSXNamespacedName"?{tag:`${n.namespace.name}:${n.name.name}`,component:!1}:{tag:"div",component:!1}}function xe(n){return n.type==="JSXIdentifier"?n.name==="class"?"className":n.name:n.type==="JSXNamespacedName"?`${n.namespace.name}:${n.name.name}`:"unknown"}function ln(n,e){let t=xe(n.name),r=sn.test(t),i=r||t.startsWith("on:")||t==="ref",o={name:t,kind:r?"event":"attr"};if(r){let l=t.slice(2).toLowerCase();o.event={name:l,delegated:on.has(l)}}let a=n.value;if(a==null)return o.literal=!0,o;if(ve(a))return o.literal=U(a),o;if(a.type==="JSXExpressionContainer"&&a.expression?.type!=="JSXEmptyExpression"){let l=a.expression,c=U(l);return c!==void 0?(o.literal=c,o):(o.expr=e.code(l),o.reactive=i?!1:et(l),(l.type==="JSXElement"||l.type==="JSXFragment")&&(o.jsxElement=!0),o)}return o.literal=!0,o}function Ze(n,e){let t=n.value;return t==null?null:ve(t)?JSON.stringify(U(t)):t.type==="JSXExpressionContainer"&&t.expression?.type!=="JSXEmptyExpression"?e.code(t.expression):null}function cn(n,e){let t=[],r=[];for(let i of n){if(i.type==="JSXSpreadAttribute"){t.push({name:"",kind:"spread",expr:e.code(i.argument)});continue}if(i.type!=="JSXAttribute"||pe(xe(i.name)))continue;let s=i.name.type==="JSXNamespacedName"?i.name.namespace.name:null;if(s==="use"){let o=i.name.name.name;e.used.add(o);let a=Ze(i,e);r.push(a!=null?`[${o}, () => (${a})]`:`[${o}]`);continue}if(s==="oncapture"){let o=i.name.name.name.toLowerCase(),a=Ze(i,e)??"undefined";t.push({name:"on:"+o,kind:"attr",expr:`[${a}, { capture: true }]`});continue}t.push(ln(i,e))}return r.length>0&&t.push({name:"use",kind:"attr",expr:`[${r.join(", ")}]`}),t}function Qe(n,e){let t=[];for(let r of n)if(r.type==="JSXText"){let i=F(r.value);i&&t.push({kind:"text",value:i})}else if(r.type==="JSXExpressionContainer"){if(r.expression?.type!=="JSXEmptyExpression"){let i=r.expression;t.push({kind:"expr",code:e.code(i),reactive:et(i)})}}else r.type==="JSXElement"||r.type==="JSXFragment"?t.push(tt(r,e)):r.type==="JSXSpreadChild"&&t.push({kind:"expr",code:e.code(r.expression),reactive:!1});return t}function un(n){for(let e of n){if(e.type!=="JSXAttribute")continue;let t=xe(e.name);if(pe(t)){if(e.value&&!ve(e.value))throw new R(`'${t}' needs a literal value, not an expression — the strategy is compile-time.`);return Y(t,e.value?U(e.value):null)}}}function tt(n,e){if(n.type==="JSXFragment")return{kind:"fragment",children:Qe(n.children,e)};let{tag:t,component:r}=an(n.openingElement.name,e),i=cn(n.openingElement.attributes,e),s=Qe(n.children,e);if(r){let o=un(n.openingElement.attributes);return{kind:"component",name:t,props:i,children:s,...o?{load:o}:{}}}return{kind:"element",tag:t,svg:rn.has(t),props:i,children:s,static:!1}}function nt(n,e){let t=tt(n,e);return T(t),t}function S(n,e){if(n)switch(n.type){case"Identifier":e.add(n.name);return;case"ObjectPattern":for(let t of n.properties)t.type==="RestElement"?S(t.argument,e):S(t.value,e);return;case"ArrayPattern":for(let t of n.elements)S(t,e);return;case"AssignmentPattern":S(n.left,e);return;case"RestElement":S(n.argument,e);return}}function rt(n,e){switch(n.type){case"ImportDeclaration":for(let t of n.specifiers)S(t.local,e);return;case"VariableDeclaration":for(let t of n.declarations)S(t.id,e);return;case"FunctionDeclaration":case"ClassDeclaration":S(n.id,e);return;case"ExportNamedDeclaration":case"ExportDefaultDeclaration":n.declaration&&rt(n.declaration,e);return}}function be(n){let e=new Set;for(let t of n.body)rt(t,e);return e}import{parse as Cr}from"@babel/parser";function v(n,e){if(n)switch(n.type){case"Identifier":e.add(n.name);return;case"ObjectPattern":for(let t of n.properties)t.type==="RestElement"?v(t.argument,e):v(t.value,e);return;case"ArrayPattern":for(let t of n.elements)v(t,e);return;case"AssignmentPattern":v(n.left,e);return;case"RestElement":v(n.argument,e);return}}function Ne(n){switch(n.type){case"StringLiteral":case"NumericLiteral":case"BooleanLiteral":case"NullLiteral":case"BigIntLiteral":case"RegExpLiteral":case"Identifier":return!0;case"Literal":return!0;case"TemplateLiteral":return n.expressions.every(Ne);case"UnaryExpression":return Ne(n.argument);case"MemberExpression":return!1;default:return!1}}function oe(n,e){if(!(!n||typeof n!="object")){e(n);for(let t of Object.keys(n)){if(t==="loc"||t==="range"||t==="leadingComments"||t==="trailingComments")continue;let r=n[t];if(Array.isArray(r))for(let i of r)i&&typeof i=="object"&&oe(i,e);else r&&typeof r=="object"&&typeof r.type=="string"&&oe(r,e)}}}function dn(n){let e=new Set;return oe(n,t=>{if(t.type==="AssignmentExpression")v(t.left,e);else if(t.type==="UpdateExpression"){let r=t.argument;r?.type==="Identifier"&&e.add(r.name)}}),e}function pn(n,e){let t=new Set,r=i=>{let s=new Set;v(i,s);for(let o of s)e.has(o)&&t.add(o)};return oe(n,i=>{switch(i.type){case"VariableDeclarator":r(i.id);return;case"FunctionDeclaration":case"FunctionExpression":case"ArrowFunctionExpression":r(i.id);for(let s of i.params??[])r(s);return;case"CatchClause":r(i.param);return;case"ClassDeclaration":case"ClassExpression":r(i.id);return}}),t}function it(n,e,t){for(let r of n.properties??[]){if(r.type==="RestElement"){let u=r.argument;if(u?.type!=="Identifier"||e.length>0){let p=new Set;v(u,p);for(let d of p)t.bails.push({name:d,reason:"rest"});continue}t.rest={name:u.name,keys:[]};continue}if(r.computed){let u=new Set;v(r.value,u);for(let p of u)t.bails.push({name:p,reason:"computed"});continue}let i=r.key,s=i.type==="Identifier"?i.name:i.value,o=r.value,a;o.type==="AssignmentPattern"&&(a=o.right,o=o.left);let l=[...e,s];if(o.type==="Identifier"){if(a&&!Ne(a)){t.bails.push({name:o.name,reason:"unsafe-default"});continue}t.reads.push({name:o.name,path:l,...a?{fallback:a}:{}});continue}if(o.type==="ObjectPattern"){if(a){let u=new Set;v(o,u);for(let p of u)t.bails.push({name:p,reason:"unsafe-default"});continue}it(o,l,t);continue}let c=new Set;v(o,c);for(let u of c)t.bails.push({name:u,reason:"computed"})}}function st(n,e){let t={reads:[],bails:[]};if(n?.type!=="ObjectPattern"||(it(n,[],t),t.rest&&(e?.type!=="BlockStatement"?(t.bails.push({name:t.rest.name,reason:"rest"}),delete t.rest):t.rest.keys=(n.properties??[]).filter(a=>a.type!=="RestElement"&&!a.computed).map(a=>{let l=a.key;return l.type==="Identifier"?l.name:l.value})),t.reads.length===0&&!t.rest))return t;let r=new Set(t.reads.map(a=>a.name));t.rest&&r.add(t.rest.name);let i=dn(e),s=pn(e,r),o=[];for(let a of t.reads)i.has(a.name)?t.bails.push({name:a.name,reason:"reassigned"}):s.has(a.name)?t.bails.push({name:a.name,reason:"shadowed"}):o.push(a);return t.reads=o,t.rest&&i.has(t.rest.name)?(t.bails.push({name:t.rest.name,reason:"reassigned"}),delete t.rest):t.rest&&s.has(t.rest.name)&&(t.bails.push({name:t.rest.name,reason:"shadowed"}),delete t.rest),t}function ot(n){switch(n){case"rest":return"this rest element cannot be served by splitProps, and copying the props into a plain object would lose the getters";case"computed":return"the property is not known until it runs";case"reassigned":return"the binding is assigned to, and props are read-only";case"shadowed":return"an inner scope binds the same name";case"unsafe-default":return"the default would have to run again on every read"}}function q(n,e,t=null){if(!(!n||typeof n!="object"||typeof n.type!="string")&&!n.type.startsWith("TS")&&e(n,t)!==!1)for(let r of Object.keys(n)){if(r==="loc"||r==="leadingComments"||r==="trailingComments")continue;let i=n[r];if(Array.isArray(i))for(let s of i)q(s,e,n);else i&&typeof i=="object"&&q(i,e,n)}}function at(n){return!!n&&n[0]>="A"&&n[0]<="Z"}function fn(n){let e=[];return q(n,t=>{if(t.type==="FunctionDeclaration"&&at(t.id?.name)){e.push(t);return}if(t.type==="VariableDeclarator"&&at(t.id?.name)){let r=t.init;r&&(r.type==="ArrowFunctionExpression"||r.type==="FunctionExpression")&&e.push(r)}}),e}function hn(n){let e=new Set;return q(n,t=>{t.type==="Identifier"&&e.add(t.name)}),e}function mn(n,e){if(!e)return!0;switch(e.type){case"MemberExpression":case"OptionalMemberExpression":return!(e.property===n&&!e.computed);case"ObjectProperty":case"ObjectMethod":case"ClassProperty":case"ClassMethod":return!(e.key===n&&!e.computed);case"LabeledStatement":case"BreakStatement":case"ContinueStatement":return e.label!==n;case"ImportSpecifier":case"ExportSpecifier":return!1;default:return!0}}function lt(n,e,t={}){let r=[],i=[],s=new Set;for(let o of fn(n)){let a=o.params?.[0];if(a?.type!=="ObjectPattern")continue;let l=st(a,o.body);for(let f of l.bails)i.push({name:f.name,reason:f.reason,message:ot(f.reason),start:a.start});if(l.bails.length>0||l.reads.length===0&&!l.rest)continue;let c=hn(o),u=t.parameterName??"props";for(;c.has(u);)u=`_${u}`;let p=new Map;for(let f of l.reads){let g=`${u}.${f.path.join(".")}`,y=f.fallback;p.set(f.name,y?`(${g} === undefined ? ${e.slice(y.start,y.end)} : ${g})`:g)}let d=a.typeAnnotation;if(r.push({start:a.start,end:d?.start??a.end,code:u}),l.rest){let f=l.rest.keys.map(y=>JSON.stringify(y)).join(", "),g=o.body;r.push({start:g.start+1,end:g.start+1,code:`
|
|
11
|
+
const [, ${l.rest.name}] = splitProps(${u}, [${f}]);`}),s.add("splitProps")}let m=[];q(o.body,(f,g)=>{if(f.type!=="Identifier")return;let y=p.get(f.name);if(!y)return;let w=g?.type==="ObjectProperty"&&g.shorthand&&g.value===f;if(!w&&!mn(f,g))return;let x=l.reads.find(X=>X.name===f.name).path;m.push({node:f,parent:w?g:null,text:y,property:x[x.length-1]})});for(let f of m)f.parent?r.push({start:f.parent.start,end:f.parent.end,code:`${f.node.name}: ${f.text}`}):r.push({start:f.node.start,end:f.node.end,code:f.text}),gn(f.node,u,f.property)}return{edits:r,diagnostics:i,used:s}}function gn(n,e,t){n.type="MemberExpression",n.computed=!1,n.optional=!1,n.object={type:"Identifier",name:e,start:n.start,end:n.start},n.property={type:"Identifier",name:t,start:n.end,end:n.end},delete n.name}var E="@fluixi/reactive/signal",C={$signal:{export:"signal",module:E,returns:"signal-handle"},$memo:{export:"memo",module:E,returns:"memo-handle"},$effect:{export:"effect",module:E,returns:"effect"},$store:{export:"store",module:"@fluixi/reactive/store",returns:"store-handle"},$resource:{export:"resource",module:E,returns:"resource-handle"},$selector:{export:"createSelector",module:E,returns:"memo-accessor"},$deferred:{export:"createDeferred",module:E,returns:"memo-accessor"},$untrack:{export:"untrack",module:E,returns:"plain"},$untrackStore:{export:"untrackStore",module:"@fluixi/reactive/store",returns:"plain"}},ct={signal:"signal-handle",memo:"memo-handle",effect:"effect",store:"store-handle",createSignal:["signal-accessor","signal-setter"],createMemo:"memo-accessor",createEffect:"effect",createRenderEffect:"effect",createStore:"reactive-object",resource:"resource-handle",createResource:"reactive-object",createSelector:"memo-accessor",createDeferred:"memo-accessor"},yn=["@fluixi/reactive","@fluixi/reactive/signal","@fluixi/reactive/signal-next","@fluixi/reactive/store","@fluixi/core","@fluixi/core/rx"],vn=new RegExp(`\\$(?:${Object.keys(C).map(n=>n.slice(1)).join("|")})\\s*\\(`);function ut(n){return vn.test(n)}function dt(n){return Object.prototype.hasOwnProperty.call(C,n)}function pt(n){return yn.includes(n)}function b(n,e){if(n)switch(n.type){case"Identifier":e.add(n.name);return;case"ObjectPattern":for(let t of n.properties??[])t.type==="RestElement"?b(t.argument,e):b(t.value,e);return;case"ArrayPattern":for(let t of n.elements??[])b(t,e);return;case"AssignmentPattern":b(n.left,e);return;case"RestElement":b(n.argument,e);return}}function ae(n,e){if(!(!n||typeof n!="object"||typeof n.type!="string")){e(n);for(let t of Object.keys(n)){if(t==="loc"||t==="leadingComments"||t==="trailingComments")continue;let r=n[t];if(Array.isArray(r))for(let i of r)ae(i,e);else r&&typeof r=="object"&&ae(r,e)}}}function xn(n,e){if(n.type!=="CallExpression")return;let t=n.callee;if(t?.type!=="Identifier")return;let r=t.name,i=e.primitives.get(r);if(i)return i;let s=C[r];if(s&&!e.shadowed.has(r))return s.returns}function bn(n,e,t){if(Array.isArray(e)){n.type==="ArrayPattern"&&n.elements.forEach((r,i)=>{let s=e[i];r?.type==="Identifier"&&s&&t.set(r.name,s)});return}n.type==="Identifier"&&t.set(n.name,e)}function ft(n){let e={kinds:new Map,primitives:new Map,shadowed:new Set},t=n;ae(t,r=>{let i=new Set;if(r.type==="VariableDeclarator")b(r.id,i);else if(r.type==="FunctionDeclaration"||r.type==="ClassDeclaration")b(r.id,i);else if(r.type==="ImportDefaultSpecifier"||r.type==="ImportNamespaceSpecifier")b(r.local,i);else if(r.type==="ImportSpecifier")b(r.local,i);else if(r.type==="FunctionExpression"||r.type==="ArrowFunctionExpression"||r.type==="FunctionDeclaration")for(let s of r.params??[])b(s,i);for(let s of i)C[s]&&e.shadowed.add(s)});for(let r of t.body??[])if(r.type==="ImportDeclaration"&&pt(r.source?.value))for(let i of r.specifiers??[]){if(i.type!=="ImportSpecifier")continue;let s=i.imported,o=s.type==="Identifier"?s.name:s.value,a=ct[o];a&&e.primitives.set(i.local.name,a)}return ae(t,r=>{if(r.type!=="VariableDeclarator"||!r.init)return;let i=xn(r.init,e);i&&bn(r.id,i,e.kinds)}),e}function we(n,e){if(!(!n||typeof n!="object"||typeof n.type!="string")){e(n);for(let t of Object.keys(n)){if(t==="loc"||t==="leadingComments"||t==="trailingComments")continue;let r=n[t];if(Array.isArray(r))for(let i of r)we(i,e);else r&&typeof r=="object"&&we(r,e)}}}function ht(n){let e=[],t=[],r=new Map,i=new Set,{shadowed:s}=ft(n);return we(n,o=>{if(o.type!=="CallExpression")return;let a=o.callee;if(a?.type!=="Identifier")return;let l=a.name;if(!dt(l))return;if(s.has(l)){i.has(l)||(i.add(l),t.push({name:l,message:`${l} is reserved for the compiler, and this module binds it. The call keeps your binding's meaning; rename it to use the intrinsic.`,start:a.start}));return}let c=C[l];e.push({start:a.start,end:a.end,code:c.export});let u=r.get(c.module)??new Set;u.add(c.export),r.set(c.module,u)}),{edits:e,diagnostics:t,imports:r}}function mt(n,e){let t=[];for(let[r,i]of[...n.imports].sort(([s],[o])=>s.localeCompare(o))){let s=[...i].filter(o=>!e.has(o)).sort();s.length&&t.push(`import { ${s.join(", ")} } from ${JSON.stringify(r)};`)}return t.length?`${t.join(`
|
|
12
|
+
`)}
|
|
13
|
+
`:""}var wn=new Set(j),Rn=new Set(D),Sn=new Set($),kn=new Set(["createMemo","createEffect","createRenderEffect","createRoot","createSignal","onCleanup","batch","untrack"]);function Re(n,e,t=null,r=""){if(!(!n||typeof n!="object")){if(Array.isArray(n)){for(let i of n)Re(i,e,t,r);return}typeof n.type=="string"&&e(n,t,r);for(let i of Object.keys(n))i==="loc"||i==="leadingComments"||i==="trailingComments"||Re(n[i],e,typeof n.type=="string"?n:t,i)}}var Se=n=>n.type==="JSXElement"||n.type==="JSXFragment";function En(n,e,t){return Se(n)?!(e&&Se(e)&&t==="children"):!1}function Cn(n,e){return n.type==="TaggedTemplateExpression"&&n.tag?.type==="Identifier"&&(n.tag.name===e||n.tag.name==="svg")}function gt(n){return n.filter(e=>!n.some(t=>t!==e&&t.start<=e.start&&t.end>=e.end&&t.end-t.start>e.end-e.start))}function le(n,e,t,r){let i=gt(r.filter(o=>o.start>=e&&o.end<=t)).sort((o,a)=>a.start-o.start),s=n.slice(e,t);for(let o of i)s=s.slice(0,o.start-e)+o.code+s.slice(o.end-e);return s}function In(n,e,t){let r={code:le(n,e.start,e.end,t),reactive:P(L(e))};return e.type==="ArrowFunctionExpression"&&e.body?.type!=="BlockStatement"&&(r.arrow={params:e.params.map(i=>le(n,i.start,i.end,t)),body:le(n,e.body.start,e.body.end,t),bodyReactive:P(L(e.body))}),e.type==="ObjectExpression"&&(r.object=!0),r}function yt(n,e,t){if(!e||e.length===0)return n;let r=new Map;for(let i of e){let s=`${i.svg?"svg:":""}${i.html}`,o=t.get(s);o||(o=`_fxTmpl$${t.size}`,t.set(s,o)),r.set(i.id,o)}return n.replace(/_tmpl\$\d+/g,i=>r.get(i)??i)}function ke(n,e){if(n.kind==="component"&&n.source){let t=n.source;t.origin==="builtin"?e.builtins.add(n.name):Z(t.loading)&&!e.resolved.has(n.name)?e.deferred.set(n.name,t):(e.deferred.delete(n.name),e.resolved.set(n.name,t))}if("props"in n&&n.props)for(let t of n.props)t.kind==="event"&&t.event?.delegated&&e.delegatedEvents.add(t.event.name);if("children"in n&&n.children)for(let t of n.children)ke(t,e)}function Tn(n){let e=[`kind: ${JSON.stringify(n.kind)}`];return n.kind==="visible"&&n.rootMargin&&e.push(`rootMargin: ${JSON.stringify(n.rootMargin)}`),n.kind==="interaction"&&e.push(`events: ${JSON.stringify(n.events)}`),n.kind==="media"&&e.push(`query: ${JSON.stringify(n.query)}`),`{ ${e.join(", ")} }`}function $n(n){let e=[];return n.quasi.quasis.forEach((t,r)=>{if(e.push({kind:"static",text:t.value.cooked??t.value.raw,start:t.start}),r<n.quasi.expressions.length){let i=n.quasi.expressions[r];e.push({kind:"hole",index:r,start:i.start,end:i.end})}}),e}function ei(n,e,t={}){let r=t.litTag??"html",i=t.format??"both",s=i!=="jsx",o=i!=="lit",a=s&&(n.includes(`${r}\``)||n.includes("svg`")),l=t.intrinsics!==!1&&ut(n);if(!a&&!(o&&n.includes("<"))&&!l)return null;let c=Nn(n,{sourceType:"module",plugins:["jsx","typescript"],errorRecovery:!0}),u=[];Re(c.program,(h,k,ce)=>{(s&&Cn(h,r)||o&&En(h,k,ce))&&u.push(h)});let p=t.propsDestructure?lt(c.program,n,{runtimeModule:t.runtimeModule}):{edits:[],diagnostics:[],used:new Set},d=t.intrinsics===!1?{edits:[],diagnostics:[],imports:new Map}:ht(c.program);if(u.length===0&&p.edits.length===0&&d.edits.length===0&&d.diagnostics.length===0&&p.diagnostics.length===0)return null;u.sort((h,k)=>k.start-h.start||h.end-k.end);let f=new Set(p.used),g={builtins:new Set,resolved:new Map,deferred:new Map,delegatedEvents:new Set},y=new Map,w=[...p.edits,...d.edits];for(let h of u){let k=u.some(N=>N!==h&&N.start<=h.start&&N.end>=h.end&&N.end-N.start>h.end-h.start);if(Se(h)){w.push({start:h.start,end:h.end,code:On(n,h,w,k,f,g,y,t)});continue}let ce=h.quasi.expressions.map(N=>In(n,N,w)),z=Ye($n(h),ce,{...t,hoistTemplates:!0,templateClone:t.templateClone??!0,partialTemplates:k?!1:t.partialTemplates??!0,svg:h.tag.name==="svg"});for(let N of z.imports)f.add(N);ke(z.ir,g),w.push({start:h.start,end:h.end,code:yt(z.code,z.templates,y)})}let x=new K(n);for(let h of gt(w))h.start===h.end?x.appendLeft(h.start,h.code):x.overwrite(h.start,h.end,h.code);let X=be(c.program),Ee=Pn(f,g,y,X,t);Ee&&x.prepend(Ee);let Ce=mt(d,X);Ce&&x.prepend(Ce);for(let h of c.program.body)h.type==="ImportDeclaration"&&h.source?.value==="@fluixi/core/rx"&&x.overwrite(h.source.start,h.source.end,JSON.stringify("@fluixi/reactive"));return{code:x.toString(),map:x.generateMap({source:e,includeContent:!0,hires:!0}),...p.diagnostics.length?{propsDiagnostics:p.diagnostics}:{},...d.diagnostics.length?{intrinsicDiagnostics:d.diagnostics}:{}}}function On(n,e,t,r,i,s,o,a){let l=nt(e,{code:u=>le(n,u.start,u.end,t),used:i});T(l),Q(l,{resolver:se(a.resolve??[]),modules:{controlFlowModule:a.controlFlowModule??a.runtimeModule??"@fluixi/dom",coreModule:a.coreModule??"@fluixi/core",routerModule:a.routerModule??"@fluixi/core/router-next"},strategyFor:u=>u.load}),te(l);let c=O.emit(l,{templateClone:a.templateClone??!0,partialTemplates:r?!1:a.partialTemplates??!0});for(let u of c.imports)i.add(u);return ke(l,s),yt(c.code,c.templates,o)}function Pn(n,e,t,r,i){let s=i.runtimeModule??"@fluixi/dom",o=i.coreModule??"@fluixi/core",a=new Map,l=(d,m)=>a.set(d,[...a.get(d)??[],m]),c=new Set(n);for(let d of e.builtins)c.add(d);e.delegatedEvents.size>0&&c.add("delegateEvents");for(let d of[...c].sort())r.has(d)||(kn.has(d)?l(i.reactiveModule??"@fluixi/reactive/signal",d):Sn.has(d)?l(i.routerModule??"@fluixi/core/router-next",d):Rn.has(d)?l(o,d):wn.has(d)?l(i.controlFlowModule??s,d):l(s,d));for(let[d,m]of e.resolved)r.has(d)||l(m.module,m.export==="default"?`default as ${d}`:d===m.export?d:`${m.export} as ${d}`);let u=[];for(let[d,m]of a)u.push(`import { ${m.join(", ")} } from ${JSON.stringify(d)};`);let p=[...e.deferred].filter(([d])=>!r.has(d));if(p.length>0){r.has("deferred")||u.push(`import { deferred } from ${JSON.stringify(o)};`);for(let[d,m]of p)u.push(`const ${d} = deferred(() => import(${JSON.stringify(m.module)}), { strategy: ${Tn(m.loading)}, export: ${JSON.stringify(m.export)} });`)}for(let[d,m]of t)u.push(`const ${m} = ${JSON.stringify(d.startsWith("svg:")?d.slice(4):d)};`);return e.delegatedEvents.size>0&&u.push(`delegateEvents(${JSON.stringify([...e.delegatedEvents])});`),u.length>0?u.join(`
|
|
11
14
|
`)+`
|
|
12
|
-
`:null}export{
|
|
15
|
+
`:null}export{ei as transformTemplates};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import{a as k,b as te,c as ne,d as re,e as se}from"./chunk-545LMC5W.mjs";import{a as ie,b as O,c as C,d as oe,e as D,f as ae,g as j,h as _,i as $,j as ce}from"./chunk-L2QPV25P.mjs";import{a as M,b as G,c as Q,d as ee}from"./chunk-E2PW2OZU.mjs";import{a as A}from"./chunk-IBRM4W7I.mjs";import"./chunk-3SAEGOMQ.mjs";import{parse as Ee}from"@babel/parser";function le(e,n,t={}){let r=new Set,s=ae(e,[...n],r,{svg:t.svg});j(s),O(s,{resolver:M(t.resolve??[]),modules:{controlFlowModule:t.controlFlowModule??"@fluixi/dom",coreModule:t.coreModule??"@fluixi/core",routerModule:t.routerModule??"@fluixi/core/router-next"},strategyFor:c=>c.load}),C(s);let{code:a,imports:o,templates:i}=D.emit(s,{templateClone:t.templateClone,partialTemplates:t.partialTemplates});for(let c of o)r.add(c);return t.hoistTemplates?{code:a,imports:[...r],ir:s,templates:i}:{code:oe(a,i),imports:[...r],ir:s}}function x(e,n){if(e)switch(e.type){case"Identifier":n.add(e.name);return;case"ObjectPattern":for(let t of e.properties)t.type==="RestElement"?x(t.argument,n):x(t.value,n);return;case"ArrayPattern":for(let t of e.elements)x(t,n);return;case"AssignmentPattern":x(e.left,n);return;case"RestElement":x(e.argument,n);return}}function de(e,n){switch(e.type){case"ImportDeclaration":for(let t of e.specifiers)x(t.local,n);return;case"VariableDeclaration":for(let t of e.declarations)x(t.id,n);return;case"FunctionDeclaration":case"ClassDeclaration":x(e.id,n);return;case"ExportNamedDeclaration":case"ExportDefaultDeclaration":e.declaration&&de(e.declaration,n);return}}function T(e){let n=new Set;for(let t of e.body)de(t,n);return n}import{parse as ve}from"@babel/parser";function h(e,n){if(e)switch(e.type){case"Identifier":n.add(e.name);return;case"ObjectPattern":for(let t of e.properties)t.type==="RestElement"?h(t.argument,n):h(t.value,n);return;case"ArrayPattern":for(let t of e.elements)h(t,n);return;case"AssignmentPattern":h(e.left,n);return;case"RestElement":h(e.argument,n);return}}function H(e){switch(e.type){case"StringLiteral":case"NumericLiteral":case"BooleanLiteral":case"NullLiteral":case"BigIntLiteral":case"RegExpLiteral":case"Identifier":return!0;case"Literal":return!0;case"TemplateLiteral":return e.expressions.every(H);case"UnaryExpression":return H(e.argument);case"MemberExpression":return!1;default:return!1}}function B(e,n){if(!(!e||typeof e!="object")){n(e);for(let t of Object.keys(e)){if(t==="loc"||t==="range"||t==="leadingComments"||t==="trailingComments")continue;let r=e[t];if(Array.isArray(r))for(let s of r)s&&typeof s=="object"&&B(s,n);else r&&typeof r=="object"&&typeof r.type=="string"&&B(r,n)}}}function he(e){let n=new Set;return B(e,t=>{if(t.type==="AssignmentExpression")h(t.left,n);else if(t.type==="UpdateExpression"){let r=t.argument;r?.type==="Identifier"&&n.add(r.name)}}),n}function be(e,n){let t=new Set,r=s=>{let a=new Set;h(s,a);for(let o of a)n.has(o)&&t.add(o)};return B(e,s=>{switch(s.type){case"VariableDeclarator":r(s.id);return;case"FunctionDeclaration":case"FunctionExpression":case"ArrowFunctionExpression":r(s.id);for(let a of s.params??[])r(a);return;case"CatchClause":r(s.param);return;case"ClassDeclaration":case"ClassExpression":r(s.id);return}}),t}function pe(e,n,t){for(let r of e.properties??[]){if(r.type==="RestElement"){let l=r.argument;if(l?.type!=="Identifier"||n.length>0){let m=new Set;h(l,m);for(let d of m)t.bails.push({name:d,reason:"rest"});continue}t.rest={name:l.name,keys:[]};continue}if(r.computed){let l=new Set;h(r.value,l);for(let m of l)t.bails.push({name:m,reason:"computed"});continue}let s=r.key,a=s.type==="Identifier"?s.name:s.value,o=r.value,i;o.type==="AssignmentPattern"&&(i=o.right,o=o.left);let c=[...n,a];if(o.type==="Identifier"){if(i&&!H(i)){t.bails.push({name:o.name,reason:"unsafe-default"});continue}t.reads.push({name:o.name,path:c,...i?{fallback:i}:{}});continue}if(o.type==="ObjectPattern"){if(i){let l=new Set;h(o,l);for(let m of l)t.bails.push({name:m,reason:"unsafe-default"});continue}pe(o,c,t);continue}let f=new Set;h(o,f);for(let l of f)t.bails.push({name:l,reason:"computed"})}}function z(e,n){let t={reads:[],bails:[]};if(e?.type!=="ObjectPattern"||(pe(e,[],t),t.rest&&(n?.type!=="BlockStatement"?(t.bails.push({name:t.rest.name,reason:"rest"}),delete t.rest):t.rest.keys=(e.properties??[]).filter(i=>i.type!=="RestElement"&&!i.computed).map(i=>{let c=i.key;return c.type==="Identifier"?c.name:c.value})),t.reads.length===0&&!t.rest))return t;let r=new Set(t.reads.map(i=>i.name));t.rest&&r.add(t.rest.name);let s=he(n),a=be(n,r),o=[];for(let i of t.reads)s.has(i.name)?t.bails.push({name:i.name,reason:"reassigned"}):a.has(i.name)?t.bails.push({name:i.name,reason:"shadowed"}):o.push(i);return t.reads=o,t.rest&&s.has(t.rest.name)?(t.bails.push({name:t.rest.name,reason:"reassigned"}),delete t.rest):t.rest&&a.has(t.rest.name)&&(t.bails.push({name:t.rest.name,reason:"shadowed"}),delete t.rest),t}function V(e){switch(e){case"rest":return"this rest element cannot be served by splitProps, and copying the props into a plain object would lose the getters";case"computed":return"the property is not known until it runs";case"reassigned":return"the binding is assigned to, and props are read-only";case"shadowed":return"an inner scope binds the same name";case"unsafe-default":return"the default would have to run again on every read"}}function P(e,n,t=null){if(!(!e||typeof e!="object"||typeof e.type!="string")&&!e.type.startsWith("TS")&&n(e,t)!==!1)for(let r of Object.keys(e)){if(r==="loc"||r==="leadingComments"||r==="trailingComments")continue;let s=e[r];if(Array.isArray(s))for(let a of s)P(a,n,e);else s&&typeof s=="object"&&P(s,n,e)}}function ue(e){return!!e&&e[0]>="A"&&e[0]<="Z"}function we(e){let n=[];return P(e,t=>{if(t.type==="FunctionDeclaration"&&ue(t.id?.name)){n.push(t);return}if(t.type==="VariableDeclarator"&&ue(t.id?.name)){let r=t.init;r&&(r.type==="ArrowFunctionExpression"||r.type==="FunctionExpression")&&n.push(r)}}),n}function Se(e){let n=new Set;return P(e,t=>{t.type==="Identifier"&&n.add(t.name)}),n}function xe(e,n){if(!n)return!0;switch(n.type){case"MemberExpression":case"OptionalMemberExpression":return!(n.property===e&&!n.computed);case"ObjectProperty":case"ObjectMethod":case"ClassProperty":case"ClassMethod":return!(n.key===e&&!n.computed);case"LabeledStatement":case"BreakStatement":case"ContinueStatement":return n.label!==e;case"ImportSpecifier":case"ExportSpecifier":return!1;default:return!0}}function q(e,n,t={}){let r=[],s=[],a=new Set;for(let o of we(e)){let i=o.params?.[0];if(i?.type!=="ObjectPattern")continue;let c=z(i,o.body);for(let u of c.bails)s.push({name:u.name,reason:u.reason,message:V(u.reason),start:i.start});if(c.bails.length>0||c.reads.length===0&&!c.rest)continue;let f=Se(o),l=t.parameterName??"props";for(;f.has(l);)l=`_${l}`;let m=new Map;for(let u of c.reads){let y=`${l}.${u.path.join(".")}`,N=u.fallback;m.set(u.name,N?`(${y} === undefined ? ${n.slice(N.start,N.end)} : ${y})`:y)}let d=i.typeAnnotation;if(r.push({start:i.start,end:d?.start??i.end,code:l}),c.rest){let u=c.rest.keys.map(N=>JSON.stringify(N)).join(", "),y=o.body;r.push({start:y.start+1,end:y.start+1,code:`
|
|
2
|
+
const [, ${c.rest.name}] = splitProps(${l}, [${u}]);`}),a.add("splitProps")}let g=[];P(o.body,(u,y)=>{if(u.type!=="Identifier")return;let N=m.get(u.name);if(!N)return;let S=y?.type==="ObjectProperty"&&y.shorthand&&y.value===u;if(!S&&!xe(u,y))return;let b=c.reads.find(E=>E.name===u.name).path;g.push({node:u,parent:S?y:null,text:N,property:b[b.length-1]})});for(let u of g)u.parent?r.push({start:u.parent.start,end:u.parent.end,code:`${u.node.name}: ${u.text}`}):r.push({start:u.node.start,end:u.node.end,code:u.text}),Re(u.node,l,u.property)}return{edits:r,diagnostics:s,used:a}}function Re(e,n,t){e.type="MemberExpression",e.computed=!1,e.optional=!1,e.object={type:"Identifier",name:n,start:e.start,end:e.start},e.property={type:"Identifier",name:t,start:e.end,end:e.end},delete e.name}function ke(e,n="module.tsx",t={}){let r=ve(e,{sourceType:"module",plugins:["typescript","jsx"],errorRecovery:!0}),{edits:s,diagnostics:a,used:o}=q(r.program,e,t),i=new A(e);for(let c of s)c.start===c.end?i.appendLeft(c.start,c.code):i.overwrite(c.start,c.end,c.code);return o.has("splitProps")&&!T(r.program).has("splitProps")&&i.prepend(`import { splitProps } from ${JSON.stringify(t.runtimeModule??"@fluixi/dom")};
|
|
3
|
+
`),{code:i.toString(),map:i.generateMap({source:n,includeContent:!0,hires:!0}),diagnostics:a,rewritten:s.filter(c=>c.code!==(t.parameterName??"props")).length}}function v(e,n){if(e)switch(e.type){case"Identifier":n.add(e.name);return;case"ObjectPattern":for(let t of e.properties??[])t.type==="RestElement"?v(t.argument,n):v(t.value,n);return;case"ArrayPattern":for(let t of e.elements??[])v(t,n);return;case"AssignmentPattern":v(e.left,n);return;case"RestElement":v(e.argument,n);return}}function F(e,n){if(!(!e||typeof e!="object"||typeof e.type!="string")){n(e);for(let t of Object.keys(e)){if(t==="loc"||t==="leadingComments"||t==="trailingComments")continue;let r=e[t];if(Array.isArray(r))for(let s of r)F(s,n);else r&&typeof r=="object"&&F(r,n)}}}function Te(e,n){if(e.type!=="CallExpression")return;let t=e.callee;if(t?.type!=="Identifier")return;let r=t.name,s=n.primitives.get(r);if(s)return s;let a=k[r];if(a&&!n.shadowed.has(r))return a.returns}function Pe(e,n,t){if(Array.isArray(n)){e.type==="ArrayPattern"&&e.elements.forEach((r,s)=>{let a=n[s];r?.type==="Identifier"&&a&&t.set(r.name,a)});return}e.type==="Identifier"&&t.set(e.name,n)}function fe(e){let n={kinds:new Map,primitives:new Map,shadowed:new Set},t=e;F(t,r=>{let s=new Set;if(r.type==="VariableDeclarator")v(r.id,s);else if(r.type==="FunctionDeclaration"||r.type==="ClassDeclaration")v(r.id,s);else if(r.type==="ImportDefaultSpecifier"||r.type==="ImportNamespaceSpecifier")v(r.local,s);else if(r.type==="ImportSpecifier")v(r.local,s);else if(r.type==="FunctionExpression"||r.type==="ArrowFunctionExpression"||r.type==="FunctionDeclaration")for(let a of r.params??[])v(a,s);for(let a of s)k[a]&&n.shadowed.add(a)});for(let r of t.body??[])if(r.type==="ImportDeclaration"&&se(r.source?.value))for(let s of r.specifiers??[]){if(s.type!=="ImportSpecifier")continue;let a=s.imported,o=a.type==="Identifier"?a.name:a.value,i=te[o];i&&n.primitives.set(s.local.name,i)}return F(t,r=>{if(r.type!=="VariableDeclarator"||!r.init)return;let s=Te(r.init,n);s&&Pe(r.id,s,n.kinds)}),n}function U(e,n){if(!(!e||typeof e!="object"||typeof e.type!="string")){n(e);for(let t of Object.keys(e)){if(t==="loc"||t==="leadingComments"||t==="trailingComments")continue;let r=e[t];if(Array.isArray(r))for(let s of r)U(s,n);else r&&typeof r=="object"&&U(r,n)}}}function me(e){let n=[],t=[],r=new Map,s=new Set,{shadowed:a}=fe(e);return U(e,o=>{if(o.type!=="CallExpression")return;let i=o.callee;if(i?.type!=="Identifier")return;let c=i.name;if(!re(c))return;if(a.has(c)){s.has(c)||(s.add(c),t.push({name:c,message:`${c} is reserved for the compiler, and this module binds it. The call keeps your binding's meaning; rename it to use the intrinsic.`,start:i.start}));return}let f=k[c];n.push({start:i.start,end:i.end,code:f.export});let l=r.get(f.module)??new Set;l.add(f.export),r.set(f.module,l)}),{edits:n,diagnostics:t,imports:r}}function ge(e,n){let t=[];for(let[r,s]of[...e.imports].sort(([a],[o])=>a.localeCompare(o))){let a=[...s].filter(o=>!n.has(o)).sort();a.length&&t.push(`import { ${a.join(", ")} } from ${JSON.stringify(r)};`)}return t.length?`${t.join(`
|
|
4
|
+
`)}
|
|
5
|
+
`:""}var Ie=new Set(G),Me=new Set(Q),Oe=new Set(ee),Ce=new Set(["createMemo","createEffect","createRenderEffect","createRoot","createSignal","onCleanup","batch","untrack"]);function W(e,n,t=null,r=""){if(!(!e||typeof e!="object")){if(Array.isArray(e)){for(let s of e)W(s,n,t,r);return}typeof e.type=="string"&&n(e,t,r);for(let s of Object.keys(e))s==="loc"||s==="leadingComments"||s==="trailingComments"||W(e[s],n,typeof e.type=="string"?e:t,s)}}var K=e=>e.type==="JSXElement"||e.type==="JSXFragment";function De(e,n,t){return K(e)?!(n&&K(n)&&t==="children"):!1}function je(e,n){return e.type==="TaggedTemplateExpression"&&e.tag?.type==="Identifier"&&(e.tag.name===n||e.tag.name==="svg")}function ye(e){return e.filter(n=>!e.some(t=>t!==n&&t.start<=n.start&&t.end>=n.end&&t.end-t.start>n.end-n.start))}function L(e,n,t,r){let s=ye(r.filter(o=>o.start>=n&&o.end<=t)).sort((o,i)=>i.start-o.start),a=e.slice(n,t);for(let o of s)a=a.slice(0,o.start-n)+o.code+a.slice(o.end-n);return a}function $e(e,n,t){let r={code:L(e,n.start,n.end,t),reactive:_($(n))};return n.type==="ArrowFunctionExpression"&&n.body?.type!=="BlockStatement"&&(r.arrow={params:n.params.map(s=>L(e,s.start,s.end,t)),body:L(e,n.body.start,n.body.end,t),bodyReactive:_($(n.body))}),n.type==="ObjectExpression"&&(r.object=!0),r}function Ne(e,n,t){if(!n||n.length===0)return e;let r=new Map;for(let s of n){let a=`${s.svg?"svg:":""}${s.html}`,o=t.get(a);o||(o=`_fxTmpl$${t.size}`,t.set(a,o)),r.set(s.id,o)}return e.replace(/_tmpl\$\d+/g,s=>r.get(s)??s)}function X(e,n){if(e.kind==="component"&&e.source){let t=e.source;t.origin==="builtin"?n.builtins.add(e.name):ie(t.loading)&&!n.resolved.has(e.name)?n.deferred.set(e.name,t):(n.deferred.delete(e.name),n.resolved.set(e.name,t))}if("props"in e&&e.props)for(let t of e.props)t.kind==="event"&&t.event?.delegated&&n.delegatedEvents.add(t.event.name);if("children"in e&&e.children)for(let t of e.children)X(t,n)}function Ae(e){let n=[`kind: ${JSON.stringify(e.kind)}`];return e.kind==="visible"&&e.rootMargin&&n.push(`rootMargin: ${JSON.stringify(e.rootMargin)}`),e.kind==="interaction"&&n.push(`events: ${JSON.stringify(e.events)}`),e.kind==="media"&&n.push(`query: ${JSON.stringify(e.query)}`),`{ ${n.join(", ")} }`}function Be(e){let n=[];return e.quasi.quasis.forEach((t,r)=>{if(n.push({kind:"static",text:t.value.cooked??t.value.raw,start:t.start}),r<e.quasi.expressions.length){let s=e.quasi.expressions[r];n.push({kind:"hole",index:r,start:s.start,end:s.end})}}),n}function Fe(e,n,t={}){let r=t.litTag??"html",s=t.format??"both",a=s!=="jsx",o=s!=="lit",i=a&&(e.includes(`${r}\``)||e.includes("svg`")),c=t.intrinsics!==!1&&ne(e);if(!i&&!(o&&e.includes("<"))&&!c)return null;let f=Ee(e,{sourceType:"module",plugins:["jsx","typescript"],errorRecovery:!0}),l=[];W(f.program,(p,R,J)=>{(a&&je(p,r)||o&&De(p,R,J))&&l.push(p)});let m=t.propsDestructure?q(f.program,e,{runtimeModule:t.runtimeModule}):{edits:[],diagnostics:[],used:new Set},d=t.intrinsics===!1?{edits:[],diagnostics:[],imports:new Map}:me(f.program);if(l.length===0&&m.edits.length===0&&d.edits.length===0&&d.diagnostics.length===0&&m.diagnostics.length===0)return null;l.sort((p,R)=>R.start-p.start||p.end-R.end);let u=new Set(m.used),y={builtins:new Set,resolved:new Map,deferred:new Map,delegatedEvents:new Set},N=new Map,S=[...m.edits,...d.edits];for(let p of l){let R=l.some(w=>w!==p&&w.start<=p.start&&w.end>=p.end&&w.end-w.start>p.end-p.start);if(K(p)){S.push({start:p.start,end:p.end,code:Le(e,p,S,R,u,y,N,t)});continue}let J=p.quasi.expressions.map(w=>$e(e,w,S)),I=le(Be(p),J,{...t,hoistTemplates:!0,templateClone:t.templateClone??!0,partialTemplates:R?!1:t.partialTemplates??!0,svg:p.tag.name==="svg"});for(let w of I.imports)u.add(w);X(I.ir,y),S.push({start:p.start,end:p.end,code:Ne(I.code,I.templates,N)})}let b=new A(e);for(let p of ye(S))p.start===p.end?b.appendLeft(p.start,p.code):b.overwrite(p.start,p.end,p.code);let E=T(f.program),Y=Je(u,y,N,E,t);Y&&b.prepend(Y);let Z=ge(d,E);Z&&b.prepend(Z);for(let p of f.program.body)p.type==="ImportDeclaration"&&p.source?.value==="@fluixi/core/rx"&&b.overwrite(p.source.start,p.source.end,JSON.stringify("@fluixi/reactive"));return{code:b.toString(),map:b.generateMap({source:n,includeContent:!0,hires:!0}),...m.diagnostics.length?{propsDiagnostics:m.diagnostics}:{},...d.diagnostics.length?{intrinsicDiagnostics:d.diagnostics}:{}}}function Le(e,n,t,r,s,a,o,i){let c=ce(n,{code:l=>L(e,l.start,l.end,t),used:s});j(c),O(c,{resolver:M(i.resolve??[]),modules:{controlFlowModule:i.controlFlowModule??i.runtimeModule??"@fluixi/dom",coreModule:i.coreModule??"@fluixi/core",routerModule:i.routerModule??"@fluixi/core/router-next"},strategyFor:l=>l.load}),C(c);let f=D.emit(c,{templateClone:i.templateClone??!0,partialTemplates:r?!1:i.partialTemplates??!0});for(let l of f.imports)s.add(l);return X(c,a),Ne(f.code,f.templates,o)}function Je(e,n,t,r,s){let a=s.runtimeModule??"@fluixi/dom",o=s.coreModule??"@fluixi/core",i=new Map,c=(d,g)=>i.set(d,[...i.get(d)??[],g]),f=new Set(e);for(let d of n.builtins)f.add(d);n.delegatedEvents.size>0&&f.add("delegateEvents");for(let d of[...f].sort())r.has(d)||(Ce.has(d)?c(s.reactiveModule??"@fluixi/reactive/signal",d):Oe.has(d)?c(s.routerModule??"@fluixi/core/router-next",d):Me.has(d)?c(o,d):Ie.has(d)?c(s.controlFlowModule??a,d):c(a,d));for(let[d,g]of n.resolved)r.has(d)||c(g.module,g.export==="default"?`default as ${d}`:d===g.export?d:`${g.export} as ${d}`);let l=[];for(let[d,g]of i)l.push(`import { ${g.join(", ")} } from ${JSON.stringify(d)};`);let m=[...n.deferred].filter(([d])=>!r.has(d));if(m.length>0){r.has("deferred")||l.push(`import { deferred } from ${JSON.stringify(o)};`);for(let[d,g]of m)l.push(`const ${d} = deferred(() => import(${JSON.stringify(g.module)}), { strategy: ${Ae(g.loading)}, export: ${JSON.stringify(g.export)} });`)}for(let[d,g]of t)l.push(`const ${g} = ${JSON.stringify(d.startsWith("svg:")?d.slice(4):d)};`);return n.delegatedEvents.size>0&&l.push(`delegateEvents(${JSON.stringify([...n.delegatedEvents])});`),l.length>0?l.join(`
|
|
6
|
+
`)+`
|
|
7
|
+
`:null}export{V as explainBail,T as moduleBindings,z as planPropsDestructure,$ as shapeOf,ke as transformProps,Fe as transformTemplates};
|