-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcell.go
70 lines (56 loc) · 1.13 KB
/
cell.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package mdtt
import (
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/mattn/go-runewidth"
)
type (
errMsg error
)
type widthMsg struct {
width int
}
type cell struct {
textInput textinput.Model
err error
}
func NewCell(value string) cell {
ta := textinput.New()
ta.Placeholder = ""
ta.Focus()
ta.SetValue(value)
ta.Prompt = ""
ta.Cursor.Style = cellCursorStyle
return cell{textInput: ta, err: nil}
}
var (
widthPadding = 2
)
func (m cell) update(msg tea.Msg) (cell, tea.Cmd) {
var cmd tea.Cmd
switch msg := msg.(type) {
case errMsg:
m.err = msg
return m, nil
}
m.textInput, cmd = m.textInput.Update(msg)
width := runewidth.StringWidth(m.textInput.Value()) + widthPadding
return m, tea.Batch(cmd, updateWidthCmd(width))
}
func updateWidthCmd(width int) tea.Cmd {
return func() tea.Msg {
return widthMsg{width}
}
}
func (m cell) view() string {
return m.textInput.View()
}
func (m cell) value() string {
return m.textInput.Value()
}
func (m *cell) setValue(s string) {
m.textInput.SetValue(s)
}
func (m *cell) setCursor(l int) {
m.textInput.SetCursor(l)
}