-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgrammar.js
496 lines (455 loc) · 14.2 KB
/
grammar.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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
const GO = require("tree-sitter-go/grammar")
// NOTE(vincent): we base this grammar on the Go grammar because a templ file is basically a Go file except for components and css expressions.
//
// If you see a rule mentioned below but do _not_ see it in the rules, go look at the Go grammar.
module.exports = grammar(GO, {
name: 'templ',
externals: $ => [
$.css_property_value,
$.element_text,
$.element_comment,
$.style_element_text,
$.script_block_text,
$.script_element_text,
$.switch_element_text,
],
conflicts: ($, original) => [
...original,
[$._expression, $.dynamic_class_attribute_value],
],
rules: {
_top_level_declaration: ($, original) => choice(
original,
$.component_declaration,
$.css_declaration,
$.script_declaration,
),
// This matches a templ expression:
//
// <h1>{ title }</h1>
//
// Note that we use $._expression which is from the Go grammar.
expression: $ => seq(
'{',
optional($._expression),
'}',
),
//
// Component stuff
//
// This matches the entire component:
//
// templ Name(a int, b string, ...) {}
//
// Or returned from a method:
//
// templ (a Foobar) Name(a int, b string, ...) {}
//
// It can also use generics:
//
// templ Name[V WithName](objects []V) {}
//
// Note that we use $.parameter_list and $.type_parameter_list which are from the Go grammar.
component_declaration: $ => seq(
'templ',
optional(
field('receiver', $.parameter_list)
),
field('name', $._component_identifier),
optional(
field('type_parameters', $.type_parameter_list),
),
$.parameter_list,
$.component_block,
),
// This matches block of a component.
component_block: $ => seq(
'{',
repeat($._component_node),
'}',
),
_component_node: $ => choice(
$.element,
$.style_element,
$.script_element,
$.component_if_statement,
$.component_for_statement,
$.component_switch_statement,
$.component_import,
$.rawgo_block,
$.component_render,
$.component_children_expression,
$.expression,
$.element_text,
$.element_comment,
prec.right(1, $.comment),
),
_switch_component_node: $ => choice(
$.element,
$.style_element,
$.script_element,
$.component_if_statement,
$.component_for_statement,
$.component_switch_statement,
$.component_import,
$.rawgo_block,
$.component_render,
$.component_children_expression,
$.expression,
alias($.switch_element_text, $.element_text),
$.element_comment,
prec.right(1, $.comment),
),
// This matches an if statement in a component block.
//
// Based on the $.if_statement rule of the Go grammar
// We can't directly use the Go grammar because it uses $.block and we need to use our $.component_block
component_if_statement: $ => seq(
'if',
optional(seq(
field('initializer', $._simple_statement),
';'
)),
field('condition', $._expression),
field('consequence', $.component_block),
optional(seq(
'else',
field('alternative', choice(
$.component_block,
$.component_if_statement)
)
))
),
// This matches a for statement in a component block.
//
// Based on the $.for_statement rule of the Go grammar
// We can't directly use the Go grammar because it uses $.block and we need to use our $.component_block
component_for_statement: $ => seq(
'for',
optional(choice($._expression, $.for_clause, $.range_clause)),
field('body', $.component_block)
),
// This matches a switch statement in a component block.
//
// Based on the $.expression_switch_statement rule of the Go grammar
component_switch_statement: $ => prec.right(seq(
'switch',
optional(seq(
field('initializer', $._simple_statement),
';'
)),
field('value', optional($._expression)),
'{',
repeat(choice(
$.component_switch_expression_case,
$.component_switch_default_case,
)),
'}',
)),
component_switch_expression_case: $ => prec.right(seq(
'case',
field('value', $.expression_list),
':',
repeat($._switch_component_node),
)),
component_switch_default_case: $ => prec.right(seq(
'default',
':',
repeat($._switch_component_node),
)),
// This matches an import statement:
//
// @Foobar(a, b, c)
// @Foobar(a, b, c) { ... }
// @pkg.Foobar(a, b, c)
// @pkg.Foobar(a, b, c) { ... }
// @pkg.Foo.Bar(a, b, c)
// @pkg.Foo.Bar(a, b, c) { ... }
// @pkg.Foo{}.Bar(a, b, c)
// @pkg.Foo{}.Bar(a, b, c) { ... }
//
// Note that we use $._package_identifier and $.argument_list which are from the Go grammar.
component_import: $ => prec.right(1, seq(
'@',
optional(seq(
field('package', $._package_identifier),
'.',
)),
field('name', $._component_member),
repeat(seq(
'.',
field('name', $._component_member)
)),
optional(field('body', $.component_block)),
)),
_component_member: $ => choice(
seq(
field('name', $._component_identifier),
field('body', $.literal_value)
),
seq(
field('name', $._component_identifier),
field('arguments', $.argument_list)
),
prec.right(-1, $._component_identifier)
),
// This matches a render statement:
//
// {! myComponent }
// {! Component(foo, bar) }
//
// See https://templ.guide/syntax-and-usage/template-composition
component_render: $ => seq(
'{!',
field('expression', $._expression),
'}'
),
// This matches a children expression:
//
// { children... }
//
// See https://templ.guide/syntax-and-usage/template-composition
component_children_expression: $ => seq(
'{',
'children...',
'}'
),
// a templ element, which is basically a HTML node
element: $ => choice(
seq(
$.tag_start,
repeat($._component_node),
$.tag_end,
),
$.self_closing_tag,
$.doctype,
),
tag_start: $ => seq(
'<',
field('name', $.element_identifier),
repeat($._attribute),
'>',
),
tag_end: $ => seq(
'</',
field('name', $.element_identifier),
'>',
),
self_closing_tag: $ => seq(
'<',
field('name', $.element_identifier),
repeat($._attribute),
'/>',
),
doctype: $ => seq(
'<!',
field('name', $.element_identifier),
'html',
'>'
),
style_element: $ => choice(
seq(
$.style_tag_start,
repeat($.style_element_text),
$.style_tag_end,
),
$.self_closing_style_tag,
),
style_tag_start: $ => seq(
'<',
'style',
repeat($._attribute),
'>'
),
style_tag_end: $ => seq(
'</',
'style',
'>',
),
self_closing_style_tag: $ => seq(
'<',
'style',
repeat($._attribute),
'/>',
),
_attribute: $ => choice(
$.attribute,
$.spread_attributes,
$.conditional_attribute_if_statement,
),
attribute: $ => seq(
field('name', $.attribute_name),
optional(seq(
'=',
field('value', choice(
$.expression,
$.attribute_value,
$.quoted_attribute_value,
$.dynamic_class_attribute_value,
)),
)),
),
// This matches spread attributes.
// See https://templ.guide/syntax-and-usage/attributes#spread-attributes
//
// <div
// disabled
// { attrs... }
// </div>
//
// Or
//
// <hr
// if shouldBeUsed {
// { attrs... }
// }
// />
//
spread_attributes: $ => seq(
'{',
field('name', $._expression),
'...',
'}',
),
conditional_attribute_block: $ => seq(
'{',
'\n',
repeat(choice(
$.attribute,
$.spread_attributes,
)),
'}',
),
conditional_attribute_if_statement: $ => seq(
token(prec(10, 'if')),
optional(seq(
field('initializer', $._simple_statement),
';'
)),
field('condition', $._expression),
field('consequence', $.conditional_attribute_block),
optional(seq(
token(prec(10, 'else')),
field('alternative', choice(
$.conditional_attribute_block,
$.conditional_attribute_if_statement,
)),
)),
),
// CSS stuff
css_declaration: $ => seq(
'css',
field('name', $._css_identifier),
$.parameter_list,
$._css_block,
),
_css_block: $ => seq(
'{',
repeat($.css_property),
'}',
),
css_property: $ => seq(
field('name', $.css_property_name),
':',
field('value', choice(
$.expression,
$.css_property_value
)),
';'
),
css_property_name: $ => /[a-zA-Z\-]+/,
// This matches a dynamic class attribute.
// See https://templ.guide/syntax-and-usage/css-style-management#dynamic-classes
//
// <div class={ `foo`, templ.SafeCSS(`color: red`), templ.KV("is-primary", true), myCssClass() }
//
dynamic_class_attribute_value: $ => prec(-1, seq(
'{',
seq(
commaSep(choice(
$._string_literal,
$._expression,
)),
optional(','),
),
'}',
)),
// JavaScript stuff
script_declaration: $ => seq(
'script',
field('name', $._script_identifier),
$.parameter_list,
$.script_block,
),
script_block: $ => seq(
'{',
optional($.script_block_text),
'}',
),
script_element: $ => choice(
seq(
'<',
field('name', 'script'),
repeat($.attribute),
'>',
optional($.script_element_text),
'</',
'script',
'>'
),
seq(
'<',
field('name', 'script'),
repeat($.attribute),
'/>',
),
),
// rawgo block
// https://templ.guide/syntax-and-usage/raw-go
// Example:
// package main
//
// templ nameList(items []Item) {
// {{ first := items[0] }}
// <p>
// { first.Name }
// </p>
// }
rawgo_block: $ => seq(
'{{',
optional($._statement_list),
'}}',
),
//
package_identifier: $ => alias($.identifier, $.package_identifier),
_component_identifier: $ => alias($.identifier, $.component_identifier),
_css_identifier: $ => alias($.identifier, $.css_identifier),
_script_identifier: $ => alias($.identifier, $.script_identifier),
element_identifier: $ => /[a-zA-Z0-9\-]+/,
// Taken from https://github.com/tree-sitter/tree-sitter-html/blob/master/grammar.js
attribute_name: _ => /[^<>"'/=\s]+/,
attribute_value: _ => /[^{}<>"'=\s]+/,
quoted_attribute_value: $ => choice(
seq('\'', optional(alias(/[^']+/, $.attribute_value)), '\''),
seq('"', optional(alias(/[^"]+/, $.attribute_value)), '"'),
),
text: _ => /[^<>&{}\s]([^<>&{}]*[^<>&\s{}])?/,
// Taken from https://github.com/tree-sitter/tree-sitter-go/blob/master/grammar.js
literal_value: $ => seq(
'{',
optional(
seq(
commaSep(choice($.literal_element, $.keyed_element)),
optional(','))),
'}',
),
literal_element: $ => choice($._expression, $.literal_value),
},
});
// Taken from https://github.com/tree-sitter/tree-sitter-go/blob/master/grammar.js#L909-L915
function commaSep1(rule) {
return seq(rule, repeat(seq(',', rule)))
}
function commaSep(rule) {
return optional(commaSep1(rule))
}