This repository has been archived by the owner on Aug 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathelements.go
353 lines (312 loc) · 7.72 KB
/
elements.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
package main
import "fmt"
type Elem struct {
// The myitcv.io/react Name of the element - not set directly, taken from
// the key of the elements map.
Name string
// React is an override for the React name of the element if it is otherwise
// not equal to the lowercase version of .Name
React string
// Dom is the name used by honnef.co/go/js/dom when referring to the underlying
// HTML element. Default is HTML{{.Name}}Element
Dom string
// HTML is an override for the HTML 5 spec name of the element if it is otherwise
// not equal to the lowercase version of .Name
HTML string
// Attributes maps the name of an attribute to the definition of an
// attribute.
Attributes map[string]*Attr
// NonBasic is true if honnef.co/go/js/dom does not declare a specific
// Element type.
NonBasic bool
// Templates lists the attribute templates this element should use as a
// base.
Templates []string
// NonHTML indicates this element should not automatically inherit the html
// attribute template
NonHTML bool
// Child indicates this element can take a single child of the provided type.
// Its use is exclusive with Children. No default value.
Child string
// Children indicates this element can take a multiple children of the provided
// type. Its use is exclusive with Child. Default is Element.
Children string
// EmptyElement indicates the element may not have any children
EmptyElement bool
// Implements is the list of special interface methods this element implements.
Implements []string
// SkipTests is an override on whether to not generate the boilerplate tests.
SkipTests bool
}
func (e *Elem) ChildParam() string {
if e.Child != "" {
return "child " + e.Child
} else if e.Children != "" {
return "children ..." + e.Children
}
return ""
}
func (e *Elem) ChildConvert() string {
if e.Children != "" && e.Children != "Element" {
return `
var elems []Element
for _, v := range children {
elems = append(elems, v)
}
`
}
return ""
}
func (e *Elem) ChildArg() string {
if e.Child != "" {
return "child"
} else if e.Children != "" {
if e.Children == "Element" {
return "children..."
} else {
return "elems..."
}
}
return ""
}
func (e *Elem) ChildrenReactType() string {
if e.Children[0] == '*' {
return "*react." + e.Children[1:]
}
return "react." + e.Children
}
func (e *Elem) HTMLAttributes() map[string]*Attr {
res := make(map[string]*Attr)
for n, a := range e.Attributes {
if a.NoHTML || a.NoReact || a.IsEvent || a.Name == "Ref" {
continue
}
res[n] = a
}
return res
}
type Attr struct {
// The myitcv.io/react Name of the attribute - not set directly, taken from
// the key of the elements map.
Name string
// React is an override for the React name of the attribute if it is otherwise
// not equal to the lower-initial version of .Name
React string
// HTML is an override for the HTML attribute name if it is otherwise not equal
// to the lowercase version of .Name
HTML string
// HTMLConvert is a function that must be called on a JSX-parsed value before
// assignment. Default is nothing.
HTMLConvert string
// Type is an override for the type of the attribute. The zero value implies
// string
Type string
// OmitEmpty indicates that no attribute should be set on the underlying React
// element if the zero value of the attribute is set.
OmitEmpty bool
// NoReact indicates that this attribute should not attempt to be mapped directly
// to an underlying React attribute.
NoReact bool
// NoHTML indicates this attribute does not have an HTML equivalent, and hence
// should not appear during parsing.
NoHTML bool
// IsEvent indicates that the attribute is an event.
IsEvent bool
}
func (a *Attr) Tag() string {
omitEmpty := ""
if a.OmitEmpty {
omitEmpty = ` react:"omitempty"`
}
return fmt.Sprintf("`js:\"%v\"%v`", a.React, omitEmpty)
}
func (a *Attr) HTMLConvertor(s string) string {
if a.HTMLConvert == "" {
return s
}
return fmt.Sprintf("%v(%v)", a.HTMLConvert, s)
}
// templates are the attribute templates to which elements can refer
var templates = map[string]map[string]*Attr{
"html": {
"AriaHasPopup": &Attr{React: "aria-haspopup", Type: "bool", HTML: "aria-haspopup"},
"AriaExpanded": &Attr{React: "aria-expanded", Type: "bool", HTML: "aria-expanded"},
"AriaLabelledBy": &Attr{React: "aria-labelledby", HTML: "aria-labelledby"},
"ClassName": &Attr{HTML: "class"},
"DangerouslySetInnerHTML": &Attr{Type: "*DangerousInnerHTML", NoHTML: true},
"DataSet": &Attr{Type: "DataSet", NoReact: true},
"ID": &Attr{OmitEmpty: true, React: "id"},
"Key": &Attr{OmitEmpty: true},
"Ref": &Attr{Type: "Ref"},
"Role": &Attr{},
"Style": &Attr{Type: "*CSS", HTMLConvert: "parseCSS"},
// Events
"OnChange": &Attr{Type: "OnChange", IsEvent: true},
"OnClick": &Attr{Type: "OnClick", IsEvent: true},
},
}
// elements is a map from the Go element name to the definition
var elements = map[string]*Elem{
"A": &Elem{
Dom: "HTMLAnchorElement",
Attributes: map[string]*Attr{
"Href": &Attr{},
"Target": &Attr{},
"Title": &Attr{},
},
},
"Abbr": &Elem{
Dom: "BasicHTMLElement",
},
"Article": &Elem{
Dom: "BasicHTMLElement",
},
"Aside": &Elem{
Dom: "BasicHTMLElement",
},
"B": &Elem{
Dom: "BasicHTMLElement",
},
"Br": &Elem{
Dom: "HTMLBRElement",
},
"Button": &Elem{
Attributes: map[string]*Attr{
"Type": &Attr{},
},
},
"Caption": &Elem{
SkipTests: true,
Dom: "BasicHTMLElement",
},
"Code": &Elem{
Dom: "BasicHTMLElement",
},
"Div": &Elem{},
"Em": &Elem{
Dom: "BasicHTMLElement",
},
"Footer": &Elem{
Dom: "BasicHTMLElement",
},
"Form": &Elem{},
"H1": &Elem{
Dom: "HTMLHeadingElement",
},
"H2": &Elem{
Dom: "HTMLHeadingElement",
},
"H3": &Elem{
Dom: "HTMLHeadingElement",
},
"H4": &Elem{
Dom: "HTMLHeadingElement",
},
"H5": &Elem{
Dom: "HTMLHeadingElement",
},
"H6": &Elem{
Dom: "HTMLHeadingElement",
},
"Header": &Elem{
Dom: "BasicHTMLElement",
},
"Hr": &Elem{
Dom: "HTMLHRElement",
EmptyElement: true,
},
"I": &Elem{
Dom: "BasicHTMLElement",
},
"IFrame": &Elem{
Attributes: map[string]*Attr{
"SrcDoc": &Attr{},
},
},
"Img": &Elem{
Dom: "HTMLImageElement",
Attributes: map[string]*Attr{
"Src": &Attr{},
"Alt": &Attr{},
},
},
"Input": &Elem{
Attributes: map[string]*Attr{
"Placeholder": &Attr{},
"Type": &Attr{},
"Value": &Attr{},
},
},
"Label": &Elem{
Attributes: map[string]*Attr{
"For": &Attr{
React: "htmlFor",
},
},
},
"Li": &Elem{
Dom: "HTMLLIElement",
Implements: []string{"RendersLi(*LiElem)"},
},
"Main": &Elem{
Dom: "BasicHTMLElement",
},
"Nav": &Elem{
Dom: "BasicHTMLElement",
},
"Option": &Elem{
Attributes: map[string]*Attr{
"Value": &Attr{},
},
},
"P": &Elem{
Dom: "HTMLParagraphElement",
},
"Pre": &Elem{},
"Select": &Elem{
Attributes: map[string]*Attr{
"Value": &Attr{},
},
Children: "*OptionElem",
},
"Span": &Elem{},
"Strike": &Elem{
Dom: "BasicHTMLElement",
React: "s",
HTML: "s",
},
"Sup": &Elem{
Dom: "BasicHTMLElement",
},
"Table": &Elem{},
"Tbody": &Elem{
SkipTests: true,
Dom: "BasicHTMLElement",
},
"Td": &Elem{
SkipTests: true,
Dom: "BasicHTMLElement",
},
"TextArea": &Elem{
Attributes: map[string]*Attr{
"Placeholder": &Attr{},
"Value": &Attr{},
},
},
"Th": &Elem{
SkipTests: true,
Dom: "BasicHTMLElement",
},
"Thead": &Elem{
SkipTests: true,
Dom: "BasicHTMLElement",
},
"Tr": &Elem{
SkipTests: true,
Dom: "BasicHTMLElement",
},
"Ul": &Elem{
Dom: "HTMLUListElement",
Children: "RendersLi",
},
}