-
-
Notifications
You must be signed in to change notification settings - Fork 274
/
templateparser.go
126 lines (107 loc) · 3.42 KB
/
templateparser.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
package parser
import (
"fmt"
"github.com/a-h/parse"
)
// TemplateExpression.
// TemplateExpression.
// templ Func(p Parameter) {
// templ (data Data) Func(p Parameter) {
// templ (data []string) Func(p Parameter) {
type templateExpression struct {
Expression Expression
}
var templateExpressionParser = parse.Func(func(pi *parse.Input) (r templateExpression, ok bool, err error) {
start := pi.Index()
if !peekPrefix(pi, "templ ") {
return r, false, nil
}
// Once we have the prefix, everything to the brace is Go.
// e.g.
// templ (x []string) Test() {
// becomes:
// func (x []string) Test() templ.Component {
if _, r.Expression, err = parseTemplFuncDecl(pi); err != nil {
return r, false, err
}
// Eat " {\n".
if _, ok, err = parse.All(openBraceWithOptionalPadding, parse.StringFrom(parse.Optional(parse.NewLine))).Parse(pi); err != nil || !ok {
err = parse.Error("templ: malformed templ expression, expected `templ functionName() {`", pi.PositionAt(start))
return
}
return r, true, nil
})
const (
unterminatedMissingCurly = `unterminated (missing closing '{\n') - https://templ.guide/syntax-and-usage/statements#incomplete-statements`
unterminatedMissingEnd = `missing end (expected '}') - https://templ.guide/syntax-and-usage/statements#incomplete-statements`
)
// Template node (element, call, if, switch, for, whitespace etc.)
func newTemplateNodeParser[TUntil any](until parse.Parser[TUntil], untilName string) templateNodeParser[TUntil] {
return templateNodeParser[TUntil]{
until: until,
untilName: untilName,
}
}
type templateNodeParser[TUntil any] struct {
until parse.Parser[TUntil]
untilName string
}
var rawElements = parse.Any[Node](styleElement, scriptElement)
var templateNodeParsers = []parse.Parser[Node]{
docType, // <!DOCTYPE html>
htmlComment, // <!--
goComment, // // or /*
rawElements, // <text>, <>, or <style> element (special behaviour - contents are not parsed).
element, // <a>, <br/> etc.
ifExpression, // if {}
forExpression, // for {}
switchExpression, // switch {}
callTemplateExpression, // {! TemplateName(a, b, c) }
templElementExpression, // @TemplateName(a, b, c) { <div>Children</div> }
childrenExpression, // { children... }
stringExpression, // { "abc" }
whitespaceExpression, // { " " }
textParser, // anything & everything accepted...
}
func (p templateNodeParser[T]) Parse(pi *parse.Input) (op Nodes, ok bool, err error) {
for {
// Check if we've reached the end.
if p.until != nil {
start := pi.Index()
_, ok, err = p.until.Parse(pi)
if err != nil {
return
}
if ok {
pi.Seek(start)
return op, true, nil
}
}
// Attempt to parse a node.
// Loop through the parsers and try to parse a node.
var matched bool
for _, p := range templateNodeParsers {
var node Node
node, matched, err = p.Parse(pi)
if err != nil {
return Nodes{}, false, err
}
if matched {
op.Nodes = append(op.Nodes, node)
break
}
}
if matched {
continue
}
if p.until == nil {
// In this case, we're just reading as many nodes as we can until we can't read any more.
// If we've reached here, we couldn't find a node.
// The element parser checks the final node returned to make sure it's the expected close tag.
break
}
err = fmt.Errorf("%v not found", p.untilName)
return
}
return op, true, nil
}