gitstack

grindlemire/go-tui code browser

9.4 KB Go 413 lines 2026-06-03 ยท d15bb9f raw
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
package provider

import (
	"strings"
	"testing"

	"github.com/grindlemire/go-tui/internal/tuigen"
)

func newTestCompletionProvider(index ComponentIndex) *completionProvider {
	return &completionProvider{
		index:        index,
		goplsProxy:   &nilGoplsProxy{},
		virtualFiles: &nilVirtualFiles{},
	}
}

func TestCompletion_ElementTag(t *testing.T) {
	src := `package test

templ Page() {
	<
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	// Cursor right after <
	ctx := makeCtx(doc, NodeKindUnknown, "")
	ctx.Position = Position{Line: 3, Character: 2}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	if result == nil {
		t.Fatal("expected non-nil CompletionList")
	}

	// Should include element tags
	found := false
	for _, item := range result.Items {
		if item.Label == "div" {
			found = true
			if item.Kind != CompletionItemKindClass {
				t.Errorf("expected div to have kind Class, got %d", item.Kind)
			}
			break
		}
	}
	if !found {
		t.Error("expected 'div' in element completions")
	}
}

func TestCompletion_DSLKeywords(t *testing.T) {
	src := `package test

templ Page() {
	@
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	// Cursor right after @
	ctx := makeCtx(doc, NodeKindUnknown, "")
	ctx.Position = Position{Line: 3, Character: 2}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	if result == nil {
		t.Fatal("expected non-nil CompletionList")
	}

	// Should include DSL keywords
	keywords := map[string]bool{"for": false, "if": false, "let": false}
	for _, item := range result.Items {
		if _, ok := keywords[item.Label]; ok {
			keywords[item.Label] = true
		}
	}
	for kw, found := range keywords {
		if !found {
			t.Errorf("expected keyword %q in completions", kw)
		}
	}
}

func TestCompletion_ComponentCall(t *testing.T) {
	src := `package test

templ Page() {
	@
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	index.components["Header"] = &ComponentInfo{
		Name: "Header",
	}

	cp := newTestCompletionProvider(index)

	ctx := makeCtx(doc, NodeKindUnknown, "")
	ctx.Position = Position{Line: 3, Character: 2}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}

	found := false
	for _, item := range result.Items {
		if item.Label == "Header" {
			found = true
			if item.Kind != CompletionItemKindFunction {
				t.Errorf("expected Header to have kind Function, got %d", item.Kind)
			}
			break
		}
	}
	if !found {
		t.Error("expected 'Header' in component completions")
	}
}

func TestCompletion_Attributes(t *testing.T) {
	src := `package test

templ Page() {
	<div >
	</div>
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	// Simulate cursor inside element tag โ€” set InElement and AttrTag
	ctx := makeCtx(doc, NodeKindUnknown, "")
	ctx.Position = Position{Line: 3, Character: 6}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)
	ctx.InElement = true
	ctx.AttrTag = "div"

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	if result == nil {
		t.Fatal("expected non-nil CompletionList")
	}

	// Should include common attributes like "class", "id"
	foundClass := false
	foundID := false
	for _, item := range result.Items {
		if item.Label == "class" {
			foundClass = true
		}
		if item.Label == "id" {
			foundID = true
		}
	}
	if !foundClass {
		t.Error("expected 'class' in attribute completions")
	}
	if !foundID {
		t.Error("expected 'id' in attribute completions")
	}
}

func TestCompletion_TailwindClasses(t *testing.T) {
	src := `package test

templ Page() {
	<div class="flex-">
	</div>
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	// Cursor inside class attribute right after "flex-"
	ctx := makeCtx(doc, NodeKindTailwindClass, "flex-")
	ctx.Position = Position{Line: 3, Character: 18}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)
	ctx.InClassAttr = true

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	if result == nil {
		t.Fatal("expected non-nil CompletionList")
	}

	// Should include flex-col, flex-row
	foundCol := false
	for _, item := range result.Items {
		if item.Label == "flex-col" {
			foundCol = true
			if item.Kind != CompletionItemKindConstant {
				t.Errorf("expected flex-col to have kind Constant, got %d", item.Kind)
			}
			break
		}
	}
	if !foundCol {
		t.Error("expected 'flex-col' in tailwind completions")
	}
}

func TestCompletion_TailwindPrefixFilter(t *testing.T) {
	src := `package test

templ Page() {
	<div class="bord">
	</div>
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	ctx := makeCtx(doc, NodeKindTailwindClass, "bord")
	ctx.Position = Position{Line: 3, Character: 17}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)
	ctx.InClassAttr = true

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	if result == nil {
		t.Fatal("expected non-nil CompletionList")
	}

	// All items should start with "bord"
	for _, item := range result.Items {
		if !strings.HasPrefix(item.Label, "bord") {
			t.Errorf("expected item %q to start with 'bord'", item.Label)
		}
	}

	if len(result.Items) == 0 {
		t.Error("expected at least some border completions")
	}
}

func TestCompletion_EventHandlerAttributes(t *testing.T) {
	src := `package test

templ Page() {
	<div >
	</div>
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	ctx := makeCtx(doc, NodeKindUnknown, "")
	ctx.InElement = true
	ctx.AttrTag = "div"

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}

	// Check that event handler attributes are included
	foundOnFocus := false
	for _, item := range result.Items {
		if item.Label == "onFocus" {
			foundOnFocus = true
			break
		}
	}
	// onFocus should already be in div's attribute set (it's in eventAttrs())
	// so it appears via getAttributeCompletions
	if !foundOnFocus {
		t.Error("expected 'onFocus' in attribute completions for div")
	}
}

func TestCompletion_StateMethodCompletions(t *testing.T) {
	// Component with a state variable; cursor is after "count." inside a Go expression
	src := `package test

templ Counter() {
	count := tui.NewState(0)
	<span>{count.}</span>
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	// Build a context with state vars in scope and cursor in a Go expression
	ctx := makeCtx(doc, NodeKindGoExpr, "count")
	ctx.InGoExpr = true
	ctx.Scope = &Scope{
		Component: doc.AST.Components[0],
		StateVars: []tuigen.StateVar{
			{Name: "count", Type: "int", InitExpr: "0"},
		},
	}
	// Position cursor after "count." โ€” line 4 (0-indexed), character on the dot area
	ctx.Position = Position{Line: 4, Character: 14}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	if result == nil {
		t.Fatal("expected non-nil CompletionList")
	}

	// Should include state methods
	expectedMethods := map[string]bool{
		"Get()":      false,
		"Set(value)": false,
		"Update(fn)": false,
		"Bind(fn)":   false,
		"Batch(fn)":  false,
	}
	for _, item := range result.Items {
		if _, ok := expectedMethods[item.Label]; ok {
			expectedMethods[item.Label] = true
			if item.Kind != CompletionItemKindMethod {
				t.Errorf("expected state method %q to have kind Method, got %d", item.Label, item.Kind)
			}
		}
	}
	for method, found := range expectedMethods {
		if !found {
			t.Errorf("expected state method %q in completions", method)
		}
	}
}

func TestCompletion_StateMethodCompletions_NonStateVar(t *testing.T) {
	// Verify that non-state variables don't trigger state method completions
	src := `package test

templ Counter() {
	count := tui.NewState(0)
	<span>{other.}</span>
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	ctx := makeCtx(doc, NodeKindGoExpr, "other")
	ctx.InGoExpr = true
	ctx.Scope = &Scope{
		Component: doc.AST.Components[0],
		StateVars: []tuigen.StateVar{
			{Name: "count", Type: "int", InitExpr: "0"},
		},
	}
	ctx.Position = Position{Line: 4, Character: 15}
	ctx.Offset = PositionToOffset(doc.Content, ctx.Position)

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}

	// Should NOT return state method completions for "other." since it's not a state var
	for _, item := range result.Items {
		if item.Label == "Get()" || item.Label == "Set(value)" {
			t.Errorf("should not offer state methods for non-state var, but got %q", item.Label)
		}
	}
}

func TestCompletion_GoplsFallback(t *testing.T) {
	src := `package test

templ Page() {
	<span>{fmt.Sprintf("hello")}</span>
}
`
	doc := parseTestDoc(src)
	index := newStubIndex()
	cp := newTestCompletionProvider(index)

	// Cursor inside Go expression โ€” gopls is nil so should fall through gracefully
	ctx := makeCtx(doc, NodeKindGoExpr, "fmt")
	ctx.InGoExpr = true

	result, err := cp.Complete(ctx)
	if err != nil {
		t.Fatalf("unexpected error: %v", err)
	}
	// With nil gopls proxy, should return empty or fallback completions
	if result == nil {
		t.Fatal("expected non-nil CompletionList even with nil gopls")
	}
}