You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
709 B
Go
36 lines
709 B
Go
package app
|
|
|
|
import (
|
|
"github.com/gdamore/tcell/v2"
|
|
"github.com/jordanorelli/astro-domu/internal/math"
|
|
)
|
|
|
|
type form struct {
|
|
fields []textField
|
|
active int
|
|
}
|
|
|
|
func (f *form) handleEvent(e tcell.Event) change {
|
|
switch t := e.(type) {
|
|
case *tcell.EventKey:
|
|
key := t.Key()
|
|
switch key {
|
|
case tcell.KeyEnter:
|
|
return login{name: f.fields[0].textInput.entered}
|
|
}
|
|
}
|
|
return f.fields[0].handleEvent(e)
|
|
}
|
|
|
|
func (f *form) draw(img canvas, _ *state) {
|
|
for i, field := range f.fields {
|
|
writeString(img, field.label, math.Vec{0, i * 2}, tcell.StyleDefault)
|
|
writeString(img, field.prompt+field.entered, math.Vec{0, i*2 + 1}, tcell.StyleDefault)
|
|
}
|
|
}
|
|
|
|
type textField struct {
|
|
label string
|
|
textInput
|
|
}
|