-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightning.js
311 lines (244 loc) · 5.82 KB
/
lightning.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
Copyright 2023 Jamie jamiebalfour
This is based on the Zenith Parsing Engine which is used to compile YASS
*/
function jsParser(program){
var elements = [];
var symbs = '<> /=!-\n\r\t';
var pc = 0;
var inQuotes = false;
function isKeySymb(chr){
for (var i = 0; i < symbs.length; i++){
if(chr == symbs[i]){
return true;
}
}
return false;
}
//Read a token
function parse(){
var word = "";
//We need to read these separately from keywords
if(program[pc] == '"' || program[pc] == "'"){
pc++;
return program[pc - 1];
}
//Key symbols return the previous symbol
if(isKeySymb(program[pc])){
pc++;
return program[pc-1];
}
while (pc < program.length){
//Create the word
if(isKeySymb(program[pc])){
return word;
} else{
word += program[pc];
pc++;
}
if(program[pc] == '"' || program[pc] == "'"){
return word;
}
}
return null;
}
var symb = "";
while(symb !== null){
symb = parse();
elements.push(symb);
}
return elements;
}
function jsCompiler(tokens){
var output = [];
var counter = 0;
var running = true;
var selfClosingTags = ["img", "br", "link", "source", "input", "iframe", "hr", "meta", "track"];
function getNext(){
counter++;
while((getSymb() == " " || getSymb() == '\n' || getSymb() == '\r' || getSymb() == "\t") && counter < tokens.length && running){
counter++;
}
return getSymb();
}
function getSymb(){
return tokens[counter];
}
function peekAhead(x){
var y = counter + 1;
var curr = tokens[y];
while (x > 0 && running){
curr = tokens[y];
if (curr !== " "){
x--;
}
y++;
}
return curr;
}
function peek1(){
return peekAhead(1);
}
function peek2(){
return peekAhead(2);
}
function peek3(){
return peekAhead(3);
}
function throwError(){
console.log("UNEXPECTED SYMBOL");
counter = tokens.length;
running = false;
}
function isSelfClosing(n){
for (var i = 0; i < selfClosingTags.length; i++){
if(selfClosingTags[i] == n){
return true;
}
}
return false;
}
function compileAttribute(){
var out = {};
out.name = getSymb();
out.value = "";
//This attribute has an equals
if(peek1() == "="){
getNext();
getNext();
//Get rid of quote marks
if(getSymb() == '"' || getSymb() == "'") {
var mark = getSymb();
getNext();
//Get rid of quote marks
while(getSymb() != mark && counter < tokens.length && running) {
out.value += tokens[counter];
counter++;
}
} else{
out.value = getSymb();
}
}
getNext();
return out;
}
function compileText(name){
var output = "";
var obj = {};
obj.name = "text";
while(counter + 1 < tokens.length && (peek1() != "/" && peek2() != name) && getSymb() != "<" && running){
output += tokens[counter];
counter++;
}
obj.value = output;
return obj;
}
function compileBlock(){
var obj = {};
if(getSymb() != "<"){
//Throw an error if the symbol is unexpected
throwError();
}
if(peek1().toLowerCase() == "style"){
while(tokens[counter] !== ">"){
counter++;
}
getNext();
var output = "";
while(counter + 2 < tokens.length && !(tokens[counter] === "<" && tokens[counter + 1] === "/" && tokens[counter + 2].toLowerCase() === "style" && running)){
output += tokens[counter];
counter++;
}
getNext();
getNext();
getNext();
getNext();
var obj = {"name" : "style", "attributes" : [], "innerElements" : [], "value" : output};
return obj;
}
//Read comment or doctype
if(peek1() == "!"){
getNext();
// !
getNext();
// - or doctype
if(getSymb().toLowerCase() == "doctype"){
while(getSymb() !== ">"){
getNext();
}
var obj = {"name" : "doctype", "attributes" : [], "innerElements" : [], "value" : "html"};
return obj;
}
getNext();
// -
getNext();
var comment = "";
while(counter < tokens.length && running){
if(getSymb() == "-" && peek1() == "-" && peek2() == ">"){
getNext();
getNext();
getNext();
var obj = {};
obj.name = "comment";
obj.attributes = [];
obj.innerElements = [];
obj.value = comment;
return obj;
}
//Add to the comment string
comment += tokens[counter];
counter++;
}
}
var name = getNext();
obj.name = name;
obj.attributes = [];
getNext();
while(getSymb() != ">" && getSymb() != "/" && running){
obj.attributes.push(compileAttribute());
}
//Self-closing tag with closing slash
if(getSymb() == "/"){
getNext();
}
//Move away from the > or the
getNext();
obj.innerElements = [];
if(isSelfClosing(name)) {
return obj;
}
while(peek1() != "/" && peek2() != name){
if(getSymb() == "<"){
obj.innerElements.push(compileBlock());
} else{
obj.innerElements.push(compileText(name));
}
}
//Dispose of the closing tag, if there is one!
if (getSymb() == "<"){
getNext();
if (getSymb() == "/"){
getNext();
if (getSymb() == name){
getNext();
if (getSymb() == ">"){
getNext();
}
}
}
}
return obj;
}
while(tokens[counter] != null && running){
if(getSymb() == "<"){
output.push(compileBlock());
} else{
output.push(compileText(""));
}
getNext();
}
if(!running){
return false;
}
return output;
};