2020-07-23 22:04:53 -04:00
|
|
|
|
Bubble Tea Basics
|
|
|
|
|
=================
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
Bubble Tea is based on the functional design paradigms of [The Elm
|
2022-09-14 21:20:56 -04:00
|
|
|
|
Architecture][elm], which happens to work nicely with Go. It's a delightful way
|
|
|
|
|
to build applications.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
This tutorial assumes you have a working knowledge of Go.
|
|
|
|
|
|
2022-09-14 21:20:56 -04:00
|
|
|
|
By the way, the non-annotated source code for this program is available
|
|
|
|
|
[on GitHub][tut-source].
|
|
|
|
|
|
2020-07-23 17:30:25 -04:00
|
|
|
|
[elm]: https://guide.elm-lang.org/architecture/
|
2022-09-14 21:20:56 -04:00
|
|
|
|
[tut-source]:https://github.com/charmbracelet/bubbletea/tree/master/tutorials/basics
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
## Enough! Let's get to it.
|
|
|
|
|
|
2022-09-09 15:56:00 -04:00
|
|
|
|
For this tutorial, we're making a shopping list.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
To start we'll define our package and import some libraries. Our only external
|
2020-08-26 15:09:25 -04:00
|
|
|
|
import will be the Bubble Tea library, which we'll call `tea` for short.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
```go
|
2020-10-15 20:41:54 -04:00
|
|
|
|
package main
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-10-15 20:41:54 -04:00
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"os"
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-10-15 20:41:54 -04:00
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
|
|
|
)
|
2020-07-23 17:30:25 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-07-23 17:51:47 -04:00
|
|
|
|
Bubble Tea programs are comprised of a **model** that describes the application
|
2020-10-15 20:26:02 -04:00
|
|
|
|
state and three simple methods on that model:
|
2020-10-16 23:07:31 -04:00
|
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
|
* **Init**, a function that returns an initial command for the application to run.
|
2020-07-23 17:35:04 -04:00
|
|
|
|
* **Update**, a function that handles incoming events and updates the model accordingly.
|
|
|
|
|
* **View**, a function that renders the UI based on the data in the model.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
## The Model
|
|
|
|
|
|
2020-07-23 17:51:47 -04:00
|
|
|
|
So let's start by defining our model which will store our application's state.
|
|
|
|
|
It can be any type, but a `struct` usually makes the most sense.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
```go
|
2020-10-15 20:41:54 -04:00
|
|
|
|
type model struct {
|
|
|
|
|
choices []string // items on the to-do list
|
|
|
|
|
cursor int // which to-do list item our cursor is pointing at
|
|
|
|
|
selected map[int]struct{} // which to-do items are selected
|
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
|
## Initialization
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2022-09-09 15:56:00 -04:00
|
|
|
|
Next, we’ll define our application’s initial state. In this case, we’re defining
|
|
|
|
|
a function to return our initial model, however, we could just as easily define
|
2021-09-04 14:36:49 -04:00
|
|
|
|
the initial model as a variable elsewhere, too.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
```go
|
2021-09-04 14:36:49 -04:00
|
|
|
|
func initialModel() model {
|
|
|
|
|
return model{
|
2022-09-12 10:27:39 -04:00
|
|
|
|
// Our to-do list is a grocery list
|
2021-09-04 14:36:49 -04:00
|
|
|
|
choices: []string{"Buy carrots", "Buy celery", "Buy kohlrabi"},
|
|
|
|
|
|
|
|
|
|
// A map which indicates which choices are selected. We're using
|
|
|
|
|
// the map like a mathematical set. The keys refer to the indexes
|
|
|
|
|
// of the `choices` slice, above.
|
|
|
|
|
selected: make(map[int]struct{}),
|
2021-09-04 12:48:46 -04:00
|
|
|
|
}
|
2020-10-15 20:41:54 -04:00
|
|
|
|
}
|
2021-09-04 14:36:49 -04:00
|
|
|
|
```
|
2020-10-15 20:41:54 -04:00
|
|
|
|
|
2022-09-09 15:56:00 -04:00
|
|
|
|
Next, we define the `Init` method. `Init` can return a `Cmd` that could perform
|
|
|
|
|
some initial I/O. For now, we don't need to do any I/O, so for the command,
|
2021-09-04 14:36:49 -04:00
|
|
|
|
we'll just return `nil`, which translates to "no command."
|
|
|
|
|
|
|
|
|
|
```go
|
2020-10-16 11:23:37 -04:00
|
|
|
|
func (m model) Init() tea.Cmd {
|
2020-10-15 20:41:54 -04:00
|
|
|
|
// Just return `nil`, which means "no I/O right now, please."
|
2020-10-17 09:46:22 -04:00
|
|
|
|
return nil
|
2020-10-15 20:41:54 -04:00
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
|
## The Update Method
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
Next up is the update method. The update function is called when ”things
|
|
|
|
|
happen.” Its job is to look at what has happened and return an updated model in
|
|
|
|
|
response. It can also return a `Cmd` to make more things happen, but for now
|
|
|
|
|
don't worry about that part.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
In our case, when a user presses the down arrow, `Update`’s job is to notice
|
2020-07-23 17:30:25 -04:00
|
|
|
|
that the down arrow was pressed and move the cursor accordingly (or not).
|
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
The “something happened” comes in the form of a `Msg`, which can be any type.
|
2020-07-23 22:27:51 -04:00
|
|
|
|
Messages are the result of some I/O that took place, such as a keypress, timer
|
|
|
|
|
tick, or a response from a server.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
We usually figure out which type of `Msg` we received with a type switch, but
|
|
|
|
|
you could also use a type assertion.
|
|
|
|
|
|
2020-07-23 17:51:47 -04:00
|
|
|
|
For now, we'll just deal with `tea.KeyMsg` messages, which are automatically
|
|
|
|
|
sent to the update function when keys are pressed.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
```go
|
2020-10-15 20:41:54 -04:00
|
|
|
|
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|
|
|
|
switch msg := msg.(type) {
|
|
|
|
|
|
|
|
|
|
// Is it a key press?
|
|
|
|
|
case tea.KeyMsg:
|
|
|
|
|
|
|
|
|
|
// Cool, what was the actual key pressed?
|
|
|
|
|
switch msg.String() {
|
|
|
|
|
|
|
|
|
|
// These keys should exit the program.
|
|
|
|
|
case "ctrl+c", "q":
|
|
|
|
|
return m, tea.Quit
|
|
|
|
|
|
|
|
|
|
// The "up" and "k" keys move the cursor up
|
|
|
|
|
case "up", "k":
|
|
|
|
|
if m.cursor > 0 {
|
|
|
|
|
m.cursor--
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// The "down" and "j" keys move the cursor down
|
|
|
|
|
case "down", "j":
|
|
|
|
|
if m.cursor < len(m.choices)-1 {
|
|
|
|
|
m.cursor++
|
2020-07-23 17:30:25 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-15 20:41:54 -04:00
|
|
|
|
// The "enter" key and the spacebar (a literal space) toggle
|
|
|
|
|
// the selected state for the item that the cursor is pointing at.
|
|
|
|
|
case "enter", " ":
|
|
|
|
|
_, ok := m.selected[m.cursor]
|
|
|
|
|
if ok {
|
|
|
|
|
delete(m.selected, m.cursor)
|
|
|
|
|
} else {
|
|
|
|
|
m.selected[m.cursor] = struct{}{}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
}
|
2020-10-15 20:41:54 -04:00
|
|
|
|
|
|
|
|
|
// Return the updated model to the Bubble Tea runtime for processing.
|
|
|
|
|
// Note that we're not returning a command.
|
|
|
|
|
return m, nil
|
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
```
|
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
You may have noticed that <kbd>ctrl+c</kbd> and <kbd>q</kbd> above return
|
|
|
|
|
a `tea.Quit` command with the model. That’s a special command which instructs
|
|
|
|
|
the Bubble Tea runtime to quit, exiting the program.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
|
## The View Method
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
At last, it’s time to render our UI. Of all the methods, the view is the
|
2022-09-09 15:56:00 -04:00
|
|
|
|
simplest. We look at the model in its current state and use it to return
|
2020-10-15 20:26:02 -04:00
|
|
|
|
a `string`. That string is our UI!
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
Because the view describes the entire UI of your application, you don’t have to
|
|
|
|
|
worry about redrawing logic and stuff like that. Bubble Tea takes care of it
|
2020-07-23 17:30:25 -04:00
|
|
|
|
for you.
|
|
|
|
|
|
|
|
|
|
```go
|
2020-10-15 20:41:54 -04:00
|
|
|
|
func (m model) View() string {
|
|
|
|
|
// The header
|
|
|
|
|
s := "What should we buy at the market?\n\n"
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-10-15 20:41:54 -04:00
|
|
|
|
// Iterate over our choices
|
|
|
|
|
for i, choice := range m.choices {
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-10-15 20:41:54 -04:00
|
|
|
|
// Is the cursor pointing at this choice?
|
|
|
|
|
cursor := " " // no cursor
|
|
|
|
|
if m.cursor == i {
|
|
|
|
|
cursor = ">" // cursor!
|
2020-07-23 17:30:25 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-15 20:41:54 -04:00
|
|
|
|
// Is this choice selected?
|
|
|
|
|
checked := " " // not selected
|
|
|
|
|
if _, ok := m.selected[i]; ok {
|
|
|
|
|
checked = "x" // selected!
|
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-10-15 20:41:54 -04:00
|
|
|
|
// Render the row
|
|
|
|
|
s += fmt.Sprintf("%s [%s] %s\n", cursor, checked, choice)
|
2020-07-23 17:30:25 -04:00
|
|
|
|
}
|
2020-10-15 20:41:54 -04:00
|
|
|
|
|
|
|
|
|
// The footer
|
|
|
|
|
s += "\nPress q to quit.\n"
|
|
|
|
|
|
|
|
|
|
// Send the UI for rendering
|
|
|
|
|
return s
|
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-07-23 22:17:35 -04:00
|
|
|
|
## All Together Now
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-10-15 20:26:02 -04:00
|
|
|
|
The last step is to simply run our program. We pass our initial model to
|
2020-07-23 17:30:25 -04:00
|
|
|
|
`tea.NewProgram` and let it rip:
|
|
|
|
|
|
|
|
|
|
```go
|
2020-10-15 20:41:54 -04:00
|
|
|
|
func main() {
|
2021-09-04 14:36:49 -04:00
|
|
|
|
p := tea.NewProgram(initialModel())
|
2020-10-15 20:41:54 -04:00
|
|
|
|
if err := p.Start(); err != nil {
|
|
|
|
|
fmt.Printf("Alas, there's been an error: %v", err)
|
|
|
|
|
os.Exit(1)
|
2020-07-23 17:30:25 -04:00
|
|
|
|
}
|
2020-10-15 20:41:54 -04:00
|
|
|
|
}
|
2020-07-23 17:30:25 -04:00
|
|
|
|
```
|
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
## What’s Next?
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
This tutorial covers the basics of building an interactive terminal UI, but
|
|
|
|
|
in the real world you'll also need to perform I/O. To learn about that have a
|
2020-07-23 22:35:25 -04:00
|
|
|
|
look at the [Command Tutorial][cmd]. It's pretty simple.
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-07-23 22:04:53 -04:00
|
|
|
|
There are also several [Bubble Tea examples][examples] available and, of course,
|
2020-07-23 17:58:52 -04:00
|
|
|
|
there are [Go Docs][docs].
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-07-23 22:04:53 -04:00
|
|
|
|
[cmd]: http://github.com/charmbracelet/bubbletea/tree/master/tutorials/commands/
|
2020-07-23 17:30:25 -04:00
|
|
|
|
[examples]: http://github.com/charmbracelet/bubbletea/tree/master/examples
|
2020-11-03 22:18:23 -05:00
|
|
|
|
[docs]: https://pkg.go.dev/github.com/charmbracelet/bubbletea?tab=doc
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
## Additional Resources
|
2020-07-23 22:04:53 -04:00
|
|
|
|
|
2021-09-04 14:36:49 -04:00
|
|
|
|
* [Libraries we use with Bubble Tea](https://github.com/charmbracelet/bubbletea/#libraries-we-use-with-bubble-tea)
|
|
|
|
|
* [Bubble Tea in the Wild](https://github.com/charmbracelet/bubbletea/#bubble-tea-in-the-wild)
|
2020-07-23 17:51:47 -04:00
|
|
|
|
|
2020-07-23 22:04:53 -04:00
|
|
|
|
### Feedback
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
2020-07-23 17:51:47 -04:00
|
|
|
|
We'd love to hear your thoughts on this tutorial. Feel free to drop us a note!
|
2020-07-23 17:30:25 -04:00
|
|
|
|
|
|
|
|
|
* [Twitter](https://twitter.com/charmcli)
|
|
|
|
|
* [The Fediverse](https://mastodon.technology/@charm)
|
2022-09-09 15:56:00 -04:00
|
|
|
|
* [Slack](https://charm.sh/slack)
|
2021-09-04 14:36:49 -04:00
|
|
|
|
|
|
|
|
|
***
|
|
|
|
|
|
|
|
|
|
Part of [Charm](https://charm.sh).
|
|
|
|
|
|
2022-09-09 15:56:00 -04:00
|
|
|
|
<a href="https://charm.sh/"><img alt="The Charm logo" src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a>
|
2021-09-04 14:36:49 -04:00
|
|
|
|
|
|
|
|
|
Charm热爱开源 • Charm loves open source
|