TUI components for Bubble Tea 🫧
Go to file
2022-09-06 13:28:31 -04:00
.github/workflows feat: sync bubbles with git.charm.sh 2022-01-24 17:08:23 -05:00
cursor feat(textarea): Add multi-line text input 2022-06-28 12:29:24 -04:00
help fix: lint warn 2022-04-29 12:20:18 -04:00
key perf: avoid recomputing the key representation in key.Matches 2022-08-12 16:07:31 -04:00
list feat(list): add IsFiltered method (#98) 2022-07-05 16:38:10 -04:00
paginator Deprecate NewModel() constructors; use New() instead 2022-01-11 11:26:13 -05:00
progress fix(progress): set a custom termenv color profile (#152) 2022-06-01 18:04:33 -07:00
spinner feat(spinners): Construct new spinners with WithSpinner + WithStyle options (#148) 2022-07-01 11:31:26 -04:00
stopwatch Expose stopwatch StartStopMsg and ResetMsg and bind them to IDs 2022-01-10 13:37:34 -05:00
table fix(table): append headers/columns to zero sized string slice 2022-09-02 16:30:15 -04:00
textarea textarea: support dynamic prompts 2022-09-02 14:31:26 -04:00
textinput fix: add ctrl+h to backspace text 2022-07-31 13:20:02 -04:00
timer fix(timer): stop should return cmd (#138) 2022-07-01 10:36:12 -04:00
viewport fix(viewport): properly truncate to size (#228) 2022-09-02 12:50:33 -07:00
.gitignore Initial commit. Add .gitignore 2020-01-18 10:56:08 -05:00
.golangci.yml Update linter config 2021-07-12 03:10:31 +02:00
bubbles.go Rename to Bubbles + copy over components from Bubble Tea + remove examples 2020-05-25 20:08:37 -04:00
go.mod chore: bump bubbletea, harmonica, lipgloss and termenv deps 2022-06-01 17:53:14 -07:00
go.sum chore: bump bubbletea, harmonica, lipgloss and termenv deps 2022-06-01 17:53:14 -07:00
LICENSE Add README and LICENSE 2020-01-27 21:29:52 -05:00
README.md docs: change tea{,party} to bubbletea 2022-09-06 13:28:31 -04:00

Bubbles

The Bubbles Logo

Latest Release GoDoc Build Status Go ReportCard

Some components for Bubble Tea applications. These components are used in production in Glow, Charm and many other applications.

Spinner

Spinner Example

A spinner, useful for indicating that some kind an operation is happening. There are a couple default ones, but you can also pass your own ”frames.”

Text Input

Text Input Example

A text input field, akin to an <input type="text"> in HTML. Supports unicode, pasting, in-place scrolling when the value exceeds the width of the element and the common, and many customization options.

Text Area

Text Area Example

A text area field, akin to an <textarea /> in HTML. Allows for input that spans multiple lines. Supports unicode, pasting, vertical scrolling when the value exceeds the width and height of the element, and many customization options.

Progress

Progressbar Example

A simple, customizable progress meter, with optional animation via Harmonica. Supports solid and gradient fills. The empty and filled runes can be set to whatever you'd like. The percentage readout is customizable and can also be omitted entirely.

Paginator

Paginator Example

A component for handling pagination logic and optionally drawing pagination UI. Supports "dot-style" pagination (similar to what you might see on iOS) and numeric page numbering, but you could also just use this component for the logic and visualize pagination however you like.

Viewport

Viewport Example

A viewport for vertically scrolling content. Optionally includes standard pager keybindings and mouse wheel support. A high performance mode is available for applications which make use of the alternate screen buffer.

This component is well complemented with Reflow for ANSI-aware indenting and text wrapping.

List

List Example

A customizable, batteries-included component for browsing a set of items. Features pagination, fuzzy filtering, auto-generated help, an activity spinner, and status messages, all of which can be enabled and disabled as needed. Extrapolated from Glow.

Timer

A simple, flexible component for counting down. The update frequency and output can be customized as you like.

Timer example

Stopwatch

Stopwatch example

A simple, flexible component for counting up. The update frequency and output can be customized as you see fit.

Help

Help Example

A customizable horizontal mini help view that automatically generates itself from your keybindings. It features single and multi-line modes, which the user can optionally toggle between. It will truncate gracefully if the terminal is too wide for the content.

Key

A non-visual component for managing keybindings. Its useful for allowing users to remap keybindings as well as generating help views corresponding to your keybindings.

type KeyMap struct {
    Up key.Binding
    Down key.Binding
}

var DefaultKeyMap = KeyMap{
    Up: key.NewBinding(
        key.WithKeys("k", "up"),        // actual keybindings
        key.WithHelp("↑/k", "move up"), // corresponding help text
    ),
    Down: key.NewBinding(
        key.WithKeys("j", "down"),
        key.WithHelp("↓/j", "move down"),
    ),
}

func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
    switch msg := msg.(type) {
    case tea.KeyMsg:
        switch {
        case key.Matches(msg, DefaultKeyMap.Up):
            // The user pressed up
        case key.Matches(msg, DefaultKeyMap.Down):
            // The user pressed down
        }
    }
    return m, nil
}

Additional Bubbles

  • 76creates/stickers: Responsive flexbox and table components.
  • calyptia/go-bubble-table: An interactive, customizable, scrollable table component.
  • erikgeiser/promptkit: A collection of common prompts for cases like selection, text input, and confirmation. Each prompt comes with sensible defaults, remappable keybindings, any many customization options.
  • evertras/bubble-table: Interactive, customizable, paginated tables.
  • knipferrc/teacup: Various handy bubbles and utilities for building Bubble Tea applications.
  • mritd/bubbles: Some general-purpose bubbles. Inputs with validation, menu selection, a modified progressbar, and so on.
  • treilik/bubbleboxer: Layout multiple bubbles side-by-side in a layout-tree.
  • treilik/bubblelister: An alternate list that is scrollable without pagination and has the ability to contain other bubbles as list items.

If youve built a Bubble you think should be listed here, let us know.

License

MIT


Part of Charm.

The Charm logo

Charm热爱开源 • Charm loves open source