@frontiers-labs/argon 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Argon Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # @argon/compiler
2
+
3
+ The Argon TypeScript-to-Web Components compiler.
4
+
5
+ See the [main README](../README.md) for full documentation.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install -D @argon/compiler
11
+ ```
12
+
13
+ ## CLI
14
+
15
+ ```bash
16
+ npx argon compile <input.ts> [options]
17
+ ```
18
+
19
+ ## API
20
+
21
+ ```typescript
22
+ import { component, html, css } from '@argon/compiler';
23
+
24
+ @component('my-element')
25
+ export class MyElement {
26
+ static readonly styles: string = css`...`;
27
+
28
+ render(): string {
29
+ return html`...`;
30
+ }
31
+
32
+ hydrate(root: ShadowRoot): void {
33
+ // Add interactivity
34
+ }
35
+ }
36
+ ```
@@ -0,0 +1,4 @@
1
+ export declare function component(_tagName: string): ClassDecorator;
2
+ export declare function html(strings: TemplateStringsArray, ...values: unknown[]): string;
3
+ export declare const css: typeof html;
4
+ //# sourceMappingURL=annotations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"annotations.d.ts","sourceRoot":"","sources":["../src/annotations.ts"],"names":[],"mappings":"AAGA,wBAAgB,SAAS,CAAC,QAAQ,EAAE,MAAM,GAAG,cAAc,CAE1D;AAED,wBAAgB,IAAI,CAAC,OAAO,EAAE,oBAAoB,EAAE,GAAG,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,CAEhF;AAED,eAAO,MAAM,GAAG,aAAO,CAAC"}
@@ -0,0 +1,10 @@
1
+ // Argon compiler annotations — pure type stubs for IDE support.
2
+ // The compiler reads these syntactically; they carry no runtime behavior.
3
+ export function component(_tagName) {
4
+ return () => { };
5
+ }
6
+ export function html(strings, ...values) {
7
+ return String.raw({ raw: strings }, ...values);
8
+ }
9
+ export const css = html;
10
+ //# sourceMappingURL=annotations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"annotations.js","sourceRoot":"","sources":["../src/annotations.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,0EAA0E;AAE1E,MAAM,UAAU,SAAS,CAAC,QAAgB;IACxC,OAAO,GAAG,EAAE,GAAE,CAAC,CAAC;AAClB,CAAC;AAED,MAAM,UAAU,IAAI,CAAC,OAA6B,EAAE,GAAG,MAAiB;IACtE,OAAO,MAAM,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,MAAM,CAAC,CAAC;AACjD,CAAC;AAED,MAAM,CAAC,MAAM,GAAG,GAAG,IAAI,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { IrModule } from '../ir.js';
2
+ export declare function generateJS(module: IrModule): string;
3
+ //# sourceMappingURL=js.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"js.d.ts","sourceRoot":"","sources":["../../src/codegen/js.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,QAAQ,EACT,MAAM,UAAU,CAAC;AAIlB,wBAAgB,UAAU,CAAC,MAAM,EAAE,QAAQ,GAAG,MAAM,CAyBnD"}
@@ -0,0 +1,159 @@
1
+ import ts from 'typescript';
2
+ // ── Public API ─────────────────────────────────────────────────────────────────
3
+ export function generateJS(module) {
4
+ const hasCsr = !!module.component.renderBodySource;
5
+ const parts = [
6
+ '// Generated by Argon compiler — do not edit by hand.\n',
7
+ ...(hasCsr ? ['const html = (s, ...v) => String.raw({ raw: s }, ...v);\n'] : []),
8
+ ];
9
+ // Data constants
10
+ for (const dc of module.dataConsts) {
11
+ parts.push(`const ${dc.name} = ${literalToJS(dc.value)};\n`);
12
+ }
13
+ // Helper functions (type-stripped from bodySource)
14
+ for (const fn of module.functions) {
15
+ const paramsJS = fn.params.map(p => p.name).join(', ');
16
+ const bodyJS = stripTypeAnnotations(`function __wrapper__(${fn.params.map(p => `${p.name}: any`).join(', ')}) {\n${fn.bodySource}\n}`);
17
+ // Extract just the body from the transpiled wrapper
18
+ const body = extractFunctionBody(bodyJS);
19
+ parts.push(`function ${fn.name}(${paramsJS}) {\n${body}\n}\n`);
20
+ }
21
+ // Custom element class
22
+ parts.push(componentToJS(module.component));
23
+ return parts.join('\n');
24
+ }
25
+ // ── Literal → JS ───────────────────────────────────────────────────────────────
26
+ function literalToJS(lit) {
27
+ switch (lit.kind) {
28
+ case 'string': return JSON.stringify(lit.value);
29
+ case 'number': return String(lit.value);
30
+ case 'boolean': return String(lit.value);
31
+ case 'array': return `[${lit.elements.map(literalToJS).join(', ')}]`;
32
+ case 'object': {
33
+ const entries = lit.properties.map(p => ` ${JSON.stringify(p.key)}: ${literalToJS(p.value)}`);
34
+ return `{\n${entries.join(',\n')}\n}`;
35
+ }
36
+ }
37
+ }
38
+ // ── Type stripping ─────────────────────────────────────────────────────────────
39
+ function stripTypeAnnotations(source) {
40
+ const result = ts.transpileModule(source, {
41
+ compilerOptions: {
42
+ target: ts.ScriptTarget.ESNext,
43
+ module: ts.ModuleKind.ESNext,
44
+ useDefineForClassFields: false,
45
+ },
46
+ });
47
+ return result.outputText;
48
+ }
49
+ function extractFunctionBody(transpiled) {
50
+ const open = transpiled.indexOf('{');
51
+ const close = transpiled.lastIndexOf('}');
52
+ if (open === -1 || close === -1)
53
+ return transpiled;
54
+ return transpiled.slice(open + 1, close).trim();
55
+ }
56
+ function stripMethodTypes(methodSrc) {
57
+ const classWrapped = `class __X__ extends HTMLElement {\n${methodSrc}\n}`;
58
+ const out = stripTypeAnnotations(classWrapped);
59
+ // Remove the class wrapper lines
60
+ const lines = out.split('\n');
61
+ // Drop first line (class __X__...) and last line (closing })
62
+ const inner = lines.slice(1, lines.length - 2);
63
+ return inner.join('\n').trim();
64
+ }
65
+ function stripBodyTypes(body, paramsSrc) {
66
+ const src = `class __X__ extends HTMLElement {\n __m__(${paramsSrc}) {\n${body}\n }\n}`;
67
+ const out = stripTypeAnnotations(src);
68
+ const methodMatch = out.match(/__m__\([^)]*\)\s*\{([\s\S]*)\s*\}\s*\}\s*$/);
69
+ if (methodMatch)
70
+ return methodMatch[1].trim();
71
+ // Fallback: crude regex strip
72
+ return body
73
+ .replace(/<[A-Z][A-Za-z<>, [\]|&]*>/g, '') // remove generic params
74
+ .replace(/\s*:\s*[A-Z][A-Za-z<>, [\]|&]+/g, '') // remove type annotations
75
+ .replace(/([^!])!/g, '$1'); // remove non-null assertions
76
+ }
77
+ // ── Component → JS class ───────────────────────────────────────────────────────
78
+ function rewritePropsInRenderBody(js, className, props) {
79
+ let out = js;
80
+ for (const prop of props) {
81
+ out = out.replace(new RegExp(`\\bthis\\.${prop.name}\\b`, 'g'), `this.#${prop.name}`);
82
+ }
83
+ // Static styles field accessed as ClassName.styles → ClassName.#styles
84
+ out = out.replace(new RegExp(`\\b${className}\\.styles\\b`, 'g'), `${className}.#styles`);
85
+ return out;
86
+ }
87
+ function componentToJS(comp) {
88
+ const { tagName, className, props, styles, renderBodySource, hydrateBodySource, privateMethods } = comp;
89
+ const hasCsr = !!renderBodySource;
90
+ // Static styles — needed so #renderHTML() can embed them
91
+ const stylesField = styles && hasCsr
92
+ ? ` static #styles = ${JSON.stringify(styles)};\n`
93
+ : '';
94
+ // Private field declarations
95
+ const propFields = props.map(p => ` #${p.name} = ${literalToJS(p.defaultValue)};`).join('\n');
96
+ const isCSRField = hasCsr ? ` #isCSR = false;` : '';
97
+ const fields = [propFields, isCSRField].filter(Boolean).join('\n');
98
+ // Constructor (CSR path)
99
+ let constructorBlock = '';
100
+ if (hasCsr) {
101
+ const propInits = props.map(p => ` this.#${p.name} = props.${p.name} ?? ${literalToJS(p.defaultValue)};`).join('\n');
102
+ constructorBlock = `
103
+ constructor(props) {
104
+ super();
105
+ if (props !== undefined) {
106
+ this.#isCSR = true;
107
+ ${propInits}
108
+ const shadow = this.attachShadow({ mode: 'open' });
109
+ shadow.innerHTML = this.#renderHTML();
110
+ this.#hydrate(shadow);
111
+ }
112
+ }
113
+ `;
114
+ }
115
+ // connectedCallback: SSR hydration path
116
+ const attrInits = props.map(p => {
117
+ const def = literalToJS(p.defaultValue);
118
+ return ` this.#${p.name} = this.dataset['${p.name}'] || ${def};`;
119
+ }).join('\n');
120
+ const csrGuard = hasCsr ? ` if (this.#isCSR) return;\n` : '';
121
+ // Hydrate body — strip types
122
+ const hydrateJS = stripBodyTypes(hydrateBodySource, 'root');
123
+ // #renderHTML() for CSR
124
+ let renderMethod = '';
125
+ if (hasCsr) {
126
+ const rawRenderJS = stripBodyTypes(renderBodySource, '');
127
+ const renderJS = rewritePropsInRenderBody(rawRenderJS, className, props);
128
+ renderMethod = `
129
+ #renderHTML() {
130
+ ${renderJS}
131
+ }
132
+ `;
133
+ }
134
+ // Private methods — strip types from each
135
+ const privateMethodsJS = privateMethods.map(m => {
136
+ const stripped = stripMethodTypes(m.source);
137
+ return `\n${stripped}`;
138
+ }).join('\n');
139
+ return `
140
+ class ${className} extends HTMLElement {
141
+ ${stylesField}${fields}
142
+ ${constructorBlock}
143
+ connectedCallback() {
144
+ ${csrGuard}${attrInits}
145
+ if (this.shadowRoot) {
146
+ this.#hydrate(this.shadowRoot);
147
+ }
148
+ }
149
+
150
+ #hydrate(root) {
151
+ ${hydrateJS}
152
+ }
153
+ ${renderMethod}${privateMethodsJS}
154
+ }
155
+
156
+ customElements.define('${tagName}', ${className});
157
+ `;
158
+ }
159
+ //# sourceMappingURL=js.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"js.js","sourceRoot":"","sources":["../../src/codegen/js.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ import type { IrModule } from '../ir.js';
2
+ export declare function generateRust(module: IrModule): string;
3
+ export declare function toSnake(s: string): string;
4
+ //# sourceMappingURL=rust.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rust.d.ts","sourceRoot":"","sources":["../../src/codegen/rust.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,QAAQ,EAGT,MAAM,UAAU,CAAC;AAIlB,wBAAgB,YAAY,CAAC,MAAM,EAAE,QAAQ,GAAG,MAAM,CAmCrD;AAoqBD,wBAAgB,OAAO,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAKzC"}