mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-01-25 21:31:04 +03:00
Textinput Update and View functions are now methods on the model
This commit is contained in:
parent
bf7719e6c1
commit
d14fdf585c
@ -88,6 +88,25 @@ type Model struct {
|
|||||||
blinkTimer *time.Timer
|
blinkTimer *time.Timer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewModel creates a new model with default settings.
|
||||||
|
func NewModel() Model {
|
||||||
|
return Model{
|
||||||
|
Prompt: "> ",
|
||||||
|
Placeholder: "",
|
||||||
|
BlinkSpeed: defaultBlinkSpeed,
|
||||||
|
TextColor: "",
|
||||||
|
PlaceholderColor: "240",
|
||||||
|
CursorColor: "",
|
||||||
|
EchoCharacter: '*',
|
||||||
|
CharLimit: 0,
|
||||||
|
|
||||||
|
value: nil,
|
||||||
|
focus: false,
|
||||||
|
blink: true,
|
||||||
|
pos: 0,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// SetValue sets the value of the text input.
|
// SetValue sets the value of the text input.
|
||||||
func (m *Model) SetValue(s string) {
|
func (m *Model) SetValue(s string) {
|
||||||
runes := []rune(s)
|
runes := []rune(s)
|
||||||
@ -391,27 +410,8 @@ func (m Model) echoTransform(v string) string {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewModel creates a new model with default settings.
|
|
||||||
func NewModel() Model {
|
|
||||||
return Model{
|
|
||||||
Prompt: "> ",
|
|
||||||
Placeholder: "",
|
|
||||||
BlinkSpeed: defaultBlinkSpeed,
|
|
||||||
TextColor: "",
|
|
||||||
PlaceholderColor: "240",
|
|
||||||
CursorColor: "",
|
|
||||||
EchoCharacter: '*',
|
|
||||||
CharLimit: 0,
|
|
||||||
|
|
||||||
value: nil,
|
|
||||||
focus: false,
|
|
||||||
blink: true,
|
|
||||||
pos: 0,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update is the Bubble Tea update loop.
|
// Update is the Bubble Tea update loop.
|
||||||
func Update(msg tea.Msg, m Model) (Model, tea.Cmd) {
|
func (m Model) Update(msg tea.Msg) (Model, tea.Cmd) {
|
||||||
if !m.focus {
|
if !m.focus {
|
||||||
m.blink = true
|
m.blink = true
|
||||||
return m, nil
|
return m, nil
|
||||||
@ -511,10 +511,10 @@ func Update(msg tea.Msg, m Model) (Model, tea.Cmd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// View renders the textinput in its current state.
|
// View renders the textinput in its current state.
|
||||||
func View(m Model) string {
|
func (m Model) View() string {
|
||||||
// Placeholder text
|
// Placeholder text
|
||||||
if len(m.value) == 0 && m.Placeholder != "" {
|
if len(m.value) == 0 && m.Placeholder != "" {
|
||||||
return placeholderView(m)
|
return m.placeholderView()
|
||||||
}
|
}
|
||||||
|
|
||||||
value := m.value[m.offset:m.offsetRight]
|
value := m.value[m.offset:m.offsetRight]
|
||||||
@ -522,10 +522,10 @@ func View(m Model) string {
|
|||||||
v := m.colorText(m.echoTransform(string(value[:pos])))
|
v := m.colorText(m.echoTransform(string(value[:pos])))
|
||||||
|
|
||||||
if pos < len(value) {
|
if pos < len(value) {
|
||||||
v += cursorView(m.echoTransform(string(value[pos])), m) // cursor and text under it
|
v += m.cursorView(m.echoTransform(string(value[pos]))) // cursor and text under it
|
||||||
v += m.colorText(m.echoTransform(string(value[pos+1:]))) // text after cursor
|
v += m.colorText(m.echoTransform(string(value[pos+1:]))) // text after cursor
|
||||||
} else {
|
} else {
|
||||||
v += cursorView(" ", m)
|
v += m.cursorView(" ")
|
||||||
}
|
}
|
||||||
|
|
||||||
// If a max width and background color were set fill the empty spaces with
|
// If a max width and background color were set fill the empty spaces with
|
||||||
@ -545,8 +545,8 @@ func View(m Model) string {
|
|||||||
return m.Prompt + v
|
return m.Prompt + v
|
||||||
}
|
}
|
||||||
|
|
||||||
// placeholderView.
|
// placeholderView returns the prompt and placeholder view, if any.
|
||||||
func placeholderView(m Model) string {
|
func (m Model) placeholderView() string {
|
||||||
var (
|
var (
|
||||||
v string
|
v string
|
||||||
p = m.Placeholder
|
p = m.Placeholder
|
||||||
@ -554,9 +554,9 @@ func placeholderView(m Model) string {
|
|||||||
|
|
||||||
// Cursor
|
// Cursor
|
||||||
if m.blink && m.PlaceholderColor != "" {
|
if m.blink && m.PlaceholderColor != "" {
|
||||||
v += cursorView(m.colorPlaceholder(p[:1]), m)
|
v += m.cursorView(m.colorPlaceholder(p[:1]))
|
||||||
} else {
|
} else {
|
||||||
v += cursorView(p[:1], m)
|
v += m.cursorView(p[:1])
|
||||||
}
|
}
|
||||||
|
|
||||||
// The rest of the placeholder text
|
// The rest of the placeholder text
|
||||||
@ -566,36 +566,23 @@ func placeholderView(m Model) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// cursorView styles the cursor.
|
// cursorView styles the cursor.
|
||||||
func cursorView(s string, m Model) string {
|
func (m Model) cursorView(v string) string {
|
||||||
if m.blink {
|
if m.blink {
|
||||||
if m.TextColor != "" || m.BackgroundColor != "" {
|
if m.TextColor != "" || m.BackgroundColor != "" {
|
||||||
return termenv.String(s).
|
return termenv.String(v).
|
||||||
Foreground(color(m.TextColor)).
|
Foreground(color(m.TextColor)).
|
||||||
Background(color(m.BackgroundColor)).
|
Background(color(m.BackgroundColor)).
|
||||||
String()
|
String()
|
||||||
}
|
}
|
||||||
return s
|
return v
|
||||||
}
|
}
|
||||||
return termenv.String(s).
|
return termenv.String(v).
|
||||||
Foreground(color(m.CursorColor)).
|
Foreground(color(m.CursorColor)).
|
||||||
Background(color(m.BackgroundColor)).
|
Background(color(m.BackgroundColor)).
|
||||||
Reverse().
|
Reverse().
|
||||||
String()
|
String()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Blink is a command used to time the cursor blinking.
|
|
||||||
func Blink() tea.Msg {
|
|
||||||
return blinkMsg{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func Paste() tea.Msg {
|
|
||||||
str, err := clipboard.ReadAll()
|
|
||||||
if err != nil {
|
|
||||||
return pasteErrMsg{err}
|
|
||||||
}
|
|
||||||
return pasteMsg(str)
|
|
||||||
}
|
|
||||||
|
|
||||||
// blinkCmd is an internal command used to manage cursor blinking
|
// blinkCmd is an internal command used to manage cursor blinking
|
||||||
func (m Model) blinkCmd() (*time.Timer, tea.Cmd) {
|
func (m Model) blinkCmd() (*time.Timer, tea.Cmd) {
|
||||||
t := time.NewTimer(m.BlinkSpeed)
|
t := time.NewTimer(m.BlinkSpeed)
|
||||||
@ -605,6 +592,20 @@ func (m Model) blinkCmd() (*time.Timer, tea.Cmd) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Blink is a command used to initialize cursor blinking.
|
||||||
|
func Blink() tea.Msg {
|
||||||
|
return blinkMsg{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Paste is a command for pasting from the clipboard into the text input.
|
||||||
|
func Paste() tea.Msg {
|
||||||
|
str, err := clipboard.ReadAll()
|
||||||
|
if err != nil {
|
||||||
|
return pasteErrMsg{err}
|
||||||
|
}
|
||||||
|
return pasteMsg(str)
|
||||||
|
}
|
||||||
|
|
||||||
func clamp(v, low, high int) int {
|
func clamp(v, low, high int) int {
|
||||||
return min(high, max(low, v))
|
return min(high, max(low, v))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user