@arikajs/view 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +92 -194
- package/dist/Compiler/AST.d.ts +34 -0
- package/dist/Compiler/AST.d.ts.map +1 -0
- package/dist/Compiler/AST.js +12 -0
- package/dist/Compiler/AST.js.map +1 -0
- package/dist/Compiler/CodeGenerator.d.ts +11 -0
- package/dist/Compiler/CodeGenerator.d.ts.map +1 -0
- package/dist/Compiler/CodeGenerator.js +53 -0
- package/dist/Compiler/CodeGenerator.js.map +1 -0
- package/dist/Compiler/DirectiveRegistry.d.ts +10 -0
- package/dist/Compiler/DirectiveRegistry.d.ts.map +1 -0
- package/dist/Compiler/DirectiveRegistry.js +206 -0
- package/dist/Compiler/DirectiveRegistry.js.map +1 -0
- package/dist/Compiler/Lexer.d.ts +28 -0
- package/dist/Compiler/Lexer.d.ts.map +1 -0
- package/dist/Compiler/Lexer.js +209 -0
- package/dist/Compiler/Lexer.js.map +1 -0
- package/dist/Compiler/Parser.d.ts +15 -0
- package/dist/Compiler/Parser.d.ts.map +1 -0
- package/dist/Compiler/Parser.js +188 -0
- package/dist/Compiler/Parser.js.map +1 -0
- package/dist/Compiler.d.ts +4 -3
- package/dist/Compiler.d.ts.map +1 -1
- package/dist/Compiler.js +13 -60
- package/dist/Compiler.js.map +1 -1
- package/dist/Engine.d.ts +47 -4
- package/dist/Engine.d.ts.map +1 -1
- package/dist/Engine.js +203 -39
- package/dist/Engine.js.map +1 -1
- package/dist/Template.js +1 -1
- package/dist/Template.js.map +1 -1
- package/dist/View.d.ts +19 -3
- package/dist/View.d.ts.map +1 -1
- package/dist/View.js +30 -2
- package/dist/View.js.map +1 -1
- package/dist/src/Compiler/AST.d.ts +34 -0
- package/dist/src/Compiler/AST.d.ts.map +1 -0
- package/dist/src/Compiler/AST.js +12 -0
- package/dist/src/Compiler/AST.js.map +1 -0
- package/dist/src/Compiler/CodeGenerator.d.ts +11 -0
- package/dist/src/Compiler/CodeGenerator.d.ts.map +1 -0
- package/dist/src/Compiler/CodeGenerator.js +53 -0
- package/dist/src/Compiler/CodeGenerator.js.map +1 -0
- package/dist/src/Compiler/DirectiveRegistry.d.ts +10 -0
- package/dist/src/Compiler/DirectiveRegistry.d.ts.map +1 -0
- package/dist/src/Compiler/DirectiveRegistry.js +206 -0
- package/dist/src/Compiler/DirectiveRegistry.js.map +1 -0
- package/dist/src/Compiler/Lexer.d.ts +28 -0
- package/dist/src/Compiler/Lexer.d.ts.map +1 -0
- package/dist/src/Compiler/Lexer.js +209 -0
- package/dist/src/Compiler/Lexer.js.map +1 -0
- package/dist/src/Compiler/Parser.d.ts +15 -0
- package/dist/src/Compiler/Parser.d.ts.map +1 -0
- package/dist/src/Compiler/Parser.js +188 -0
- package/dist/src/Compiler/Parser.js.map +1 -0
- package/dist/src/Compiler.d.ts +14 -0
- package/dist/src/Compiler.d.ts.map +1 -0
- package/dist/src/Compiler.js +31 -0
- package/dist/src/Compiler.js.map +1 -0
- package/dist/src/Engine.d.ts +76 -0
- package/dist/src/Engine.d.ts.map +1 -0
- package/dist/src/Engine.js +308 -0
- package/dist/src/Engine.js.map +1 -0
- package/dist/src/Template.d.ts +14 -0
- package/dist/src/Template.d.ts.map +1 -0
- package/dist/src/Template.js +63 -0
- package/dist/src/Template.js.map +1 -0
- package/dist/src/View.d.ts +30 -0
- package/dist/src/View.d.ts.map +1 -0
- package/dist/src/View.js +51 -0
- package/dist/src/View.js.map +1 -0
- package/dist/tests/View.test.d.ts +2 -0
- package/dist/tests/View.test.d.ts.map +1 -0
- package/dist/tests/View.test.js +190 -0
- package/dist/tests/View.test.js.map +1 -0
- package/package.json +45 -43
- package/dist/Directives/For.d.ts +0 -5
- package/dist/Directives/For.d.ts.map +0 -1
- package/dist/Directives/For.js +0 -18
- package/dist/Directives/For.js.map +0 -1
- package/dist/Directives/If.d.ts +0 -6
- package/dist/Directives/If.d.ts.map +0 -1
- package/dist/Directives/If.js +0 -26
- package/dist/Directives/If.js.map +0 -1
- package/dist/Directives/Include.d.ts +0 -5
- package/dist/Directives/Include.d.ts.map +0 -1
- package/dist/Directives/Include.js +0 -15
- package/dist/Directives/Include.js.map +0 -1
- package/dist/Directives/Section.d.ts +0 -5
- package/dist/Directives/Section.d.ts.map +0 -1
- package/dist/Directives/Section.js +0 -28
- package/dist/Directives/Section.js.map +0 -1
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DirectiveRegistry = void 0;
|
|
4
|
+
class DirectiveRegistry {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.directives = new Map();
|
|
7
|
+
this.registerDefaultDirectives();
|
|
8
|
+
}
|
|
9
|
+
register(name, handler) {
|
|
10
|
+
this.directives.set(name, handler);
|
|
11
|
+
}
|
|
12
|
+
has(name) {
|
|
13
|
+
return this.directives.has(name);
|
|
14
|
+
}
|
|
15
|
+
handle(name, expression, children) {
|
|
16
|
+
const handler = this.directives.get(name);
|
|
17
|
+
if (handler) {
|
|
18
|
+
return handler(expression, children);
|
|
19
|
+
}
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
registerDefaultDirectives() {
|
|
23
|
+
// Conditionals
|
|
24
|
+
this.register('if', (exp, children) => `if (${exp}) {\n${children}\n}`);
|
|
25
|
+
this.register('elseif', (exp) => `} else if (${exp}) {`);
|
|
26
|
+
this.register('else', () => `} else {`);
|
|
27
|
+
this.register('unless', (exp, children) => `if (!(${exp})) {\n${children}\n}`);
|
|
28
|
+
this.register('empty', (exp, children) => `if (!(${exp}) || (Array.isArray(${exp}) && ${exp}.length === 0)) {\n${children}\n}`);
|
|
29
|
+
// Loops
|
|
30
|
+
this.register('for', (exp, children) => `for (${exp}) {\n${children}\n}`);
|
|
31
|
+
this.register('each', (exp, children) => {
|
|
32
|
+
// @each('view', data, 'item', 'empty')
|
|
33
|
+
const args = exp?.split(',').map(a => a.trim()) || [];
|
|
34
|
+
const view = args[0];
|
|
35
|
+
const collection = args[1];
|
|
36
|
+
const item = args[2] ? args[2].replace(/['"]/g, '') : 'item';
|
|
37
|
+
const emptyView = args[3];
|
|
38
|
+
return `
|
|
39
|
+
const __items = ${collection};
|
|
40
|
+
if (__items && __items.length > 0) {
|
|
41
|
+
for (const ${item} of __items) {
|
|
42
|
+
_output += await _engine.render(${view}, { ..._data, ${item} }, true);
|
|
43
|
+
}
|
|
44
|
+
} else if (${emptyView}) {
|
|
45
|
+
_output += await _engine.render(${emptyView}, _data, true);
|
|
46
|
+
}
|
|
47
|
+
`;
|
|
48
|
+
});
|
|
49
|
+
this.register('break', (exp) => exp ? `if (${exp}) break;` : 'break;');
|
|
50
|
+
this.register('continue', (exp) => exp ? `if (${exp}) continue;` : 'continue;');
|
|
51
|
+
// Switch
|
|
52
|
+
this.register('switch', (exp, children) => `switch (${exp}) {\n${children}\n}`);
|
|
53
|
+
this.register('case', (exp) => `case ${exp}:`);
|
|
54
|
+
this.register('default', () => `default:`);
|
|
55
|
+
// Layouts & Includes
|
|
56
|
+
this.register('extends', (exp) => `_engine.extend(${exp});`);
|
|
57
|
+
this.register('include', (exp) => `_output += await _engine.render(${exp}, _data, true);`);
|
|
58
|
+
this.register('yield', (exp) => `_output += _engine.yield(${exp});`);
|
|
59
|
+
this.register('section', (exp, children) => {
|
|
60
|
+
return `_engine.startSection(${exp}, _output); _output = "";\n${children}\n _output = _engine.popSection(_output);`;
|
|
61
|
+
});
|
|
62
|
+
// Stacks
|
|
63
|
+
this.register('push', (exp, children) => {
|
|
64
|
+
return `_engine.startPush(${exp}, _output); _output = "";\n${children}\n _output = _engine.endPush(_output);`;
|
|
65
|
+
});
|
|
66
|
+
this.register('prepend', (exp, children) => {
|
|
67
|
+
return `_engine.startPrepend(${exp}, _output); _output = "";\n${children}\n _output = _engine.endPrepend(_output);`;
|
|
68
|
+
});
|
|
69
|
+
this.register('stack', (exp) => `_output += _engine.stack(${exp});`);
|
|
70
|
+
// Components
|
|
71
|
+
this.register('component', (exp, children) => {
|
|
72
|
+
return `_engine.startComponent(${exp}, _output); _output = "";\n${children}\n _output = await _engine.renderComponent(_output);`;
|
|
73
|
+
});
|
|
74
|
+
this.register('slot', (exp, children) => {
|
|
75
|
+
return `_engine.startSlot(${exp}, _output); _output = "";\n${children}\n _output = _engine.endSlot(_output);`;
|
|
76
|
+
});
|
|
77
|
+
// Security & Utils
|
|
78
|
+
this.register('verbatim', (exp, children) => `_output += \`${children?.replace(/`/g, '\\`').replace(/\${/g, '\\${')}\`;`);
|
|
79
|
+
this.register('once', (exp, children) => {
|
|
80
|
+
const id = Math.random().toString(36).substring(7);
|
|
81
|
+
return `if (!_engine.hasOnce('${id}')) { _engine.markOnce('${id}'); ${children} }`;
|
|
82
|
+
});
|
|
83
|
+
// Auth Integration
|
|
84
|
+
this.register('auth', (exp, children) => `if (_data.user) {\n${children}\n}`);
|
|
85
|
+
this.register('guest', (exp, children) => `if (!_data.user) {\n${children}\n}`);
|
|
86
|
+
// Authorization (@can / @cannot / @canany)
|
|
87
|
+
this.register('can', (exp, children) => `if (_data.__can && await _data.__can(${exp})) {\n${children}\n}`);
|
|
88
|
+
this.register('cannot', (exp, children) => `if (!_data.__can || !(await _data.__can(${exp}))) {\n${children}\n}`);
|
|
89
|
+
this.register('canany', (exp, children) => {
|
|
90
|
+
return `{
|
|
91
|
+
const __perms = Array.isArray(${exp}) ? ${exp} : [${exp}];
|
|
92
|
+
const __canAny = _data.__can ? (await Promise.all(__perms.map(p => _data.__can(p)))).some(Boolean) : false;
|
|
93
|
+
if (__canAny) {\n${children}\n}
|
|
94
|
+
}`;
|
|
95
|
+
});
|
|
96
|
+
// Async
|
|
97
|
+
this.register('await', (exp, children) => {
|
|
98
|
+
return `_output += await (${exp});`;
|
|
99
|
+
});
|
|
100
|
+
this.register('json', (exp) => `_output += JSON.stringify(${exp});`);
|
|
101
|
+
// HTMX / Fragments
|
|
102
|
+
this.register('fragment', (exp, children) => {
|
|
103
|
+
return `if (!_engine.isFragmentMode() || _engine.getFragment() === ${exp}) {\n${children}\n}`;
|
|
104
|
+
});
|
|
105
|
+
// --- FORM HELPERS ---
|
|
106
|
+
// @csrf -> hidden input with CSRF token from _data._csrf
|
|
107
|
+
this.register('csrf', () => '_output += `<input type="hidden" name="_token" value="${(_data._csrf || "")}">`;');
|
|
108
|
+
// @method('PUT') -> hidden method spoofing input
|
|
109
|
+
this.register('method', (exp) => `_output += \`<input type="hidden" name="_method" value="\${${exp}}">\`;`);
|
|
110
|
+
// @error('field') ... @enderror
|
|
111
|
+
this.register('error', (exp, children) => {
|
|
112
|
+
return `{
|
|
113
|
+
const __fieldErrors = _data.errors && _data.errors[${exp}];
|
|
114
|
+
if (__fieldErrors) {
|
|
115
|
+
const message = Array.isArray(__fieldErrors) ? __fieldErrors[0] : __fieldErrors;
|
|
116
|
+
${children}
|
|
117
|
+
}
|
|
118
|
+
}`;
|
|
119
|
+
});
|
|
120
|
+
// --- CONDITIONAL ATTRIBUTES ---
|
|
121
|
+
this.register('checked', (exp) => `_output += (${exp}) ? ' checked' : '';`);
|
|
122
|
+
this.register('selected', (exp) => `_output += (${exp}) ? ' selected' : '';`);
|
|
123
|
+
this.register('disabled', (exp) => `_output += (${exp}) ? ' disabled' : '';`);
|
|
124
|
+
this.register('required', (exp) => `_output += (${exp}) ? ' required' : '';`);
|
|
125
|
+
this.register('readonly', (exp) => `_output += (${exp}) ? ' readonly' : '';`);
|
|
126
|
+
// @class({'cls-a': condition, 'cls-b': true})
|
|
127
|
+
this.register('class', (exp) => {
|
|
128
|
+
return `{
|
|
129
|
+
const __classMap = ${exp};
|
|
130
|
+
const __classes = Object.entries(__classMap).filter(([, v]) => Boolean(v)).map(([c]) => c).join(' ');
|
|
131
|
+
_output += __classes ? \` class="\${__classes}"\` : '';
|
|
132
|
+
}`;
|
|
133
|
+
});
|
|
134
|
+
// @style({'color:red': condition})
|
|
135
|
+
this.register('style', (exp) => {
|
|
136
|
+
return `{
|
|
137
|
+
const __styleMap = ${exp};
|
|
138
|
+
const __styles = Object.entries(__styleMap).filter(([, v]) => Boolean(v)).map(([s]) => s).join('; ');
|
|
139
|
+
_output += __styles ? \` style="\${__styles}"\` : '';
|
|
140
|
+
}`;
|
|
141
|
+
});
|
|
142
|
+
// --- EXISTENCE CHECKS ---
|
|
143
|
+
this.register('isset', (exp, children) => `if (typeof ${exp} !== 'undefined' && ${exp} !== null) {\n${children}\n}`);
|
|
144
|
+
this.register('unset', (exp, children) => `if (typeof ${exp} === 'undefined' || ${exp} === null) {\n${children}\n}`);
|
|
145
|
+
// --- ENVIRONMENT ---
|
|
146
|
+
this.register('env', (exp, children) => {
|
|
147
|
+
return `{
|
|
148
|
+
const __envs = Array.isArray(${exp}) ? ${exp} : [${exp}];
|
|
149
|
+
const __currentEnv = (_data.__env || process.env.NODE_ENV || 'production');
|
|
150
|
+
if (__envs.includes(__currentEnv)) {\n${children}\n}
|
|
151
|
+
}`;
|
|
152
|
+
});
|
|
153
|
+
this.register('production', (exp, children) => {
|
|
154
|
+
return `if ((_data.__env || process.env.NODE_ENV) === 'production') {\n${children}\n}`;
|
|
155
|
+
});
|
|
156
|
+
// --- FORELSE ---
|
|
157
|
+
// @forelse(collection as item) ... @empty ... @endforelse
|
|
158
|
+
this.register('forelse', (exp, children) => {
|
|
159
|
+
const emptyMarker = '/* __FORELSE_EMPTY__ */';
|
|
160
|
+
const parts = (children || '').split(emptyMarker);
|
|
161
|
+
const loopBody = parts[0] || '';
|
|
162
|
+
const emptyBody = parts[1] || '';
|
|
163
|
+
const match = (exp || '').match(/(.+?)\s+as\s+(\S+)(?:\s*,\s*(\S+))?/);
|
|
164
|
+
if (!match)
|
|
165
|
+
return `/* @forelse: invalid expression */`;
|
|
166
|
+
const collection = match[1].replace(/^\$/, '');
|
|
167
|
+
const value = match[2].replace(/^\$/, '');
|
|
168
|
+
const key = match[3]?.replace(/^\$/, '');
|
|
169
|
+
const loopHead = key
|
|
170
|
+
? `for (const [${key}, ${value}] of Object.entries(__fc)) {`
|
|
171
|
+
: `for (const ${value} of __fc) {`;
|
|
172
|
+
return `{
|
|
173
|
+
const __fc = ${collection} || [];
|
|
174
|
+
const __fcHas = Array.isArray(__fc) ? __fc.length > 0 : Object.keys(__fc).length > 0;
|
|
175
|
+
if (__fcHas) {
|
|
176
|
+
${loopHead}
|
|
177
|
+
${loopBody}
|
|
178
|
+
}
|
|
179
|
+
} else {
|
|
180
|
+
${emptyBody}
|
|
181
|
+
}
|
|
182
|
+
}`;
|
|
183
|
+
});
|
|
184
|
+
// @empty inside @forelse - inserts split marker; standalone @empty(collection) as before
|
|
185
|
+
this.register('empty', (exp, children) => {
|
|
186
|
+
if (!exp && children === undefined) {
|
|
187
|
+
return '/* __FORELSE_EMPTY__ */';
|
|
188
|
+
}
|
|
189
|
+
if (exp) {
|
|
190
|
+
return `if (!(${exp}) || (Array.isArray(${exp}) && ${exp}.length === 0)) {\n${children}\n}`;
|
|
191
|
+
}
|
|
192
|
+
return `/* __FORELSE_EMPTY__ */ ${children || ''}`;
|
|
193
|
+
});
|
|
194
|
+
// --- TRANSLATION ---
|
|
195
|
+
this.register('lang', (exp) => `_output += _escape((_data.__t && _data.__t(${exp})) || ${exp});`);
|
|
196
|
+
this.register('t', (exp) => `_output += _escape((_data.__t && _data.__t(${exp})) || ${exp});`);
|
|
197
|
+
this.register('choice', (exp) => {
|
|
198
|
+
const args = exp?.split(',').map(a => a.trim()) || [];
|
|
199
|
+
const key = args[0];
|
|
200
|
+
const count = args[1] || '1';
|
|
201
|
+
return `_output += _escape((_data.__choice && _data.__choice(${key}, ${count})) || ${key});`;
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
exports.DirectiveRegistry = DirectiveRegistry;
|
|
206
|
+
//# sourceMappingURL=DirectiveRegistry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DirectiveRegistry.js","sourceRoot":"","sources":["../../../src/Compiler/DirectiveRegistry.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare enum TokenType {
|
|
2
|
+
Text = "Text",
|
|
3
|
+
Expression = "Expression",// {{ expr }}
|
|
4
|
+
RawExpression = "RawExpression",// {!! expr !!}
|
|
5
|
+
Directive = "Directive",// @directive(expr) or @directive
|
|
6
|
+
ComponentStart = "ComponentStart",// <x-component
|
|
7
|
+
ComponentEnd = "ComponentEnd"
|
|
8
|
+
}
|
|
9
|
+
export interface Token {
|
|
10
|
+
type: TokenType;
|
|
11
|
+
value: string;
|
|
12
|
+
line: number;
|
|
13
|
+
}
|
|
14
|
+
export declare class Lexer {
|
|
15
|
+
private input;
|
|
16
|
+
private position;
|
|
17
|
+
private line;
|
|
18
|
+
constructor(input: string);
|
|
19
|
+
tokenize(): Token[];
|
|
20
|
+
private consumeRawExpression;
|
|
21
|
+
private consumeExpression;
|
|
22
|
+
private consumeDirective;
|
|
23
|
+
private consumeComponentStart;
|
|
24
|
+
private consumeComponentEnd;
|
|
25
|
+
private consumeComment;
|
|
26
|
+
private consumeText;
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=Lexer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Lexer.d.ts","sourceRoot":"","sources":["../../../src/Compiler/Lexer.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACjB,IAAI,SAAS;IACb,UAAU,eAAe,CAAS,aAAa;IAC/C,aAAa,kBAAkB,CAAI,eAAe;IAClD,SAAS,cAAc,CAAY,iCAAiC;IACpE,cAAc,mBAAmB,CAAE,eAAe;IAClD,YAAY,iBAAiB;CAChC;AAED,MAAM,WAAW,KAAK;IAClB,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,qBAAa,KAAK;IACd,OAAO,CAAC,KAAK,CAAS;IACtB,OAAO,CAAC,QAAQ,CAAa;IAC7B,OAAO,CAAC,IAAI,CAAa;gBAEb,KAAK,EAAE,MAAM;IAIlB,QAAQ,IAAI,KAAK,EAAE;IAwE1B,OAAO,CAAC,oBAAoB;IAe5B,OAAO,CAAC,iBAAiB;IAezB,OAAO,CAAC,gBAAgB;IAqCxB,OAAO,CAAC,qBAAqB;IAc7B,OAAO,CAAC,mBAAmB;IAa3B,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,WAAW;CAqBtB"}
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Lexer = exports.TokenType = void 0;
|
|
4
|
+
var TokenType;
|
|
5
|
+
(function (TokenType) {
|
|
6
|
+
TokenType["Text"] = "Text";
|
|
7
|
+
TokenType["Expression"] = "Expression";
|
|
8
|
+
TokenType["RawExpression"] = "RawExpression";
|
|
9
|
+
TokenType["Directive"] = "Directive";
|
|
10
|
+
TokenType["ComponentStart"] = "ComponentStart";
|
|
11
|
+
TokenType["ComponentEnd"] = "ComponentEnd";
|
|
12
|
+
})(TokenType || (exports.TokenType = TokenType = {}));
|
|
13
|
+
class Lexer {
|
|
14
|
+
constructor(input) {
|
|
15
|
+
this.position = 0;
|
|
16
|
+
this.line = 1;
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
|
+
tokenize() {
|
|
20
|
+
const tokens = [];
|
|
21
|
+
while (this.position < this.input.length) {
|
|
22
|
+
const char = this.input[this.position];
|
|
23
|
+
// Raw Expression {!! ... !!}
|
|
24
|
+
if (this.input.startsWith('{!!', this.position)) {
|
|
25
|
+
tokens.push(this.consumeRawExpression());
|
|
26
|
+
continue;
|
|
27
|
+
}
|
|
28
|
+
// Comment {{-- ... --}}
|
|
29
|
+
if (this.input.startsWith('{{--', this.position)) {
|
|
30
|
+
this.consumeComment();
|
|
31
|
+
continue;
|
|
32
|
+
}
|
|
33
|
+
// Expression {{ ... }}
|
|
34
|
+
if (this.input.startsWith('{{', this.position)) {
|
|
35
|
+
tokens.push(this.consumeExpression());
|
|
36
|
+
continue;
|
|
37
|
+
}
|
|
38
|
+
// Component End </x-
|
|
39
|
+
if (this.input.startsWith('</x-', this.position)) {
|
|
40
|
+
tokens.push(this.consumeComponentEnd());
|
|
41
|
+
continue;
|
|
42
|
+
}
|
|
43
|
+
// Component Start <x-
|
|
44
|
+
if (this.input.startsWith('<x-', this.position)) {
|
|
45
|
+
tokens.push(this.consumeComponentStart());
|
|
46
|
+
continue;
|
|
47
|
+
}
|
|
48
|
+
// Directive @...
|
|
49
|
+
if (char === '@') {
|
|
50
|
+
// Peek if it's an escaped @@
|
|
51
|
+
if (this.input[this.position + 1] === '@') {
|
|
52
|
+
tokens.push({ type: TokenType.Text, value: '@', line: this.line });
|
|
53
|
+
this.position += 2;
|
|
54
|
+
continue;
|
|
55
|
+
}
|
|
56
|
+
// Peek to see if it's a valid directive name (following letters)
|
|
57
|
+
const nextChar = this.input[this.position + 1];
|
|
58
|
+
if (nextChar && /[a-zA-Z]/.test(nextChar)) {
|
|
59
|
+
tokens.push(this.consumeDirective());
|
|
60
|
+
continue;
|
|
61
|
+
}
|
|
62
|
+
else {
|
|
63
|
+
// Not a directive, treat as regular text
|
|
64
|
+
tokens.push({ type: TokenType.Text, value: '@', line: this.line });
|
|
65
|
+
this.position++;
|
|
66
|
+
continue;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
// Otherwise, it's text
|
|
70
|
+
const textToken = this.consumeText();
|
|
71
|
+
if (textToken.value.length > 0) {
|
|
72
|
+
tokens.push(textToken);
|
|
73
|
+
}
|
|
74
|
+
else if (this.position < this.input.length) {
|
|
75
|
+
// Avoid infinite loop if no other token matches but position didn't advance
|
|
76
|
+
const char = this.input[this.position];
|
|
77
|
+
tokens.push({ type: TokenType.Text, value: char, line: this.line });
|
|
78
|
+
if (char === '\n')
|
|
79
|
+
this.line++;
|
|
80
|
+
this.position++;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
return tokens;
|
|
84
|
+
}
|
|
85
|
+
consumeRawExpression() {
|
|
86
|
+
const start = this.position;
|
|
87
|
+
this.position += 3; // {!!
|
|
88
|
+
while (this.position < this.input.length && !this.input.startsWith('!!}', this.position)) {
|
|
89
|
+
if (this.input[this.position] === '\n')
|
|
90
|
+
this.line++;
|
|
91
|
+
this.position++;
|
|
92
|
+
}
|
|
93
|
+
this.position += 3; // !!}
|
|
94
|
+
return {
|
|
95
|
+
type: TokenType.RawExpression,
|
|
96
|
+
value: this.input.substring(start + 3, this.position - 3).trim(),
|
|
97
|
+
line: this.line
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
consumeExpression() {
|
|
101
|
+
const start = this.position;
|
|
102
|
+
this.position += 2; // {{
|
|
103
|
+
while (this.position < this.input.length && !this.input.startsWith('}}', this.position)) {
|
|
104
|
+
if (this.input[this.position] === '\n')
|
|
105
|
+
this.line++;
|
|
106
|
+
this.position++;
|
|
107
|
+
}
|
|
108
|
+
this.position += 2; // }}
|
|
109
|
+
return {
|
|
110
|
+
type: TokenType.Expression,
|
|
111
|
+
value: this.input.substring(start + 2, this.position - 2).trim(),
|
|
112
|
+
line: this.line
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
consumeDirective() {
|
|
116
|
+
const start = this.position;
|
|
117
|
+
this.position++; // @
|
|
118
|
+
while (this.position < this.input.length && /[a-zA-Z0-9_]/.test(this.input[this.position])) {
|
|
119
|
+
this.position++;
|
|
120
|
+
}
|
|
121
|
+
let value = this.input.substring(start, this.position);
|
|
122
|
+
// Check for expression @directive(...)
|
|
123
|
+
// Allow optional whitespace before the parenthesis
|
|
124
|
+
let tempPos = this.position;
|
|
125
|
+
while (tempPos < this.input.length && (this.input[tempPos] === ' ' || this.input[tempPos] === '\t')) {
|
|
126
|
+
tempPos++;
|
|
127
|
+
}
|
|
128
|
+
if (this.input[tempPos] === '(') {
|
|
129
|
+
this.position = tempPos;
|
|
130
|
+
let parenCount = 1;
|
|
131
|
+
this.position++;
|
|
132
|
+
const exprStart = this.position;
|
|
133
|
+
while (this.position < this.input.length && parenCount > 0) {
|
|
134
|
+
if (this.input[this.position] === '(')
|
|
135
|
+
parenCount++;
|
|
136
|
+
if (this.input[this.position] === ')')
|
|
137
|
+
parenCount--;
|
|
138
|
+
if (this.input[this.position] === '\n')
|
|
139
|
+
this.line++;
|
|
140
|
+
this.position++;
|
|
141
|
+
}
|
|
142
|
+
value = this.input.substring(start, this.position);
|
|
143
|
+
}
|
|
144
|
+
return {
|
|
145
|
+
type: TokenType.Directive,
|
|
146
|
+
value,
|
|
147
|
+
line: this.line
|
|
148
|
+
};
|
|
149
|
+
}
|
|
150
|
+
consumeComponentStart() {
|
|
151
|
+
const start = this.position;
|
|
152
|
+
while (this.position < this.input.length && this.input[this.position] !== '>') {
|
|
153
|
+
if (this.input[this.position] === '\n')
|
|
154
|
+
this.line++;
|
|
155
|
+
this.position++;
|
|
156
|
+
}
|
|
157
|
+
this.position++; // >
|
|
158
|
+
return {
|
|
159
|
+
type: TokenType.ComponentStart,
|
|
160
|
+
value: this.input.substring(start, this.position),
|
|
161
|
+
line: this.line
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
consumeComponentEnd() {
|
|
165
|
+
const start = this.position;
|
|
166
|
+
while (this.position < this.input.length && this.input[this.position] !== '>') {
|
|
167
|
+
this.position++;
|
|
168
|
+
}
|
|
169
|
+
this.position++; // >
|
|
170
|
+
return {
|
|
171
|
+
type: TokenType.ComponentEnd,
|
|
172
|
+
value: this.input.substring(start, this.position),
|
|
173
|
+
line: this.line
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
consumeComment() {
|
|
177
|
+
this.position += 4; // {{--
|
|
178
|
+
while (this.position < this.input.length && !this.input.startsWith('--}}', this.position)) {
|
|
179
|
+
if (this.input[this.position] === '\n')
|
|
180
|
+
this.line++;
|
|
181
|
+
this.position++;
|
|
182
|
+
}
|
|
183
|
+
this.position += 4; // --}}
|
|
184
|
+
}
|
|
185
|
+
consumeText() {
|
|
186
|
+
const start = this.position;
|
|
187
|
+
while (this.position < this.input.length) {
|
|
188
|
+
const char = this.input[this.position];
|
|
189
|
+
if (char === '@' ||
|
|
190
|
+
this.input.startsWith('{{--', this.position) ||
|
|
191
|
+
this.input.startsWith('{{', this.position) ||
|
|
192
|
+
this.input.startsWith('{!!', this.position) ||
|
|
193
|
+
this.input.startsWith('<x-', this.position) ||
|
|
194
|
+
this.input.startsWith('</x-', this.position)) {
|
|
195
|
+
break;
|
|
196
|
+
}
|
|
197
|
+
if (char === '\n')
|
|
198
|
+
this.line++;
|
|
199
|
+
this.position++;
|
|
200
|
+
}
|
|
201
|
+
return {
|
|
202
|
+
type: TokenType.Text,
|
|
203
|
+
value: this.input.substring(start, this.position),
|
|
204
|
+
line: this.line
|
|
205
|
+
};
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
exports.Lexer = Lexer;
|
|
209
|
+
//# sourceMappingURL=Lexer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Lexer.js","sourceRoot":"","sources":["../../../src/Compiler/Lexer.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Token } from './Lexer';
|
|
2
|
+
import { RootNode } from './AST';
|
|
3
|
+
export declare class Parser {
|
|
4
|
+
private tokens;
|
|
5
|
+
private position;
|
|
6
|
+
constructor(tokens: Token[]);
|
|
7
|
+
parse(): RootNode;
|
|
8
|
+
private parseNode;
|
|
9
|
+
private parseDirective;
|
|
10
|
+
private parseComponent;
|
|
11
|
+
private parseComponentAttributes;
|
|
12
|
+
private isBlockDirective;
|
|
13
|
+
private getEndDirectiveName;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=Parser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Parser.d.ts","sourceRoot":"","sources":["../../../src/Compiler/Parser.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAa,MAAM,SAAS,CAAC;AAC3C,OAAO,EAAkB,QAAQ,EAAiB,MAAM,OAAO,CAAC;AAEhE,qBAAa,MAAM;IACf,OAAO,CAAC,MAAM,CAAU;IACxB,OAAO,CAAC,QAAQ,CAAa;gBAEjB,MAAM,EAAE,KAAK,EAAE;IAIpB,KAAK,IAAI,QAAQ;IAoBxB,OAAO,CAAC,SAAS;IA8BjB,OAAO,CAAC,cAAc;IA6CtB,OAAO,CAAC,cAAc;IAqCtB,OAAO,CAAC,wBAAwB;IAuBhC,OAAO,CAAC,gBAAgB;IAWxB,OAAO,CAAC,mBAAmB;CAoB9B"}
|