-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinputfield.go
420 lines (359 loc) · 11.2 KB
/
inputfield.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// mauview - A Go TUI library based on tcell.
// Copyright © 2019 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// Based on https://github.com/rivo/tview/blob/master/inputfield.go
package mauview
import (
"regexp"
"strings"
"unicode/utf8"
"github.com/mattn/go-runewidth"
"github.com/gdamore/tcell/v2"
)
// InputField is a single-line user-editable text field.
//
// Use SetMaskCharacter() to hide input from onlookers (e.g. for password
// input).
type InputField struct {
// Cursor position
cursorOffset int
// Number of characters (from left) to offset rendering.
viewOffset int
// The text that was entered.
text string
// The text to be displayed in the input area when it is empty.
placeholder string
// The background color of the input area.
fieldBackgroundColor tcell.Color
// The text color of the input area.
fieldTextColor tcell.Color
// The text color of the placeholder.
placeholderTextColor tcell.Color
// A character to mask entered text (useful for password fields). A value of 0
// disables masking.
maskCharacter rune
// Whether or not to enable vim-style keybindings.
vimBindings bool
// Whether or not the input field is focused.
focused bool
// An optional function which is called when the input has changed.
changed func(text string)
// An optional function which is called when the user presses tab.
tabComplete func(text string, pos int)
}
// NewInputField returns a new input field.
func NewInputField() *InputField {
return &InputField{
fieldBackgroundColor: Styles.ContrastBackgroundColor,
fieldTextColor: Styles.PrimaryTextColor,
placeholderTextColor: Styles.ContrastSecondaryTextColor,
}
}
// SetText sets the current text of the input field.
func (field *InputField) SetText(text string) *InputField {
field.text = text
if field.changed != nil {
field.changed(text)
}
return field
}
// SetTextAndMoveCursor sets the current text of the input field and moves the cursor with the width difference.
func (field *InputField) SetTextAndMoveCursor(text string) *InputField {
oldWidth := runewidth.StringWidth(field.text)
field.text = text
newWidth := runewidth.StringWidth(field.text)
if oldWidth != newWidth {
field.cursorOffset += newWidth - oldWidth
}
if field.changed != nil {
field.changed(field.text)
}
return field
}
// GetText returns the current text of the input field.
func (field *InputField) GetText() string {
return field.text
}
// SetPlaceholder sets the text to be displayed when the input text is empty.
func (field *InputField) SetPlaceholder(text string) *InputField {
field.placeholder = text
return field
}
// SetBackgroundColor sets the background color of the input area.
func (field *InputField) SetBackgroundColor(color tcell.Color) *InputField {
field.fieldBackgroundColor = color
return field
}
// SetTextColor sets the text color of the input area.
func (field *InputField) SetTextColor(color tcell.Color) *InputField {
field.fieldTextColor = color
return field
}
// SetPlaceholderTextColor sets the text color of placeholder text.
func (field *InputField) SetPlaceholderTextColor(color tcell.Color) *InputField {
field.placeholderTextColor = color
return field
}
// SetMaskCharacter sets a character that masks user input on a screen. A value
// of 0 disables masking.
func (field *InputField) SetMaskCharacter(mask rune) *InputField {
field.maskCharacter = mask
return field
}
// SetChangedFunc sets a handler which is called whenever the text of the input
// field has changed. It receives the current text (after the change).
func (field *InputField) SetChangedFunc(handler func(text string)) *InputField {
field.changed = handler
return field
}
func (field *InputField) SetTabCompleteFunc(handler func(text string, cursorOffset int)) *InputField {
field.tabComplete = handler
return field
}
// prepareText prepares the text to be displayed and recalculates the view and cursor offsets.
func (field *InputField) prepareText(screen Screen) (text string, placeholder bool) {
width, _ := screen.Size()
text = field.text
if len(text) == 0 && len(field.placeholder) > 0 {
text = field.placeholder
placeholder = true
}
if !placeholder && field.maskCharacter > 0 {
text = strings.Repeat(string(field.maskCharacter), utf8.RuneCountInString(text))
}
textWidth := runewidth.StringWidth(text)
if field.cursorOffset >= textWidth {
width--
}
if field.cursorOffset < field.viewOffset {
field.viewOffset = field.cursorOffset
} else if field.cursorOffset > field.viewOffset+width {
field.viewOffset = field.cursorOffset - width
} else if textWidth-field.viewOffset < width {
field.viewOffset = textWidth - width
}
if field.viewOffset < 0 {
field.viewOffset = 0
}
return
}
// drawText draws the text and the cursor.
func (field *InputField) drawText(screen Screen, text string, placeholder bool) {
width, _ := screen.Size()
runes := []rune(text)
x := 0
style := tcell.StyleDefault.Foreground(field.fieldTextColor).Background(field.fieldBackgroundColor)
if placeholder {
style = style.Foreground(field.placeholderTextColor)
}
for pos := field.viewOffset; pos <= width+field.viewOffset && pos < len(runes); pos++ {
ch := runes[pos]
w := runewidth.RuneWidth(ch)
for w > 0 {
screen.SetContent(x, 0, ch, nil, style)
x++
w--
}
}
for ; x <= width; x++ {
screen.SetContent(x, 0, ' ', nil, style)
}
}
// Draw draws this primitive onto the screen.
func (field *InputField) Draw(screen Screen) {
width, height := screen.Size()
if height < 1 || width < 1 {
return
}
text, placeholder := field.prepareText(screen)
field.drawText(screen, text, placeholder)
if field.focused {
field.setCursor(screen)
}
}
func (field *InputField) GetCursorOffset() int {
return field.cursorOffset
}
func (field *InputField) SetCursorOffset(offset int) *InputField {
if offset < 0 {
offset = 0
} else {
width := runewidth.StringWidth(field.text)
if offset >= width {
offset = width
}
}
field.cursorOffset = offset
return field
}
// setCursor sets the cursor position.
func (field *InputField) setCursor(screen Screen) {
width, _ := screen.Size()
x := field.cursorOffset - field.viewOffset
if x >= width {
x = width - 1
} else if x < 0 {
x = 0
}
screen.ShowCursor(x, 0)
}
var (
lastWord = regexp.MustCompile(`\S+\s*$`)
firstWord = regexp.MustCompile(`^\s*\S+`)
)
func SubstringBefore(s string, w int) string {
return runewidth.Truncate(s, w, "")
}
func (field *InputField) TypeRune(ch rune) {
leftPart := SubstringBefore(field.text, field.cursorOffset)
field.text = leftPart + string(ch) + field.text[len(leftPart):]
field.cursorOffset += runewidth.RuneWidth(ch)
}
func (field *InputField) MoveCursorLeft(moveWord bool) {
before := SubstringBefore(field.text, field.cursorOffset)
if moveWord {
found := lastWord.FindString(before)
field.cursorOffset -= runewidth.StringWidth(found)
} else if len(before) > 0 {
beforeRunes := []rune(before)
char := beforeRunes[len(beforeRunes)-1]
field.cursorOffset -= runewidth.RuneWidth(char)
}
}
func (field *InputField) MoveCursorRight(moveWord bool) {
before := SubstringBefore(field.text, field.cursorOffset)
after := field.text[len(before):]
if moveWord {
found := firstWord.FindString(after)
field.cursorOffset += runewidth.StringWidth(found)
} else if len(after) > 0 {
char := []rune(after)[0]
field.cursorOffset += runewidth.RuneWidth(char)
}
}
func (field *InputField) RemoveNextCharacter() {
if field.cursorOffset >= runewidth.StringWidth(field.text) {
return
}
leftPart := SubstringBefore(field.text, field.cursorOffset)
// Take everything after the left part minus the first character.
rightPart := string([]rune(field.text[len(leftPart):])[1:])
field.text = leftPart + rightPart
}
func (field *InputField) Clear() {
field.text = ""
field.cursorOffset = 0
field.viewOffset = 0
}
func (field *InputField) RemovePreviousWord() {
leftPart := SubstringBefore(field.text, field.cursorOffset)
rightPart := field.text[len(leftPart):]
replacement := lastWord.ReplaceAllString(leftPart, "")
field.text = replacement + rightPart
field.cursorOffset -= runewidth.StringWidth(leftPart) - runewidth.StringWidth(replacement)
}
func (field *InputField) RemovePreviousCharacter() {
if field.cursorOffset == 0 {
return
}
leftPart := SubstringBefore(field.text, field.cursorOffset)
rightPart := field.text[len(leftPart):]
// Take everything before the right part minus the last character.
leftPartRunes := []rune(leftPart)
leftPartRunes = leftPartRunes[0 : len(leftPartRunes)-1]
leftPart = string(leftPartRunes)
// Figure out what character was removed to correctly decrease cursorOffset.
removedChar := field.text[len(leftPart) : len(field.text)-len(rightPart)]
field.text = leftPart + rightPart
field.cursorOffset -= runewidth.StringWidth(removedChar)
}
func (field *InputField) handleInputChanges(originalText string) {
// Trigger changed events.
if field.text != originalText && field.changed != nil {
field.changed(field.text)
}
// Make sure cursor offset is valid
if field.cursorOffset < 0 {
field.cursorOffset = 0
}
width := runewidth.StringWidth(field.text)
if field.cursorOffset > width {
field.cursorOffset = width
}
}
func (field *InputField) OnPasteEvent(event PasteEvent) bool {
defer field.handleInputChanges(field.text)
leftPart := SubstringBefore(field.text, field.cursorOffset)
field.text = leftPart + event.Text() + field.text[len(leftPart):]
field.cursorOffset += runewidth.StringWidth(event.Text())
return true
}
func (field *InputField) Submit(event KeyEvent) bool {
return true
}
// Global options to specify which of the two backspace key codes should remove the whole previous word.
// If false, only the previous character will be removed with that key code.
var (
Backspace1RemovesWord = true
Backspace2RemovesWord = false
)
func (field *InputField) OnKeyEvent(event KeyEvent) bool {
defer field.handleInputChanges(field.text)
// Process key event.
switch key := event.Key(); key {
case tcell.KeyRune:
field.TypeRune(event.Rune())
case tcell.KeyLeft:
field.MoveCursorLeft(event.Modifiers() == tcell.ModCtrl)
case tcell.KeyRight:
field.MoveCursorRight(event.Modifiers() == tcell.ModCtrl)
case tcell.KeyDelete:
field.RemoveNextCharacter()
case tcell.KeyCtrlU:
if field.vimBindings {
field.Clear()
}
case tcell.KeyCtrlW:
if field.vimBindings {
field.RemovePreviousWord()
}
case tcell.KeyBackspace:
if Backspace1RemovesWord {
field.RemovePreviousWord()
} else {
field.RemovePreviousCharacter()
}
case tcell.KeyBackspace2:
if Backspace2RemovesWord {
field.RemovePreviousWord()
} else {
field.RemovePreviousCharacter()
}
case tcell.KeyTab:
if field.tabComplete != nil {
field.tabComplete(field.text, field.cursorOffset)
return true
}
return false
default:
return false
}
return true
}
func (field *InputField) Focus() {
field.focused = true
}
func (field *InputField) Blur() {
field.focused = false
}
func (field *InputField) OnMouseEvent(event MouseEvent) bool {
if event.Buttons() == tcell.Button1 {
x, _ := event.Position()
field.SetCursorOffset(field.viewOffset + x)
return true
}
return false
}