mirror of
https://github.com/charmbracelet/gum.git
synced 2024-11-05 05:46:36 +03:00
7190822247
Instead of needing to run the commands manually in main.go, we can implement the `Run(...) error` method to satisfy the command interface so that `kong` can Run our commands for us.
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package write
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/charmbracelet/bubbles/textarea"
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
"github.com/charmbracelet/gum/internal/stdin"
|
|
)
|
|
|
|
// Run provides a shell script interface for the text area bubble.
|
|
// https://github.com/charmbracelet/bubbles/textarea
|
|
func (o Options) Run() error {
|
|
in, _ := stdin.Read()
|
|
if in != "" && o.Value == "" {
|
|
o.Value = in
|
|
}
|
|
|
|
a := textarea.New()
|
|
a.Focus()
|
|
|
|
a.Prompt = o.Prompt
|
|
a.Placeholder = o.Placeholder
|
|
a.ShowLineNumbers = o.ShowLineNumbers
|
|
|
|
style := textarea.Style{
|
|
Base: o.BaseStyle.ToLipgloss(),
|
|
Placeholder: o.PlaceholderStyle.ToLipgloss(),
|
|
CursorLine: o.CursorLineStyle.ToLipgloss(),
|
|
CursorLineNumber: o.CursorLineNumberStyle.ToLipgloss(),
|
|
EndOfBuffer: o.EndOfBufferStyle.ToLipgloss(),
|
|
LineNumber: o.LineNumberStyle.ToLipgloss(),
|
|
Prompt: o.PromptStyle.ToLipgloss(),
|
|
}
|
|
|
|
a.BlurredStyle = style
|
|
a.FocusedStyle = style
|
|
a.Cursor.Style = o.CursorStyle.ToLipgloss()
|
|
|
|
a.SetWidth(o.Width)
|
|
a.SetHeight(o.Height)
|
|
a.SetValue(o.Value)
|
|
|
|
p := tea.NewProgram(model{textarea: a}, tea.WithOutput(os.Stderr))
|
|
m, err := p.StartReturningModel()
|
|
fmt.Println(m.(model).textarea.Value())
|
|
return err
|
|
}
|