bartender
bartender copied to clipboard
Customizable progress indicators for V terminal applications.
bartender
Customizable bars for v term apps.

Getting started
Install via v cli
-
From source
v install --git https://github.com/tobealive/bartenderimport bartender -
As vpm module
v install tobealive.bartenderimport tobealive.bartender
Usage examples
-
Simple bars
// Defaul bar mut b := Bar{} for _ in 0 .. b.iters { b.progress() } // Customized bar mut b2 := Bar{ width: 60 runes: BarRunes{ progress: `#` indicator: `❯` remaining: `-` } pre: '|' post: Affix{ pending: '| Loading...' finished: '| Done!' } } for _ in 0 .. b2.iters { b2.progress() } -
Smooth bar themes
mut b := SmoothBar{ theme: Theme.pull // Default = Theme.push } for _ in 0 .. b.iters { b.progress() } b2 = SmoothBar{ theme: ThemeVariant{.pull, .drain} } for _ in 0 .. b2.iters { b2.progress() } // Customized smooth bar mut b3 := SmoothBar{ theme: Theme.split width: 80 pre: '│' post: fn (b SmoothBar) (string, string) { return '│ Saving... ${b.pct()}% ${term.blue(b.eta(20))}', '│ Saved!' } } b3.colorize(.cyan) for _ in 0 .. b3.iters { b3.progress() } -
Bar Reader for
iooperations.// Returns an `io.BufferedReader` that displays a progressing bar when used in a reader operation. pub fn (b Bar) reader(reader io.Reader, size u64) &io.BufferedReadermut src_file := os.open(src_file_path)! mut dst_file := os.create(dst_file_path)! bar := bartender.Bar{} mut bar_reader := bar.reader(src_file, os.file_size(src_file_path)) io.cp(mut bar_reader, mut dst_file)!
Run examples
Extended and executable examples can be found in the examples directory.
v run examples/<file>.v
Showcase
Simple bar Toggle visibility...

Color and style customizations. Toggle visibility...

Smooth bars. Toggle visibility...

Disclaimer
Until a stable version 1.0 is available, new features will be introduced, existing ones may change,
or breaking changes may occur in minor(0.<minor>.*) versions.
Outlook
Below are some of the things to look forward to.
- [x] Reader Interface
- [x] Multiline (Smooth Bar Split Themes are not supported yet)
- [x] Time Remaining
- [ ] Dynamic adjustment on term resize for all variants (basic width detection works)
- [ ] Extend visuals & customizability
Anowledgements
- Waqar144/progressbar inspired the start of project.
- console-rs/indicatif serves as inspiration for further development.
- ArtemkaKun/v-project-basement served as a base for CI scripts and issue templates