mirror of
https://github.com/charmbracelet/gum
synced 2026-03-14 21:55:45 +01:00
* Revert "feat: huh gum write (#525)" This reverts commit4d5d53169e. Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * Revert "Use Huh for Gum Confirm (#522)" This reverts commitf7572e387e. Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * revert: Use Huh for Gum Choose (#521) Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * revert: feat: huh for gum input (#524) * revert: feat: huh file picker (#523) * feat: remove huh * fix: timeouts * fix: lint issues * fix(choose): quit on ctrl+q ported over63a3e8c8ce* fix: ctrl+a to reverse selection Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: better handle spin exit codes * fix(file): bind --[no-]permissions and --[no-]size * feat(confirm): show help * fix(confirm): fix help style * fix(file): help * fix(input): --no-show-help doesn't work * fix(input): help * fix(file): keymap improvement * fix(write): focus * feat(write): ctrl+e, keymaps, help * feat(choose): help * feat(filter): help * refactor: keymaps * fix(choose): only show 'toggle all' if there's no limit * fix(choose): don't show toggle if the choices are limited to 1 * fix(filter): match choose header color * fix(filter): add space above help * fix(filter): factor help into the height setting * chore(choose,filter): use verb for navigation label in help * fix(filter): hide toggle help if limit is 1 * fix(file): factor help into height setting (#746) * fix: lint issues * fix(file): handle ctrl+c * fix: remove full help * fix: lint --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> Co-authored-by: Christian Rocha <christian@rocha.is>
112 lines
2.4 KiB
Go
112 lines
2.4 KiB
Go
// Package input provides a shell script interface for the text input bubble.
|
|
// https://github.com/charmbracelet/bubbles/tree/master/textinput
|
|
//
|
|
// It can be used to prompt the user for some input. The text the user entered
|
|
// will be sent to stdout.
|
|
//
|
|
// $ gum input --placeholder "What's your favorite gum?" > answer.text
|
|
package input
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/charmbracelet/bubbles/help"
|
|
"github.com/charmbracelet/bubbles/key"
|
|
"github.com/charmbracelet/bubbles/textinput"
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
"github.com/charmbracelet/gum/timeout"
|
|
"github.com/charmbracelet/lipgloss"
|
|
)
|
|
|
|
type keymap textinput.KeyMap
|
|
|
|
func defaultKeymap() keymap {
|
|
k := textinput.DefaultKeyMap
|
|
return keymap(k)
|
|
}
|
|
|
|
// FullHelp implements help.KeyMap.
|
|
func (k keymap) FullHelp() [][]key.Binding { return nil }
|
|
|
|
// ShortHelp implements help.KeyMap.
|
|
func (k keymap) ShortHelp() []key.Binding {
|
|
return []key.Binding{
|
|
key.NewBinding(
|
|
key.WithKeys("enter"),
|
|
key.WithHelp("enter", "submit"),
|
|
),
|
|
}
|
|
}
|
|
|
|
type model struct {
|
|
autoWidth bool
|
|
header string
|
|
headerStyle lipgloss.Style
|
|
textinput textinput.Model
|
|
quitting bool
|
|
timedOut bool
|
|
aborted bool
|
|
timeout time.Duration
|
|
hasTimeout bool
|
|
showHelp bool
|
|
help help.Model
|
|
keymap keymap
|
|
}
|
|
|
|
func (m model) Init() tea.Cmd {
|
|
return tea.Batch(
|
|
textinput.Blink,
|
|
timeout.Init(m.timeout, nil),
|
|
)
|
|
}
|
|
|
|
func (m model) View() string {
|
|
if m.quitting {
|
|
return ""
|
|
}
|
|
if m.header != "" {
|
|
header := m.headerStyle.Render(m.header)
|
|
return lipgloss.JoinVertical(lipgloss.Left, header, m.textinput.View())
|
|
}
|
|
|
|
if !m.showHelp {
|
|
return m.textinput.View()
|
|
}
|
|
return lipgloss.JoinVertical(
|
|
lipgloss.Top,
|
|
m.textinput.View(),
|
|
"",
|
|
m.help.View(m.keymap),
|
|
)
|
|
}
|
|
|
|
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|
switch msg := msg.(type) {
|
|
case timeout.TickTimeoutMsg:
|
|
if msg.TimeoutValue <= 0 {
|
|
m.quitting = true
|
|
m.timedOut = true
|
|
return m, tea.Quit
|
|
}
|
|
m.timeout = msg.TimeoutValue
|
|
return m, timeout.Tick(msg.TimeoutValue, msg.Data)
|
|
case tea.WindowSizeMsg:
|
|
if m.autoWidth {
|
|
m.textinput.Width = msg.Width - lipgloss.Width(m.textinput.Prompt) - 1
|
|
}
|
|
case tea.KeyMsg:
|
|
switch msg.String() {
|
|
case "ctrl+c", "esc":
|
|
m.quitting = true
|
|
m.aborted = true
|
|
return m, tea.Quit
|
|
case "enter":
|
|
m.quitting = true
|
|
return m, tea.Quit
|
|
}
|
|
}
|
|
|
|
var cmd tea.Cmd
|
|
m.textinput, cmd = m.textinput.Update(msg)
|
|
return m, cmd
|
|
}
|