-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
62 lines (49 loc) · 1.06 KB
/
main.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
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
"github.com/cedricmar/editor/pkg/action"
"github.com/cedricmar/editor/pkg/keyboard"
"github.com/cedricmar/editor/pkg/store"
"github.com/cedricmar/editor/pkg/term"
"github.com/cedricmar/editor/pkg/ui"
)
func main() {
t, err := term.GetTermState()
if err != nil {
fmt.Printf("term: %+v %v\n", t, err)
os.Exit(1)
}
err = t.RawMode()
if err != nil {
fmt.Printf("term set RAW_MODE: %v\n", err)
os.Exit(1)
}
actionChan := store.CreateStore()
storeUpdateChan := store.ListenActions(actionChan)
ui := ui.NewUI()
ui.ListenUpdates(storeUpdateChan)
actionChan <- action.WinSizeAction(t.TerminalWidth(), t.TerminalHeight())
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
stop := make(chan bool, 1)
for {
keyboard.HandleKeypress(actionChan, stop)
select {
default:
case <-stop:
goto FINISH
case <-sigs:
goto FINISH
}
}
FINISH:
ui.ClearScreen()
err = t.Reset()
if err != nil {
fmt.Printf("term set SANE_MODE: %v\n", err)
}
os.Exit(0)
}