forked from Mirrors/bubbletea
5ae602953c | ||
---|---|---|
.github/workflows | ||
examples | ||
.gitignore | ||
LICENSE | ||
README.md | ||
go.mod | ||
go.sum | ||
key.go | ||
logging.go | ||
subscriptions.go | ||
tea.go | ||
tty_unix.go | ||
tty_windows.go |
README.md
Tea
The fun, functional way to build terminal apps. A Go framework based on The Elm Architecture. 茶!
⚠️ This project is a pre-release! The API is subject to change a little.
Simple example
package main
// A simple program that counts down from 5 and then exits.
import (
"fmt"
"log"
"time"
"github.com/charmbracelet/tea"
)
type model int
type tickMsg time.Time
func main() {
p := tea.NewProgram(init, update, view, subscriptions)
if err := p.Start(); err != nil {
log.Fatal(err)
}
}
// Listen for messages and update the model accordingly
func update(msg tea.Msg, mdl tea.Model) (tea.Model, tea.Cmd) {
m, _ := mdl.(model)
switch msg.(type) {
case tickMsg:
m--
if m == 0 {
return m, tea.Quit
}
}
return m, nil
}
// Render to the terminal
func view(mdl tea.Model) string {
m, _ := mdl.(model)
return fmt.Sprintf("Hi. This program will exit in %d seconds...\n", m)
}
// Subscribe to events
func subscriptions(_ tea.Model) tea.Subs {
return tea.Subs{
"tick": time.Every(time.Second, func(t time.Time) tea.Msg {
return tickMsg(t)
},
}
}
Hungry for more? See the other examples.
Other Resources
- Tea Party: a collection of Tea components.
- Termenv: advanced ANSI style and color support for your terminal applications. Very useful when rendering your views.
- Reflow: a collection of ANSI-aware text formatting tools. Also useful for view rendering.
Acknowledgments
Heavily inspired by both The Elm Architecture by Evan Czaplicki et al. and go-tea by TJ Holowaychuk.
License
Part of Charm.
Charm热爱开源!