2022-06-11 01:07:40 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
feat: `gum choose`, pick from a list of choices
gum choose allows the user to be prompted for a choice from a list of choices.
For example, let's ask the user to pick a card from a deck.
gum choose --height 15 {Ace,King,Queen,Jack,Ten,Nine,Eight,Seven,Six,Five,Four,Three,Two}" of "{Spades,Hearts,Clubs,Diamonds}
2022-07-11 23:17:47 +03:00
|
|
|
"github.com/charmbracelet/gum/choose"
|
2022-07-08 20:58:14 +03:00
|
|
|
"github.com/charmbracelet/gum/filter"
|
2022-07-07 20:26:35 +03:00
|
|
|
"github.com/charmbracelet/gum/input"
|
2022-07-08 02:28:44 +03:00
|
|
|
"github.com/charmbracelet/gum/join"
|
2022-07-07 20:26:35 +03:00
|
|
|
"github.com/charmbracelet/gum/progress"
|
|
|
|
"github.com/charmbracelet/gum/spin"
|
|
|
|
"github.com/charmbracelet/gum/style"
|
|
|
|
"github.com/charmbracelet/gum/write"
|
2022-06-11 01:07:40 +03:00
|
|
|
)
|
|
|
|
|
2022-07-13 05:12:02 +03:00
|
|
|
// Gum is the command-line interface for Gum.
|
2022-07-07 20:26:35 +03:00
|
|
|
type Gum struct {
|
2022-06-11 01:07:40 +03:00
|
|
|
// Input provides a shell script interface for the text input bubble.
|
2022-07-11 17:41:16 +03:00
|
|
|
// https://github.com/charmbracelet/bubbles/tree/master/textinput
|
2022-06-11 01:07:40 +03:00
|
|
|
//
|
|
|
|
// It can be used to prompt the user for some input. The text the user
|
|
|
|
// entered will be sent to stdout.
|
|
|
|
//
|
2022-07-07 20:26:35 +03:00
|
|
|
// $ gum input --placeholder "What's your favorite gum?" > answer.text
|
2022-06-11 01:07:40 +03:00
|
|
|
//
|
2022-07-13 05:12:02 +03:00
|
|
|
Input input.Options `cmd:"" help:"Prompt for some input"`
|
2022-06-11 01:07:40 +03:00
|
|
|
|
2022-07-06 21:38:40 +03:00
|
|
|
// Write provides a shell script interface for the text area bubble.
|
2022-07-11 17:41:16 +03:00
|
|
|
// https://github.com/charmbracelet/bubbles/tree/master/textarea
|
2022-07-06 21:38:40 +03:00
|
|
|
//
|
|
|
|
// It can be used to ask the user to write some long form of text
|
|
|
|
// (multi-line) input. The text the user entered will be sent to stdout.
|
|
|
|
//
|
2022-07-07 20:26:35 +03:00
|
|
|
// $ gum write > output.text
|
2022-07-06 21:38:40 +03:00
|
|
|
//
|
2022-07-13 05:12:02 +03:00
|
|
|
Write write.Options `cmd:"" help:"Prompt for long-form text"`
|
2022-07-06 21:38:40 +03:00
|
|
|
|
2022-07-08 20:58:14 +03:00
|
|
|
// Filter provides a fuzzy searching text input to allow filtering a list of
|
2022-06-11 01:07:40 +03:00
|
|
|
// options to select one option.
|
|
|
|
//
|
|
|
|
// By default it will list all the files (recursively) in the current directory
|
|
|
|
// for the user to choose one, but the script (or user) can provide different
|
|
|
|
// new-line separated options to choose from.
|
|
|
|
//
|
2022-07-07 20:26:35 +03:00
|
|
|
// I.e. let's pick from a list of gum flavors:
|
2022-06-11 01:07:40 +03:00
|
|
|
//
|
2022-07-08 20:58:14 +03:00
|
|
|
// $ cat flavors.text | gum filter
|
2022-06-11 01:07:40 +03:00
|
|
|
//
|
2022-07-13 05:12:02 +03:00
|
|
|
Filter filter.Options `cmd:"" help:"Filter items from a list"`
|
2022-06-11 01:07:40 +03:00
|
|
|
|
feat: `gum choose`, pick from a list of choices
gum choose allows the user to be prompted for a choice from a list of choices.
For example, let's ask the user to pick a card from a deck.
gum choose --height 15 {Ace,King,Queen,Jack,Ten,Nine,Eight,Seven,Six,Five,Four,Three,Two}" of "{Spades,Hearts,Clubs,Diamonds}
2022-07-11 23:17:47 +03:00
|
|
|
// Choose provides an interface to choose one option from a given list of
|
|
|
|
// options. The options can be provided as (new-line separated) stdin or a
|
|
|
|
// list of arguments.
|
|
|
|
//
|
|
|
|
// It is different from the filter command as it does not provide a fuzzy
|
|
|
|
// finding input, so it is best used for smaller lists of options.
|
|
|
|
//
|
|
|
|
// Let's pick from a list of gum flavors:
|
|
|
|
//
|
|
|
|
// $ gum choose "Strawberry" "Banana" "Cherry"
|
|
|
|
//
|
2022-07-13 05:12:02 +03:00
|
|
|
Choose choose.Options `cmd:"" help:"Choose an option from a list of choices"`
|
feat: `gum choose`, pick from a list of choices
gum choose allows the user to be prompted for a choice from a list of choices.
For example, let's ask the user to pick a card from a deck.
gum choose --height 15 {Ace,King,Queen,Jack,Ten,Nine,Eight,Seven,Six,Five,Four,Three,Two}" of "{Spades,Hearts,Clubs,Diamonds}
2022-07-11 23:17:47 +03:00
|
|
|
|
2022-06-11 01:07:40 +03:00
|
|
|
// Spin provides a shell script interface for the spinner bubble.
|
2022-07-11 17:41:16 +03:00
|
|
|
// https://github.com/charmbracelet/bubbles/tree/master/spinner
|
2022-06-11 01:07:40 +03:00
|
|
|
//
|
|
|
|
// It is useful for displaying that some task is running in the background
|
|
|
|
// while consuming it's output so that it is not shown to the user.
|
|
|
|
//
|
|
|
|
// For example, let's do a long running task:
|
|
|
|
// $ sleep 5
|
|
|
|
//
|
|
|
|
// We can simply prepend a spinner to this task to show it to the user,
|
|
|
|
// while performing the task / command in the background.
|
|
|
|
//
|
2022-07-07 20:26:35 +03:00
|
|
|
// $ gum spin -t "Taking a nap..." -- sleep 5
|
2022-06-11 01:07:40 +03:00
|
|
|
//
|
|
|
|
// The spinner will automatically exit when the task is complete.
|
2022-07-13 05:12:02 +03:00
|
|
|
Spin spin.Options `cmd:"" help:"Display spinner while running a command"`
|
2022-06-11 01:07:40 +03:00
|
|
|
|
2022-07-07 20:26:35 +03:00
|
|
|
// Progress provides a shell script interface for the progress bubble.
|
2022-07-11 17:41:16 +03:00
|
|
|
// https://github.com/charmbracelet/bubbles/tree/master/progress
|
2022-07-07 20:26:35 +03:00
|
|
|
//
|
|
|
|
// It's useful for indicating that something is happening in the background
|
|
|
|
// that will end after some set time.
|
|
|
|
//
|
2022-07-13 05:12:02 +03:00
|
|
|
Progress progress.Options `cmd:"" help:"Display a progress bar for a certain time"`
|
2022-07-07 20:26:35 +03:00
|
|
|
|
2022-06-11 01:07:40 +03:00
|
|
|
// Style provides a shell script interface for Lip Gloss.
|
|
|
|
// https://github.com/charmbracelet/lipgloss
|
|
|
|
//
|
|
|
|
// It allows you to use Lip Gloss to style text without needing to use Go.
|
|
|
|
// All of the styling options are available as flags.
|
|
|
|
//
|
|
|
|
// Let's make some text glamorous using bash:
|
|
|
|
//
|
2022-07-07 20:26:35 +03:00
|
|
|
// $ gum style \
|
|
|
|
// --foreground "#FF06B7" --border "double" --align "center" \
|
|
|
|
// --width 50 --margin 2 --padding "2 4" \
|
|
|
|
// "Bubble Gum (1¢)" "So sweet and so fresh\!"
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ╔══════════════════════════════════════════════════╗
|
|
|
|
// ║ ║
|
|
|
|
// ║ ║
|
|
|
|
// ║ Bubble Gum (1¢) ║
|
|
|
|
// ║ So sweet and so fresh! ║
|
|
|
|
// ║ ║
|
|
|
|
// ║ ║
|
|
|
|
// ╚══════════════════════════════════════════════════╝
|
2022-06-11 01:07:40 +03:00
|
|
|
//
|
2022-07-13 05:12:02 +03:00
|
|
|
Style style.Options `cmd:"" help:"Apply coloring, borders, spacing to text"`
|
2022-07-08 02:28:44 +03:00
|
|
|
|
|
|
|
// Join provides a shell script interface for the lipgloss JoinHorizontal
|
2022-07-08 17:23:45 +03:00
|
|
|
// and JoinVertical commands. It allows you to join multi-line text to
|
|
|
|
// build different layouts.
|
|
|
|
//
|
|
|
|
// For example, you can place two bordered boxes next to each other:
|
|
|
|
// Note: We wrap the variable in quotes to ensure the new lines are part of a
|
|
|
|
// single argument. Otherwise, the command won't work as expected.
|
|
|
|
//
|
|
|
|
// $ gum join --horizontal "$BUBBLE_BOX" "$GUM_BOX"
|
|
|
|
//
|
|
|
|
// ╔══════════════════════╗╔═════════════╗
|
|
|
|
// ║ ║║ ║
|
|
|
|
// ║ Bubble ║║ Gum ║
|
|
|
|
// ║ ║║ ║
|
|
|
|
// ╚══════════════════════╝╚═════════════╝
|
2022-07-08 02:28:44 +03:00
|
|
|
//
|
2022-07-13 05:12:02 +03:00
|
|
|
Join join.Options `cmd:"" help:"Join text vertically or horizontally"`
|
2022-06-11 01:07:40 +03:00
|
|
|
}
|