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
|
package termui
import (
"io/ioutil"
"github.com/jroimartin/gocui"
)
const inputPopupView = "inputPopupView"
type inputPopup struct {
active bool
title string
c chan string
}
func newInputPopup() *inputPopup {
return &inputPopup{}
}
func (ip *inputPopup) keybindings(g *gocui.Gui) error {
// Close
if err := g.SetKeybinding(inputPopupView, gocui.KeyEsc, gocui.ModNone, ip.close); err != nil {
return err
}
// Validate
if err := g.SetKeybinding(inputPopupView, gocui.KeyEnter, gocui.ModNone, ip.validate); err != nil {
return err
}
return nil
}
func (ip *inputPopup) layout(g *gocui.Gui) error {
if !ip.active {
return nil
}
maxX, maxY := g.Size()
width := minInt(30, maxX)
height := 2
x0 := (maxX - width) / 2
y0 := (maxY - height) / 2
v, err := g.SetView(inputPopupView, x0, y0, x0+width, y0+height)
if err != nil {
if err != gocui.ErrUnknownView {
return err
}
v.Frame = true
v.Title = ip.title
v.Editable = true
}
if _, err := g.SetCurrentView(inputPopupView); err != nil {
return err
}
return nil
}
func (ip *inputPopup) close(g *gocui.Gui, v *gocui.View) error {
ip.title = ""
ip.active = false
return g.DeleteView(inputPopupView)
}
func (ip *inputPopup) validate(g *gocui.Gui, v *gocui.View) error {
ip.title = ""
content, err := ioutil.ReadAll(v)
if err != nil {
return err
}
ip.title = ""
ip.active = false
err = g.DeleteView(inputPopupView)
if err != nil {
return err
}
ip.c <- string(content)
return nil
}
func (ip *inputPopup) Activate(title string) <-chan string {
ip.title = title
ip.active = true
ip.c = make(chan string)
return ip.c
}
|