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
|
package tuigen
import (
"strings"
"testing"
)
func TestGenerator_MountKeyExpressions(t *testing.T) {
type tc struct {
input string
wantContains []string
}
tests := map[string]tc{
"slice loop with explicit index": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for i, item := range c.items {
<markdown source={item} />
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, i), func() tui.Component {",
},
},
"slice loop with discarded index uses synthetic variable": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, item := range c.items {
<markdown source={item} />
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, __idx_0), func() tui.Component {",
},
},
"map loop keys by the map key (issue 92)": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for name, doc := range c.docs {
<markdown source={doc} />
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, name), func() tui.Component {",
},
},
"nested loops pass both loop keys": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for i, row := range c.rows {
for j, item := range row {
<markdown source={item} />
}
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, i, j), func() tui.Component {",
},
},
"standalone component after loop keeps plain site index": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for i, item := range c.items {
<markdown source={item} />
}
<textarea onSubmit={c.submit} />
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, i), func() tui.Component {",
"app.MountPersistent(c, 1, func() tui.Component {",
},
},
"key attribute replaces the innermost loop key with user identity": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, item := range c.items {
<markdown key={item.ID} source={item.Text} />
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, item.ID), func() tui.Component {",
},
},
"key attribute in nested loop is scoped to the innermost loop": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for i, group := range c.groups {
for _, item := range group {
<markdown key={item.ID} source={item.Text} />
}
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, i, item.ID), func() tui.Component {",
},
},
"key attribute still drives RefMap.Put alongside mount identity": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, item := range c.items {
<textarea ref={c.areas} key={item.ID} placeholder={item.Name} />
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, item.ID), func() tui.Component {",
"c.areas.Put(item.ID, __tui_",
},
},
"standalone component with key uses sweepable Mount": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
<markdown key={c.selectedDoc} source={c.body} />
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, c.selectedDoc), func() tui.Component {",
},
},
"struct component call in loop": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for i, item := range c.items {
@Widget(item)
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, i), func() tui.Component {",
},
},
"keyed wrapper div keys struct component call": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, item := range c.items {
<div key={item.ID}>
@ChatMessage(item)
</div>
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, item.ID), func() tui.Component {",
},
},
"keyed wrapper outside inner loop prefixes inner loop keys": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, group := range c.groups {
<div key={group.ID}>
for _, item := range group.Items {
@Widget(item)
}
</div>
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, group.ID, __idx_1), func() tui.Component {",
},
},
"component element inherits wrapper key": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, item := range c.items {
<div key={item.ID}>
<textarea placeholder={item.Name} />
</div>
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, item.ID), func() tui.Component {",
},
},
"own key composes after inherited wrapper key": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, item := range c.items {
<div key={item.ID}>
<markdown key={item.Sub} source={item.Text} />
</div>
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, item.ID, item.Sub), func() tui.Component {",
},
},
"nested keyed wrappers compose": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div key={c.userID}>
<div key={c.tabID}>
<textarea placeholder="notes" />
</div>
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, c.userID, c.tabID), func() tui.Component {",
},
},
"let-bound keyed wrapper keys descendants": {
input: `package x
type app struct{}
templ (c *app) Render() {
label := <div key={c.activeID}>
<textarea placeholder="notes" />
</div>
<div>{label}</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, c.activeID), func() tui.Component {",
},
},
"modal children inherit the modal's own key": {
input: `package x
type app struct{}
templ (c *app) Render() {
<modal key={c.sessionID} open={c.show}>
<textarea placeholder="notes" />
</modal>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, c.sessionID), func() tui.Component {",
"app.Mount(c, tui.MountKey(1, c.sessionID), func() tui.Component {",
},
},
"keyed wrapper inside conditional": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for _, item := range c.items {
if item.Visible {
<div key={item.ID}>
<textarea placeholder={item.Name} />
</div>
}
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, item.ID), func() tui.Component {",
},
},
"sibling after keyed wrapper falls back to loop key": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div>
for i, item := range c.items {
<div key={item.ID}>
<textarea placeholder={item.Name} />
</div>
<markdown source={item.Text} />
}
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, item.ID), func() tui.Component {",
"app.Mount(c, tui.MountKey(1, i), func() tui.Component {",
},
},
"standalone keyed wrapper uses sweepable Mount": {
input: `package x
type app struct{}
templ (c *app) Render() {
<div key={c.activeID}>
<textarea placeholder="notes" />
</div>
}`,
wantContains: []string{
"app.Mount(c, tui.MountKey(0, c.activeID), func() tui.Component {",
},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
output, err := parseAndGenerateSkipImports("test.gsx", tt.input)
if err != nil {
t.Fatalf("generation failed: %v", err)
}
code := string(output)
for _, want := range tt.wantContains {
if !strings.Contains(code, want) {
t.Errorf("output missing %q\nGot:\n%s", want, code)
}
}
})
}
}
|