2020-01-10 16:02:04 -05:00
|
|
|
package tea
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2020-01-17 16:38:25 -05:00
|
|
|
"log"
|
|
|
|
"log/syslog"
|
2020-01-10 16:02:04 -05:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/pkg/term"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Escape sequence
|
|
|
|
const esc = "\033["
|
|
|
|
|
2020-01-15 22:41:45 -05:00
|
|
|
// The number of lines we last rendered
|
|
|
|
var linesRendered = 0
|
|
|
|
|
2020-01-10 16:02:04 -05:00
|
|
|
// Msg represents an action. It's used by Update to update the UI.
|
|
|
|
type Msg interface{}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Model contains the updatable data for an application
|
2020-01-10 16:02:04 -05:00
|
|
|
type Model interface{}
|
|
|
|
|
|
|
|
// Cmd is an IO operation. If it's nil it's considered a no-op.
|
|
|
|
type Cmd func() Msg
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Sub is an event subscription. If it returns nil it's considered a no-op.
|
2020-01-13 17:10:23 -05:00
|
|
|
type Sub func(Model) Msg
|
|
|
|
|
2020-01-10 16:02:04 -05:00
|
|
|
// Update is called when a message is received. It may update the model and/or
|
|
|
|
// send a command.
|
|
|
|
type Update func(Msg, Model) (Model, Cmd)
|
|
|
|
|
|
|
|
// View produces a string which will be rendered to the terminal
|
|
|
|
type View func(Model) string
|
|
|
|
|
|
|
|
// Program is a terminal user interface
|
|
|
|
type Program struct {
|
2020-01-13 17:10:23 -05:00
|
|
|
model Model
|
|
|
|
update Update
|
|
|
|
view View
|
|
|
|
subscriptions []Sub
|
|
|
|
rw io.ReadWriter
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Quit is a command that tells the program to exit
|
2020-01-10 16:02:04 -05:00
|
|
|
func Quit() Msg {
|
|
|
|
return quitMsg{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signals that the program should quit
|
|
|
|
type quitMsg struct{}
|
|
|
|
|
|
|
|
// NewProgram creates a new Program
|
2020-01-13 17:10:23 -05:00
|
|
|
func NewProgram(model Model, update Update, view View, subs []Sub) *Program {
|
2020-01-10 16:02:04 -05:00
|
|
|
return &Program{
|
2020-01-13 17:10:23 -05:00
|
|
|
model: model,
|
|
|
|
update: update,
|
|
|
|
view: view,
|
|
|
|
subscriptions: subs,
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start initializes the program
|
|
|
|
// TODO: error channel
|
|
|
|
func (p *Program) Start() error {
|
|
|
|
var (
|
|
|
|
model = p.model
|
|
|
|
cmd Cmd
|
|
|
|
cmds = make(chan Cmd)
|
|
|
|
msgs = make(chan Msg)
|
|
|
|
done = make(chan struct{})
|
|
|
|
)
|
|
|
|
|
|
|
|
tty, err := term.Open("/dev/tty")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
p.rw = tty
|
|
|
|
tty.SetRaw()
|
|
|
|
defer func() {
|
|
|
|
showCursor()
|
|
|
|
tty.Restore()
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Render initial view
|
|
|
|
hideCursor()
|
2020-01-16 14:47:44 -05:00
|
|
|
p.render(model)
|
2020-01-10 16:02:04 -05:00
|
|
|
|
2020-01-17 15:37:04 -05:00
|
|
|
// Subscribe to user input. We could move this out of here and offer it
|
|
|
|
// as a subscription, but it blocks nicely and seems to be a common enough
|
|
|
|
// need that we're enabling it by default.
|
2020-01-10 16:02:04 -05:00
|
|
|
go func() {
|
|
|
|
for {
|
2020-01-14 17:19:44 -05:00
|
|
|
msg, _ := ReadKey(p.rw)
|
|
|
|
msgs <- KeyPressMsg(msg)
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Initialize subscriptions
|
2020-01-14 16:13:13 -05:00
|
|
|
go func() {
|
|
|
|
if len(p.subscriptions) > 0 {
|
|
|
|
for _, sub := range p.subscriptions {
|
|
|
|
go func(s Sub) {
|
|
|
|
for {
|
|
|
|
msgs <- s(p.model)
|
|
|
|
}
|
|
|
|
}(sub)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-01-10 16:02:04 -05:00
|
|
|
// Process commands
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
case cmd := <-cmds:
|
|
|
|
if cmd != nil {
|
|
|
|
go func() {
|
|
|
|
msgs <- cmd()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Handle updates and draw
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case msg := <-msgs:
|
|
|
|
if _, ok := msg.(quitMsg); ok {
|
|
|
|
close(done)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
model, cmd = p.update(msg, model)
|
|
|
|
cmds <- cmd // process command (if any)
|
2020-01-16 14:47:44 -05:00
|
|
|
p.render(model)
|
2020-01-10 16:02:04 -05:00
|
|
|
p.model = model
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Render a view to the terminal
|
2020-01-16 14:47:44 -05:00
|
|
|
func (p *Program) render(model Model) {
|
|
|
|
view := p.view(model) + "\n"
|
2020-01-10 16:02:04 -05:00
|
|
|
|
|
|
|
// We need to add carriage returns to ensure that the cursor travels to the
|
|
|
|
// start of a column after a newline
|
|
|
|
view = strings.Replace(view, "\n", "\r\n", -1)
|
|
|
|
|
2020-01-16 14:47:44 -05:00
|
|
|
if linesRendered > 0 {
|
2020-01-15 22:41:45 -05:00
|
|
|
clearLines(linesRendered)
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
io.WriteString(p.rw, view)
|
2020-01-15 22:41:45 -05:00
|
|
|
linesRendered = strings.Count(view, "\r\n")
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Hide the cursor
|
2020-01-10 16:02:04 -05:00
|
|
|
func hideCursor() {
|
|
|
|
fmt.Printf(esc + "?25l")
|
|
|
|
}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Show the cursor
|
2020-01-10 16:02:04 -05:00
|
|
|
func showCursor() {
|
|
|
|
fmt.Printf(esc + "?25h")
|
|
|
|
}
|
|
|
|
|
2020-01-15 23:18:45 -05:00
|
|
|
// Move the cursor down a given number of lines and place it at the beginning
|
|
|
|
// of the line
|
|
|
|
func cursorNextLine(n int) {
|
2020-01-15 23:04:53 -05:00
|
|
|
fmt.Printf(esc+"%dE", n)
|
|
|
|
}
|
|
|
|
|
2020-01-15 23:18:45 -05:00
|
|
|
// Move the cursor up a given number of lines and place it at the beginning of
|
|
|
|
// the line
|
|
|
|
func cursorPrevLine(n int) {
|
2020-01-10 16:02:04 -05:00
|
|
|
fmt.Printf(esc+"%dF", n)
|
|
|
|
}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Clear the current line
|
2020-01-10 16:02:04 -05:00
|
|
|
func clearLine() {
|
|
|
|
fmt.Printf(esc + "2K")
|
|
|
|
}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Clear a given number of lines
|
2020-01-10 16:02:04 -05:00
|
|
|
func clearLines(n int) {
|
2020-01-15 23:28:49 -05:00
|
|
|
clearLine()
|
2020-01-10 16:02:04 -05:00
|
|
|
for i := 0; i < n; i++ {
|
2020-01-15 23:18:45 -05:00
|
|
|
cursorPrevLine(1)
|
2020-01-15 23:28:49 -05:00
|
|
|
clearLine()
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-17 15:37:04 -05:00
|
|
|
// Fullscreen switches to the altscreen and clears the terminal. The former
|
|
|
|
// view can be restored with ExitFullscreen().
|
|
|
|
func Fullscreen() {
|
|
|
|
fmt.Print(esc + "?1049h" + esc + "H")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExitFullscreen exits the altscreen and returns the former terminal view
|
|
|
|
func ExitFullscreen() {
|
|
|
|
fmt.Print(esc + "?1049l")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearScreen clears the visible portion of the terminal. Effectively, it
|
|
|
|
// fills the terminal with blank spaces.
|
2020-01-13 17:10:23 -05:00
|
|
|
func ClearScreen() {
|
2020-01-10 16:02:04 -05:00
|
|
|
fmt.Printf(esc + "2J" + esc + "3J" + esc + "1;1H")
|
|
|
|
}
|
2020-01-17 16:38:25 -05:00
|
|
|
|
|
|
|
// UseSysLog logs to the system log. This becomes helpful when debugging since
|
|
|
|
// we can't easily print to the terminal since our TUI is occupying it!
|
|
|
|
//
|
|
|
|
// On macOS this is a just a matter of: tail -f /var/log/system.log
|
|
|
|
func UseSysLog(programName string) error {
|
|
|
|
l, err := syslog.New(syslog.LOG_NOTICE, programName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.SetOutput(l)
|
|
|
|
return nil
|
|
|
|
}
|