-
-
Notifications
You must be signed in to change notification settings - Fork 273
/
types.go
1204 lines (1080 loc) · 28.5 KB
/
types.go
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package parser
import (
"bytes"
"errors"
"fmt"
"go/format"
"io"
"strings"
"unicode"
"github.com/a-h/parse"
)
// package parser
//
// import "strings"
// import strs "strings"
//
// css AddressLineStyle() {
// background-color: #ff0000;
// color: #ffffff;
// }
//
// templ RenderAddress(addr Address) {
// <div style={ AddressLineStyle() }>{ addr.Address1 }</div>
// <div>{ addr.Address2 }</div>
// <div>{ addr.Address3 }</div>
// <div>{ addr.Address4 }</div>
// }
//
// templ Render(p Person) {
// <div>
// <div>{ p.Name() }</div>
// <a href={ p.URL }>{ strings.ToUpper(p.Name()) }</a>
// <div>
// if p.Type == "test" {
// <span>{ "Test user" }</span>
// } else {
// <span>{ "Not test user" }</span>
// }
// for _, v := range p.Addresses {
// {! call RenderAddress(v) }
// }
// </div>
// </div>
// }
// Source mapping to map from the source code of the template to the
// in-memory representation.
type Position struct {
Index int64
Line uint32
Col uint32
}
func (p Position) String() string {
return fmt.Sprintf("line %d, col %d (index %d)", p.Line, p.Col, p.Index)
}
// NewPosition initialises a position.
func NewPosition(index int64, line, col uint32) Position {
return Position{
Index: index,
Line: line,
Col: col,
}
}
// NewExpression creates a Go expression.
func NewExpression(value string, from, to parse.Position) Expression {
return Expression{
Value: value,
Range: Range{
From: Position{
Index: int64(from.Index),
Line: uint32(from.Line),
Col: uint32(from.Col),
},
To: Position{
Index: int64(to.Index),
Line: uint32(to.Line),
Col: uint32(to.Col),
},
},
}
}
// NewRange creates a Range expression.
func NewRange(from, to parse.Position) Range {
return Range{
From: Position{
Index: int64(from.Index),
Line: uint32(from.Line),
Col: uint32(from.Col),
},
To: Position{
Index: int64(to.Index),
Line: uint32(to.Line),
Col: uint32(to.Col),
},
}
}
// Range of text within a file.
type Range struct {
From Position
To Position
}
// Expression containing Go code.
type Expression struct {
Value string
Range Range
}
type TemplateFile struct {
// Header contains comments or whitespace at the top of the file.
Header []TemplateFileGoExpression
// Package expression.
Package Package
// Nodes in the file.
Nodes []TemplateFileNode
}
func (tf TemplateFile) Write(w io.Writer) error {
for _, n := range tf.Header {
if err := n.Write(w, 0); err != nil {
return err
}
}
var indent int
if err := tf.Package.Write(w, indent); err != nil {
return err
}
if _, err := io.WriteString(w, "\n\n"); err != nil {
return err
}
for i := 0; i < len(tf.Nodes); i++ {
if err := tf.Nodes[i].Write(w, indent); err != nil {
return err
}
if _, err := io.WriteString(w, getNodeWhitespace(tf.Nodes, i)); err != nil {
return err
}
}
return nil
}
func getNodeWhitespace(nodes []TemplateFileNode, i int) string {
if i == len(nodes)-1 {
return "\n"
}
if _, nextIsTemplate := nodes[i+1].(HTMLTemplate); nextIsTemplate {
if e, isGo := nodes[i].(TemplateFileGoExpression); isGo && endsWithComment(e.Expression.Value) {
return "\n"
}
}
return "\n\n"
}
func endsWithComment(s string) bool {
lineSlice := strings.Split(s, "\n")
return strings.HasPrefix(lineSlice[len(lineSlice)-1], "//")
}
// TemplateFileNode can be a Template, CSS, Script or Go.
type TemplateFileNode interface {
IsTemplateFileNode() bool
Write(w io.Writer, indent int) error
}
// TemplateFileGoExpression within a TemplateFile
type TemplateFileGoExpression struct {
Expression Expression
BeforePackage bool
}
func (exp TemplateFileGoExpression) IsTemplateFileNode() bool { return true }
func (exp TemplateFileGoExpression) Write(w io.Writer, indent int) error {
in := exp.Expression.Value
if exp.BeforePackage {
in += "\\\\formatstring\npackage p\n\\\\formatstring"
}
data, err := format.Source([]byte(in))
if err != nil {
return writeIndent(w, indent, exp.Expression.Value)
}
if exp.BeforePackage {
data = bytes.TrimSuffix(data, []byte("\\\\formatstring\npackage p\n\\\\formatstring"))
}
_, err = w.Write(data)
return err
}
func writeLinesIndented(w io.Writer, level int, s string) (err error) {
indent := strings.Repeat("\t", level)
lines := strings.Split(s, "\n")
indented := strings.Join(lines, "\n"+indent)
if _, err = io.WriteString(w, indent); err != nil {
return err
}
_, err = io.WriteString(w, indented)
if err != nil {
return
}
return
}
func writeIndent(w io.Writer, level int, s ...string) (err error) {
indent := strings.Repeat("\t", level)
if _, err = io.WriteString(w, indent); err != nil {
return err
}
for _, ss := range s {
_, err = io.WriteString(w, ss)
if err != nil {
return
}
}
return
}
type Package struct {
Expression Expression
}
func (p Package) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, p.Expression.Value)
}
// Whitespace.
type Whitespace struct {
Value string
}
func (ws Whitespace) IsNode() bool { return true }
func (ws Whitespace) Write(w io.Writer, indent int) error {
if ws.Value == "" || !strings.Contains(ws.Value, "\n") {
return nil
}
// https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Whitespace
// - All spaces and tabs immediately before and after a line break are ignored.
// - All tab characters are handled as space characters.
// - Line breaks are converted to spaces.
// Any space immediately following another space (even across two separate inline elements) is ignored.
// Sequences of spaces at the beginning and end of an element are removed.
// Notes: Since we only have whitespace in this node, we can strip anything that isn't a line break.
// Since any space following another space is ignored, we can collapse to a single rule.
// So, the rule is... if there's a newline, it becomes a single space, or it's stripped.
// We have to remove the start and end space elsewhere.
_, err := io.WriteString(w, " ")
return err
}
// CSS definition.
//
// css Name() {
// color: #ffffff;
// background-color: { constants.BackgroundColor };
// background-image: url('./somewhere.png');
// }
type CSSTemplate struct {
Name string
Expression Expression
Properties []CSSProperty
}
func (css CSSTemplate) IsTemplateFileNode() bool { return true }
func (css CSSTemplate) Write(w io.Writer, indent int) error {
source := formatFunctionArguments(css.Expression.Value)
if err := writeIndent(w, indent, "css ", string(source), " {\n"); err != nil {
return err
}
for _, p := range css.Properties {
if err := p.Write(w, indent+1); err != nil {
return err
}
}
if err := writeIndent(w, indent, "}"); err != nil {
return err
}
return nil
}
// CSSProperty is a CSS property and value pair.
type CSSProperty interface {
IsCSSProperty() bool
Write(w io.Writer, indent int) error
}
// color: #ffffff;
type ConstantCSSProperty struct {
Name string
Value string
}
func (c ConstantCSSProperty) IsCSSProperty() bool { return true }
func (c ConstantCSSProperty) Write(w io.Writer, indent int) error {
if err := writeIndent(w, indent, c.String(false)); err != nil {
return err
}
return nil
}
func (c ConstantCSSProperty) String(minified bool) string {
sb := new(strings.Builder)
sb.WriteString(c.Name)
if minified {
sb.WriteString(":")
} else {
sb.WriteString(": ")
}
sb.WriteString(c.Value)
sb.WriteString(";")
if !minified {
sb.WriteString("\n")
}
return sb.String()
}
// background-color: { constants.BackgroundColor };
type ExpressionCSSProperty struct {
Name string
Value StringExpression
}
func (c ExpressionCSSProperty) IsCSSProperty() bool { return true }
func (c ExpressionCSSProperty) Write(w io.Writer, indent int) error {
if err := writeIndent(w, indent, c.Name, ": "); err != nil {
return err
}
if err := c.Value.Write(w, 0); err != nil {
return err
}
if _, err := w.Write([]byte(";\n")); err != nil {
return err
}
return nil
}
// <!DOCTYPE html>
type DocType struct {
Value string
}
func (dt DocType) IsNode() bool { return true }
func (dt DocType) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, "<!DOCTYPE ", dt.Value, ">")
}
// HTMLTemplate definition.
//
// templ Name(p Parameter) {
// if ... {
// <Element></Element>
// }
// }
type HTMLTemplate struct {
Expression Expression
Children []Node
}
func (t HTMLTemplate) IsTemplateFileNode() bool { return true }
func (t HTMLTemplate) Write(w io.Writer, indent int) error {
source := formatFunctionArguments(t.Expression.Value)
if err := writeIndent(w, indent, "templ ", string(source), " {\n"); err != nil {
return err
}
if err := writeNodesIndented(w, indent+1, t.Children); err != nil {
return err
}
if err := writeIndent(w, indent, "}"); err != nil {
return err
}
return nil
}
// TrailingSpace defines the whitespace that may trail behind the close of an element, a
// text node, or string expression.
type TrailingSpace string
const (
SpaceNone TrailingSpace = ""
SpaceHorizontal TrailingSpace = " "
SpaceVertical TrailingSpace = "\n"
)
var ErrNonSpaceCharacter = errors.New("non space character found")
func NewTrailingSpace(s string) (ts TrailingSpace, err error) {
var hasHorizontalSpace bool
for _, r := range s {
if r == '\n' {
return SpaceVertical, nil
}
if unicode.IsSpace(r) {
hasHorizontalSpace = true
continue
}
return ts, ErrNonSpaceCharacter
}
if hasHorizontalSpace {
return SpaceHorizontal, nil
}
return SpaceNone, nil
}
type Nodes struct {
Nodes []Node
}
// A Node appears within a template, e.g. an StringExpression, Element, IfExpression etc.
type Node interface {
IsNode() bool
// Write out the string.
Write(w io.Writer, indent int) error
}
type CompositeNode interface {
Node
ChildNodes() []Node
}
type WhitespaceTrailer interface {
Trailing() TrailingSpace
}
var (
_ WhitespaceTrailer = Element{}
_ WhitespaceTrailer = Text{}
_ WhitespaceTrailer = StringExpression{}
)
// Text node within the document.
type Text struct {
// Value is the raw HTML encoded value.
Value string
// TrailingSpace lists what happens after the text.
TrailingSpace TrailingSpace
}
func (t Text) Trailing() TrailingSpace {
return t.TrailingSpace
}
func (t Text) IsNode() bool { return true }
func (t Text) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, t.Value)
}
// <a .../> or <div ...>...</div>
type Element struct {
Name string
Attributes []Attribute
IndentAttrs bool
Children []Node
IndentChildren bool
TrailingSpace TrailingSpace
NameRange Range
}
func (e Element) Trailing() TrailingSpace {
return e.TrailingSpace
}
var voidElements = map[string]struct{}{
"area": {}, "base": {}, "br": {}, "col": {}, "command": {}, "embed": {}, "hr": {}, "img": {}, "input": {}, "keygen": {}, "link": {}, "meta": {}, "param": {}, "source": {}, "track": {}, "wbr": {},
}
// https://www.w3.org/TR/2011/WD-html-markup-20110113/syntax.html#void-element
func (e Element) IsVoidElement() bool {
_, ok := voidElements[e.Name]
return ok
}
func (e Element) hasNonWhitespaceChildren() bool {
for _, c := range e.Children {
if _, isWhitespace := c.(Whitespace); !isWhitespace {
return true
}
}
return false
}
var blockElements = map[string]struct{}{
"address": {}, "article": {}, "aside": {}, "body": {}, "blockquote": {}, "canvas": {}, "dd": {}, "div": {}, "dl": {}, "dt": {}, "fieldset": {}, "figcaption": {}, "figure": {}, "footer": {}, "form": {}, "h1": {}, "h2": {}, "h3": {}, "h4": {}, "h5": {}, "h6": {}, "head": {}, "header": {}, "hr": {}, "html": {}, "li": {}, "main": {}, "meta": {}, "nav": {}, "noscript": {}, "ol": {}, "p": {}, "pre": {}, "script": {}, "section": {}, "table": {}, "template": {}, "tfoot": {}, "turbo-stream": {}, "ul": {}, "video": {},
// Not strictly block but for the purposes of layout, they are.
"title": {}, "style": {}, "link": {}, "td": {}, "th": {}, "tr": {}, "br": {},
}
func (e Element) IsBlockElement() bool {
_, ok := blockElements[e.Name]
return ok
}
// Validate that no invalid expressions have been used.
func (e Element) Validate() (msgs []string, ok bool) {
// Validate that style attributes are constant.
for _, attr := range e.Attributes {
if exprAttr, isExprAttr := attr.(ExpressionAttribute); isExprAttr {
if strings.EqualFold(exprAttr.Name, "style") {
msgs = append(msgs, "invalid style attribute: style attributes cannot be a templ expression")
}
}
}
// Validate that script and style tags don't contain expressions.
if strings.EqualFold(e.Name, "script") || strings.EqualFold(e.Name, "style") {
if containsNonTextNodes(e.Children) {
msgs = append(msgs, "invalid node contents: script and style attributes must only contain text")
}
}
return msgs, len(msgs) == 0
}
func containsNonTextNodes(nodes []Node) bool {
for i := 0; i < len(nodes); i++ {
n := nodes[i]
switch n.(type) {
case Text:
continue
case Whitespace:
continue
default:
return true
}
}
return false
}
func (e Element) ChildNodes() []Node {
return e.Children
}
func (e Element) IsNode() bool { return true }
func (e Element) Write(w io.Writer, indent int) error {
if err := writeIndent(w, indent, "<", e.Name); err != nil {
return err
}
for i := 0; i < len(e.Attributes); i++ {
a := e.Attributes[i]
// Only the conditional attributes get indented.
var attrIndent int
if e.IndentAttrs {
if _, err := w.Write([]byte("\n")); err != nil {
return err
}
attrIndent = indent + 1
} else {
if _, err := w.Write([]byte(" ")); err != nil {
return err
}
}
if err := a.Write(w, attrIndent); err != nil {
return err
}
}
var closeAngleBracketIndent int
if e.IndentAttrs {
if _, err := w.Write([]byte("\n")); err != nil {
return err
}
closeAngleBracketIndent = indent
}
if e.hasNonWhitespaceChildren() {
if e.IndentChildren {
if err := writeIndent(w, closeAngleBracketIndent, ">\n"); err != nil {
return err
}
if err := writeNodesIndented(w, indent+1, e.Children); err != nil {
return err
}
if err := writeIndent(w, indent, "</", e.Name, ">"); err != nil {
return err
}
return nil
}
if err := writeIndent(w, closeAngleBracketIndent, ">"); err != nil {
return err
}
if err := writeNodesWithoutIndentation(w, e.Children); err != nil {
return err
}
if _, err := w.Write([]byte("</" + e.Name + ">")); err != nil {
return err
}
return nil
}
if e.IsVoidElement() {
if err := writeIndent(w, closeAngleBracketIndent, "/>"); err != nil {
return err
}
return nil
}
if err := writeIndent(w, closeAngleBracketIndent, "></", e.Name, ">"); err != nil {
return err
}
return nil
}
func writeNodesWithoutIndentation(w io.Writer, nodes []Node) error {
return writeNodes(w, 0, nodes, false)
}
func writeNodesIndented(w io.Writer, level int, nodes []Node) error {
return writeNodes(w, level, nodes, true)
}
func writeNodes(w io.Writer, level int, nodes []Node, indent bool) error {
startLevel := level
for i := 0; i < len(nodes); i++ {
_, isWhitespace := nodes[i].(Whitespace)
// Skip whitespace nodes.
if isWhitespace {
continue
}
if err := nodes[i].Write(w, level); err != nil {
return err
}
// Apply trailing whitespace if present.
trailing := SpaceVertical
if wst, isWhitespaceTrailer := nodes[i].(WhitespaceTrailer); isWhitespaceTrailer {
trailing = wst.Trailing()
}
// Put a newline after the last node in indentation mode.
if indent && ((nextNodeIsBlock(nodes, i) || i == len(nodes)-1) || shouldAlwaysBreakAfter(nodes[i])) {
trailing = SpaceVertical
}
switch trailing {
case SpaceNone:
level = 0
case SpaceHorizontal:
level = 0
case SpaceVertical:
level = startLevel
}
if _, err := w.Write([]byte(trailing)); err != nil {
return err
}
}
return nil
}
func shouldAlwaysBreakAfter(node Node) bool {
if el, isElement := node.(Element); isElement {
return strings.EqualFold(el.Name, "br") || strings.EqualFold(el.Name, "hr")
}
return false
}
func nextNodeIsBlock(nodes []Node, i int) bool {
if len(nodes)-1 < i+1 {
return false
}
return isBlockNode(nodes[i+1])
}
func isBlockNode(node Node) bool {
switch n := node.(type) {
case IfExpression:
return true
case SwitchExpression:
return true
case ForExpression:
return true
case Element:
return n.IsBlockElement() || n.IndentChildren
}
return false
}
type RawElement struct {
Name string
Attributes []Attribute
Contents string
}
func (e RawElement) IsNode() bool { return true }
func (e RawElement) Write(w io.Writer, indent int) error {
// Start.
if err := writeIndent(w, indent, "<", e.Name); err != nil {
return err
}
for i := 0; i < len(e.Attributes); i++ {
if _, err := w.Write([]byte(" ")); err != nil {
return err
}
a := e.Attributes[i]
// Don't indent the attributes, only the conditional attributes get indented.
if err := a.Write(w, 0); err != nil {
return err
}
}
if _, err := w.Write([]byte(">")); err != nil {
return err
}
// Contents.
if _, err := w.Write([]byte(e.Contents)); err != nil {
return err
}
// Close.
if _, err := w.Write([]byte("</" + e.Name + ">")); err != nil {
return err
}
return nil
}
type Attribute interface {
// Write out the string.
Write(w io.Writer, indent int) error
}
// <hr noshade/>
type BoolConstantAttribute struct {
Name string
NameRange Range
}
func (bca BoolConstantAttribute) String() string {
return bca.Name
}
func (bca BoolConstantAttribute) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, bca.String())
}
// href=""
type ConstantAttribute struct {
Name string
Value string
SingleQuote bool
NameRange Range
}
func (ca ConstantAttribute) String() string {
quote := `"`
if ca.SingleQuote {
quote = `'`
}
return ca.Name + `=` + quote + ca.Value + quote
}
func (ca ConstantAttribute) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, ca.String())
}
// noshade={ templ.Bool(...) }
type BoolExpressionAttribute struct {
Name string
Expression Expression
NameRange Range
}
func (bea BoolExpressionAttribute) String() string {
return bea.Name + `?={ ` + bea.Expression.Value + ` }`
}
func (bea BoolExpressionAttribute) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, bea.String())
}
// href={ ... }
type ExpressionAttribute struct {
Name string
Expression Expression
NameRange Range
}
func (ea ExpressionAttribute) String() string {
sb := new(strings.Builder)
_ = ea.Write(sb, 0)
return sb.String()
}
func (ea ExpressionAttribute) formatExpression() (exp []string) {
trimmed := strings.TrimSpace(ea.Expression.Value)
if !strings.Contains(trimmed, "\n") {
formatted, err := format.Source([]byte(trimmed))
if err != nil {
return []string{trimmed}
}
return []string{string(formatted)}
}
buf := bytes.NewBufferString("[]any{\n")
buf.WriteString(trimmed)
buf.WriteString("\n}")
formatted, err := format.Source(buf.Bytes())
if err != nil {
return []string{trimmed}
}
// Trim prefix and suffix.
lines := strings.Split(string(formatted), "\n")
if len(lines) < 3 {
return []string{trimmed}
}
// Return.
return lines[1 : len(lines)-1]
}
func (ea ExpressionAttribute) Write(w io.Writer, indent int) (err error) {
lines := ea.formatExpression()
if len(lines) == 1 {
return writeIndent(w, indent, ea.Name, `={ `, lines[0], ` }`)
}
if err = writeIndent(w, indent, ea.Name, "={\n"); err != nil {
return err
}
for _, line := range lines {
if err = writeIndent(w, indent, line, "\n"); err != nil {
return err
}
}
return writeIndent(w, indent, "}")
}
// <a { spread... } />
type SpreadAttributes struct {
Expression Expression
}
func (sa SpreadAttributes) String() string {
return `{ ` + sa.Expression.Value + `... }`
}
func (sa SpreadAttributes) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, sa.String())
}
// <a href="test" \
// if active {
// class="isActive"
// }
type ConditionalAttribute struct {
Expression Expression
Then []Attribute
Else []Attribute
}
func (ca ConditionalAttribute) String() string {
sb := new(strings.Builder)
_ = ca.Write(sb, 0)
return sb.String()
}
func (ca ConditionalAttribute) Write(w io.Writer, indent int) error {
if err := writeIndent(w, indent, "if "); err != nil {
return err
}
if _, err := w.Write([]byte(ca.Expression.Value)); err != nil {
return err
}
if _, err := w.Write([]byte(" {\n")); err != nil {
return err
}
{
indent++
for _, attr := range ca.Then {
if err := attr.Write(w, indent); err != nil {
return err
}
if _, err := w.Write([]byte("\n")); err != nil {
return err
}
}
indent--
}
if err := writeIndent(w, indent, "}"); err != nil {
return err
}
if len(ca.Else) == 0 {
return nil
}
// Write the else blocks.
if _, err := w.Write([]byte(" else {\n")); err != nil {
return err
}
{
indent++
for _, attr := range ca.Else {
if err := attr.Write(w, indent); err != nil {
return err
}
if _, err := w.Write([]byte("\n")); err != nil {
return err
}
}
indent--
}
if err := writeIndent(w, indent, "}"); err != nil {
return err
}
return nil
}
// GoComment.
type GoComment struct {
Contents string
Multiline bool
}
func (c GoComment) IsNode() bool { return true }
func (c GoComment) Write(w io.Writer, indent int) error {
if c.Multiline {
return writeIndent(w, indent, "/*", c.Contents, "*/")
}
return writeIndent(w, indent, "//", c.Contents)
}
// HTMLComment.
type HTMLComment struct {
Contents string
}
func (c HTMLComment) IsNode() bool { return true }
func (c HTMLComment) Write(w io.Writer, indent int) error {
return writeIndent(w, indent, "<!--", c.Contents, "-->")
}
// Nodes.
// CallTemplateExpression can be used to create and render a template using data.
// {! Other(p.First, p.Last) }
// or it can be used to render a template parameter.
// {! v }
type CallTemplateExpression struct {
// Expression returns a template to execute.
Expression Expression
}
func (cte CallTemplateExpression) IsNode() bool { return true }
func (cte CallTemplateExpression) Write(w io.Writer, indent int) error {
// Rewrite to new call syntax
return writeIndent(w, indent, `@`, cte.Expression.Value)
}
// TemplElementExpression can be used to create and render a template using data.
// @Other(p.First, p.Last)
// or it can be used to render a template parameter.
// @v
type TemplElementExpression struct {
// Expression returns a template to execute.
Expression Expression
// Children returns the elements in a block element.
Children []Node
}
func (tee TemplElementExpression) ChildNodes() []Node {
return tee.Children
}
func (tee TemplElementExpression) IsNode() bool { return true }
func (tee TemplElementExpression) Write(w io.Writer, indent int) error {
source, err := format.Source([]byte(tee.Expression.Value))
if err != nil {
source = []byte(tee.Expression.Value)
}
if err := writeLinesIndented(w, indent, "@"+string(source)); err != nil {
return err
}
if len(tee.Children) == 0 {
return nil
}
if _, err = io.WriteString(w, " {\n"); err != nil {
return err
}
if err := writeNodesIndented(w, indent+1, tee.Children); err != nil {
return err
}
if err := writeIndent(w, indent, "}"); err != nil {
return err
}
return nil
}
// ChildrenExpression can be used to rended the children of a templ element.
// { children ... }
type ChildrenExpression struct{}
func (ChildrenExpression) IsNode() bool { return true }
func (ChildrenExpression) Write(w io.Writer, indent int) error {
if err := writeIndent(w, indent, "{ children... }"); err != nil {
return err
}
return nil
}
// if p.Type == "test" && p.thing {
// }
type IfExpression struct {
Expression Expression
Then []Node