2020-01-10 16:02:04 -05:00
|
|
|
package tea
|
|
|
|
|
|
|
|
import (
|
2020-01-18 10:13:44 -05:00
|
|
|
"errors"
|
2020-01-10 16:02:04 -05:00
|
|
|
"io"
|
2020-01-25 01:15:56 -05:00
|
|
|
"os"
|
2020-01-10 16:02:04 -05:00
|
|
|
"strings"
|
2020-01-31 07:47:36 -05:00
|
|
|
|
|
|
|
"github.com/muesli/termenv"
|
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.
|
2020-01-20 13:35:03 -05:00
|
|
|
type Cmd func(Model) Msg
|
2020-01-10 16:02:04 -05:00
|
|
|
|
2020-01-25 21:16:41 -05:00
|
|
|
// Sub is an event subscription. If it returns nil it's considered a no-op,
|
|
|
|
// but there's really no reason to have a nil subscription.
|
2020-01-29 21:37:37 -05:00
|
|
|
type Sub func(Model) Msg
|
2020-01-13 17:10:23 -05:00
|
|
|
|
2020-01-25 21:16:41 -05:00
|
|
|
// Subs is a keyed set of subscriptions. The key should be a unique
|
|
|
|
// identifier; two different subscriptions should not have the same key
|
|
|
|
type Subs map[string]Sub
|
|
|
|
|
|
|
|
// Subscriptions returns a map of subscriptions (Subs) our application will
|
|
|
|
// subscribe to. If Subscriptions is nil it's considered a no-op.
|
|
|
|
type Subscriptions func(Model) Subs
|
|
|
|
|
|
|
|
// subscription is an internal reference to a subscription used in subscription
|
|
|
|
// management.
|
|
|
|
type subscription struct {
|
|
|
|
done chan struct{}
|
|
|
|
sub Sub
|
|
|
|
}
|
|
|
|
|
|
|
|
// subManager is used to manage active subscriptions, hence the pointers.
|
|
|
|
type subManager map[string]*subscription
|
|
|
|
|
|
|
|
// endAll stops all subscriptions and remove subscription references from
|
|
|
|
// subManager.
|
|
|
|
func (m *subManager) endAll() {
|
|
|
|
if m != nil {
|
|
|
|
for key, sub := range *m {
|
|
|
|
close(sub.done)
|
|
|
|
delete(*m, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-18 22:18:19 -05:00
|
|
|
// Init is the first function that will be called. It returns your initial
|
|
|
|
// model and runs an optional command
|
|
|
|
type Init func() (Model, Cmd)
|
|
|
|
|
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-18 22:18:19 -05:00
|
|
|
init Init
|
2020-01-13 17:10:23 -05:00
|
|
|
update Update
|
|
|
|
view View
|
2020-01-25 21:16:41 -05:00
|
|
|
subscriptions Subscriptions
|
|
|
|
model Model
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
|
2020-01-18 10:13:44 -05:00
|
|
|
// ErrMsg is just a regular message containing an error. We handle it in Update
|
|
|
|
// just like a regular message by case switching. Of course, the developer
|
|
|
|
// could also define her own errors as well.
|
|
|
|
type ErrMsg struct {
|
|
|
|
error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ErrMsg) String() string {
|
|
|
|
return e.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewErrMsg is a convenience function for creating a generic ErrMsg
|
|
|
|
func NewErrMsg(s string) ErrMsg {
|
|
|
|
return ErrMsg{errors.New(s)}
|
|
|
|
}
|
|
|
|
|
2020-01-20 13:54:58 -05:00
|
|
|
// NewErrMsgFromErr is a convenience function for creating an ErrMsg from an
|
|
|
|
// existing error
|
|
|
|
func NewErrMsgFromErr(e error) ErrMsg {
|
|
|
|
return ErrMsg{e}
|
|
|
|
}
|
|
|
|
|
2020-01-14 17:19:44 -05:00
|
|
|
// Quit is a command that tells the program to exit
|
2020-01-20 13:35:03 -05:00
|
|
|
func Quit(_ Model) Msg {
|
2020-01-10 16:02:04 -05:00
|
|
|
return quitMsg{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signals that the program should quit
|
|
|
|
type quitMsg struct{}
|
|
|
|
|
|
|
|
// NewProgram creates a new Program
|
2020-01-25 21:16:41 -05:00
|
|
|
func NewProgram(init Init, update Update, view View, subs Subscriptions) *Program {
|
2020-01-10 16:02:04 -05:00
|
|
|
return &Program{
|
2020-01-18 22:18:19 -05:00
|
|
|
init: init,
|
2020-01-13 17:10:23 -05:00
|
|
|
update: update,
|
|
|
|
view: view,
|
|
|
|
subscriptions: subs,
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start initializes the program
|
|
|
|
func (p *Program) Start() error {
|
|
|
|
var (
|
2020-01-22 19:15:30 -05:00
|
|
|
cmd Cmd
|
2020-01-25 21:16:41 -05:00
|
|
|
subs = make(subManager)
|
2020-01-22 19:15:30 -05:00
|
|
|
cmds = make(chan Cmd)
|
|
|
|
msgs = make(chan Msg)
|
|
|
|
done = make(chan struct{})
|
|
|
|
linesRendered int
|
2020-01-10 16:02:04 -05:00
|
|
|
)
|
|
|
|
|
2020-01-25 01:15:29 -05:00
|
|
|
err := initTerminal()
|
2020-01-10 16:02:04 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-01-25 01:15:29 -05:00
|
|
|
defer restoreTerminal()
|
2020-01-10 16:02:04 -05:00
|
|
|
|
2020-01-18 22:18:19 -05:00
|
|
|
// Initialize program
|
2020-01-25 21:16:41 -05:00
|
|
|
p.model, cmd = p.init()
|
2020-01-18 22:18:19 -05:00
|
|
|
if cmd != nil {
|
|
|
|
go func() {
|
|
|
|
cmds <- cmd
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2020-01-10 16:02:04 -05:00
|
|
|
// Render initial view
|
2020-01-25 21:16:41 -05:00
|
|
|
linesRendered = p.render(p.model, linesRendered)
|
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-25 01:15:29 -05:00
|
|
|
msg, _ := ReadKey(os.Stdin)
|
2020-01-17 20:46:34 -05:00
|
|
|
msgs <- KeyMsg(msg)
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-01-25 21:16:41 -05:00
|
|
|
// Initialize subscriptions
|
|
|
|
subs = p.processSubs(msgs, subs)
|
2020-01-14 16:13:13 -05:00
|
|
|
|
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() {
|
2020-01-25 21:16:41 -05:00
|
|
|
msgs <- cmd(p.model)
|
2020-01-10 16:02:04 -05:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Handle updates and draw
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case msg := <-msgs:
|
|
|
|
if _, ok := msg.(quitMsg); ok {
|
|
|
|
close(done)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-01-25 21:16:41 -05:00
|
|
|
p.model, cmd = p.update(msg, p.model) // run update
|
|
|
|
cmds <- cmd // process command (if any)
|
|
|
|
subs = p.processSubs(msgs, subs) // check for new and outdated subscriptions
|
|
|
|
linesRendered = p.render(p.model, linesRendered) // render to terminal
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 19:15:30 -05:00
|
|
|
// Render a view to the terminal. Returns the number of lines rendered.
|
|
|
|
func (p *Program) render(model Model, linesRendered int) int {
|
2020-01-16 14:47:44 -05:00
|
|
|
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-22 19:15:30 -05:00
|
|
|
if linesRendered > 0 {
|
2020-01-31 07:47:36 -05:00
|
|
|
termenv.ClearLines(linesRendered)
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
2020-01-25 01:15:29 -05:00
|
|
|
io.WriteString(os.Stdout, view)
|
2020-01-22 19:15:30 -05:00
|
|
|
return strings.Count(view, "\r\n")
|
2020-01-10 16:02:04 -05:00
|
|
|
}
|
2020-01-25 21:16:41 -05:00
|
|
|
|
|
|
|
// Manage subscriptions. Here we run the program's Subscription function and
|
|
|
|
// inspect the functions it returns (a Subs map). If we notice existing
|
|
|
|
// subscriptions have disappeared from the map we stop those subscriptions
|
|
|
|
// by ending the Goroutines they run on. If we notice new subscriptions which
|
|
|
|
// aren't currently running, we run them as loops in a new Goroutine.
|
|
|
|
//
|
|
|
|
// This function should be called on initialization and after every update.
|
|
|
|
func (p *Program) processSubs(msgs chan Msg, activeSubs subManager) subManager {
|
|
|
|
|
|
|
|
// Nothing to do.
|
|
|
|
if p.subscriptions == nil && activeSubs == nil {
|
|
|
|
return activeSubs
|
|
|
|
}
|
|
|
|
|
|
|
|
// There are no subscriptions. Cancel active ones and return.
|
|
|
|
if p.subscriptions == nil && activeSubs != nil {
|
|
|
|
activeSubs.endAll()
|
|
|
|
return activeSubs
|
|
|
|
}
|
|
|
|
|
|
|
|
newSubs := p.subscriptions(p.model)
|
|
|
|
|
|
|
|
// newSubs is an empty map. Cancel any active subscriptions and return.
|
|
|
|
if newSubs == nil {
|
|
|
|
activeSubs.endAll()
|
|
|
|
return activeSubs
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop subscriptions that don't exist in the new subscription map
|
|
|
|
if len(activeSubs) > 0 {
|
|
|
|
for key, sub := range activeSubs {
|
|
|
|
if _, exists := newSubs[key]; !exists {
|
|
|
|
close(sub.done)
|
|
|
|
delete(activeSubs, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start new subscriptions if they don't exist in the active subscription map
|
|
|
|
if len(newSubs) > 0 {
|
|
|
|
for key, sub := range newSubs {
|
|
|
|
if _, exists := activeSubs[key]; !exists {
|
|
|
|
|
|
|
|
if sub == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
activeSubs[key] = &subscription{
|
|
|
|
done: make(chan struct{}),
|
|
|
|
sub: sub,
|
|
|
|
}
|
|
|
|
|
|
|
|
go func(done chan struct{}, s Sub) {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
case msgs <- s(p.model):
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}(activeSubs[key].done, activeSubs[key].sub)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return activeSubs
|
|
|
|
}
|
2020-02-01 21:02:12 -05:00
|
|
|
|
|
|
|
// AltScreen exits the altscreen. Just is just a wrapper around the termenv
|
|
|
|
// function
|
|
|
|
func AltScreen() {
|
|
|
|
termenv.AltScreen()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExitAltScreen exits the altscreen. Just is just a wrapper around the termenv
|
|
|
|
// function
|
|
|
|
func ExitAltScreen() {
|
|
|
|
termenv.ExitAltScreen()
|
|
|
|
}
|