2020-05-12 17:05:16 -04:00
|
|
|
package main
|
|
|
|
|
2020-10-14 11:51:04 -04:00
|
|
|
// A simple example demonstrating the use of multiple text input components
|
|
|
|
// from the Bubbles component library.
|
|
|
|
|
2020-05-12 17:05:16 -04:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2020-05-25 20:10:15 -04:00
|
|
|
input "github.com/charmbracelet/bubbles/textinput"
|
2020-05-25 19:26:40 -04:00
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
2020-05-12 17:05:16 -04:00
|
|
|
te "github.com/muesli/termenv"
|
|
|
|
)
|
|
|
|
|
2020-07-30 12:40:37 -04:00
|
|
|
const (
|
|
|
|
focusedTextColor = "205"
|
|
|
|
)
|
|
|
|
|
2020-05-12 17:05:16 -04:00
|
|
|
var (
|
|
|
|
color = te.ColorProfile().Color
|
|
|
|
focusedPrompt = te.String("> ").Foreground(color("205")).String()
|
|
|
|
blurredPrompt = "> "
|
|
|
|
focusedSubmitButton = "[ " + te.String("Submit").Foreground(color("205")).String() + " ]"
|
|
|
|
blurredSubmitButton = "[ " + te.String("Submit").Foreground(color("240")).String() + " ]"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-05-25 19:26:40 -04:00
|
|
|
if err := tea.NewProgram(
|
2020-05-12 17:05:16 -04:00
|
|
|
initialize,
|
|
|
|
update,
|
|
|
|
view,
|
|
|
|
).Start(); err != nil {
|
|
|
|
fmt.Printf("could not start program: %s\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-30 12:40:37 -04:00
|
|
|
type model struct {
|
2020-05-12 17:05:16 -04:00
|
|
|
index int
|
|
|
|
nameInput input.Model
|
|
|
|
nickNameInput input.Model
|
|
|
|
emailInput input.Model
|
|
|
|
submitButton string
|
|
|
|
}
|
|
|
|
|
2020-05-25 19:26:40 -04:00
|
|
|
func initialize() (tea.Model, tea.Cmd) {
|
2020-05-12 17:05:16 -04:00
|
|
|
name := input.NewModel()
|
|
|
|
name.Placeholder = "Name"
|
|
|
|
name.Focus()
|
|
|
|
name.Prompt = focusedPrompt
|
2020-07-30 12:40:37 -04:00
|
|
|
name.TextColor = focusedTextColor
|
2020-05-12 17:05:16 -04:00
|
|
|
|
|
|
|
nickName := input.NewModel()
|
|
|
|
nickName.Placeholder = "Nickname"
|
|
|
|
nickName.Prompt = blurredPrompt
|
|
|
|
|
|
|
|
email := input.NewModel()
|
|
|
|
email.Placeholder = "Email"
|
|
|
|
email.Prompt = blurredPrompt
|
|
|
|
|
2020-07-30 12:40:37 -04:00
|
|
|
return model{0, name, nickName, email, blurredSubmitButton},
|
2020-05-25 19:26:40 -04:00
|
|
|
tea.Batch(
|
2020-05-12 17:56:30 -04:00
|
|
|
input.Blink(name),
|
|
|
|
input.Blink(nickName),
|
|
|
|
input.Blink(email),
|
|
|
|
)
|
|
|
|
|
2020-05-12 17:05:16 -04:00
|
|
|
}
|
|
|
|
|
2020-07-30 12:40:37 -04:00
|
|
|
func update(msg tea.Msg, mdl tea.Model) (tea.Model, tea.Cmd) {
|
|
|
|
m, ok := mdl.(model)
|
2020-05-12 17:05:16 -04:00
|
|
|
if !ok {
|
|
|
|
panic("could not perform assertion on model")
|
|
|
|
}
|
|
|
|
|
2020-05-25 19:26:40 -04:00
|
|
|
var cmd tea.Cmd
|
2020-05-12 17:56:30 -04:00
|
|
|
|
2020-05-12 17:05:16 -04:00
|
|
|
switch msg := msg.(type) {
|
|
|
|
|
2020-05-25 19:26:40 -04:00
|
|
|
case tea.KeyMsg:
|
2020-05-12 17:05:16 -04:00
|
|
|
switch msg.String() {
|
|
|
|
|
|
|
|
case "ctrl+c":
|
2020-05-25 19:26:40 -04:00
|
|
|
return m, tea.Quit
|
2020-05-12 17:05:16 -04:00
|
|
|
|
|
|
|
// Cycle between inputs
|
2020-07-30 12:40:37 -04:00
|
|
|
case "tab", "shift+tab", "enter", "up", "down":
|
|
|
|
|
2020-05-12 17:05:16 -04:00
|
|
|
inputs := []input.Model{
|
|
|
|
m.nameInput,
|
|
|
|
m.nickNameInput,
|
|
|
|
m.emailInput,
|
|
|
|
}
|
|
|
|
|
|
|
|
s := msg.String()
|
|
|
|
|
|
|
|
// Did the user press enter while the submit button was focused?
|
|
|
|
// If so, exit.
|
|
|
|
if s == "enter" && m.index == len(inputs) {
|
2020-05-25 19:26:40 -04:00
|
|
|
return m, tea.Quit
|
2020-05-12 17:05:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cycle indexes
|
|
|
|
if s == "up" || s == "shift+tab" {
|
|
|
|
m.index--
|
|
|
|
} else {
|
|
|
|
m.index++
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.index > len(inputs) {
|
|
|
|
m.index = 0
|
|
|
|
} else if m.index < 0 {
|
|
|
|
m.index = len(inputs)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i <= len(inputs)-1; i++ {
|
|
|
|
if i == m.index {
|
2020-07-30 12:40:37 -04:00
|
|
|
// Set focused state
|
2020-05-12 17:05:16 -04:00
|
|
|
inputs[i].Focus()
|
|
|
|
inputs[i].Prompt = focusedPrompt
|
2020-07-30 12:40:37 -04:00
|
|
|
inputs[i].TextColor = focusedTextColor
|
2020-05-12 17:05:16 -04:00
|
|
|
continue
|
|
|
|
}
|
2020-07-30 12:40:37 -04:00
|
|
|
// Remove focused state
|
2020-05-12 17:05:16 -04:00
|
|
|
inputs[i].Blur()
|
|
|
|
inputs[i].Prompt = blurredPrompt
|
|
|
|
inputs[i].TextColor = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
m.nameInput = inputs[0]
|
|
|
|
m.nickNameInput = inputs[1]
|
|
|
|
m.emailInput = inputs[2]
|
|
|
|
|
|
|
|
if m.index == len(inputs) {
|
|
|
|
m.submitButton = focusedSubmitButton
|
|
|
|
} else {
|
|
|
|
m.submitButton = blurredSubmitButton
|
|
|
|
}
|
|
|
|
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
}
|
2020-07-30 12:40:37 -04:00
|
|
|
|
|
|
|
// Handle character input and blinks
|
|
|
|
m, cmd = updateInputs(msg, m)
|
|
|
|
return m, cmd
|
2020-05-12 17:05:16 -04:00
|
|
|
}
|
|
|
|
|
2020-07-30 12:40:37 -04:00
|
|
|
// Pass messages and models through to text input components. Only text inputs
|
|
|
|
// with Focus() set will respond, so it's safe to simply update all of them
|
|
|
|
// here without any further logic.
|
|
|
|
func updateInputs(msg tea.Msg, m model) (model, tea.Cmd) {
|
2020-05-12 17:56:30 -04:00
|
|
|
var (
|
2020-05-25 19:26:40 -04:00
|
|
|
cmd tea.Cmd
|
|
|
|
cmds []tea.Cmd
|
2020-05-12 17:56:30 -04:00
|
|
|
)
|
2020-07-30 12:40:37 -04:00
|
|
|
|
2020-05-12 17:56:30 -04:00
|
|
|
m.nameInput, cmd = input.Update(msg, m.nameInput)
|
|
|
|
cmds = append(cmds, cmd)
|
2020-07-30 12:40:37 -04:00
|
|
|
|
2020-05-12 17:56:30 -04:00
|
|
|
m.nickNameInput, cmd = input.Update(msg, m.nickNameInput)
|
|
|
|
cmds = append(cmds, cmd)
|
2020-07-30 12:40:37 -04:00
|
|
|
|
2020-05-12 17:56:30 -04:00
|
|
|
m.emailInput, cmd = input.Update(msg, m.emailInput)
|
|
|
|
cmds = append(cmds, cmd)
|
2020-07-30 12:40:37 -04:00
|
|
|
|
2020-05-25 19:26:40 -04:00
|
|
|
return m, tea.Batch(cmds...)
|
2020-05-12 17:05:16 -04:00
|
|
|
}
|
|
|
|
|
2020-07-30 12:40:37 -04:00
|
|
|
func view(mdl tea.Model) string {
|
|
|
|
m, ok := mdl.(model)
|
2020-05-12 17:05:16 -04:00
|
|
|
if !ok {
|
2020-07-30 12:40:37 -04:00
|
|
|
return "could not perform assertion on model"
|
2020-05-12 17:05:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
s := "\n"
|
|
|
|
|
|
|
|
inputs := []string{
|
|
|
|
input.View(m.nameInput),
|
|
|
|
input.View(m.nickNameInput),
|
|
|
|
input.View(m.emailInput),
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < len(inputs); i++ {
|
|
|
|
s += inputs[i]
|
|
|
|
if i < len(inputs)-1 {
|
|
|
|
s += "\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s += "\n\n" + m.submitButton + "\n"
|
|
|
|
|
|
|
|
return s
|
|
|
|
}
|