Expand description
§Why R3BL?
R3BL TUI library & suite of apps focused on developer productivity
We are working on building command line apps in Rust which have rich text user interfaces (TUI). We want to lean into the terminal as a place of productivity, and build all kinds of awesome apps for it.
-
🔮 Instead of just building one app, we are building a library to enable any kind of rich TUI development w/ a twist: taking concepts that work really well for the frontend mobile and web development world and re-imagining them for TUI & Rust.
- Taking inspiration from things like React, SolidJS, Elm, iced-rs, Jetpack Compose, JSX, CSS, but making everything async (so they can be run in parallel & concurrent via Tokio).
- Even the thread running the main event loop doesn’t block since it is async.
- Using proc macros to create DSLs to implement something inspired by CSS & JSX.
-
🌎 We are building apps to enhance developer productivity & workflows.
- The idea here is not to rebuild
tmux
in Rust (separate processes mux’d onto a single terminal window). Rather it is to build a set of integrated “apps” (or “tasks”) that run in the same process that renders to one terminal window. - Inside of this terminal window, we can implement things like “app” switching, routing, tiling layout, stacking layout, etc. so that we can manage a lot of TUI apps (which are tightly integrated) that are running in the same process, in the same window. So you can imagine that all these “app“s have shared application state (that is in a Redux store). Each “app” may also have its own Redux store.
- Here are some examples of the types of “app“s we want to build:
- multi user text editors w/ syntax highlighting
- integrations w/ github issues
- integrations w/ calendar, email, contacts APIs
- The idea here is not to rebuild
All the crates in the r3bl-open-core
repo provide lots of useful
functionality to help you build TUI (text user interface) apps, along w/ general
niceties & ergonomics that all Rustaceans 🦀 can enjoy 🎉.
§Table of contents
§Introduction
This crate provides lots of low level functionality like Unicode strings (that support emoji), text styling, and more.
It is a dependency of the following crates:
r3bl_tui
r3bl_tuify
r3bl_terminal_async
r3bl_cmdr
r3bl_macro
(procedural macros)
Due to the requirements of proc macros being in a separate crate, this breakdown of one crate into multiple crates is necessary:
- Put some code in a separate crate (
r3bl_core
) that is used by other crates. - Put the proc macros in a separate crate (
r3bl_macro
). This crate also depends on ther3bl_core
crate. - Finally, make your crate depend on the other two.
All the modules tend to be re-exported, making them available from the “main” or top-level crate; more info on this here.
§Changelog
Please check out the changelog to see how the library has evolved over time.
§Learn how these crates are built, provide feedback
To learn how we built this crate, please take a look at the following resources.
- If you like consuming video content, here’s our YT channel. Please consider subscribing.
- If you like consuming written content, here’s our developer site. Please consider subscribing to our newsletter.
- If you have questions, please join our discord server.
Re-exports§
pub use common::*;
pub use decl_macros::*;
pub use logging::*;
pub use misc::*;
pub use storage::*;
pub use term::*;
pub use terminal_io::*;
pub use tracing_logging::*;
pub use tui_core::*;
Modules§
- common
- decl_
macros - logging
- misc
- storage
- term
- terminal_
io - tracing_
logging - tui_
core - All the modules this crate are in support of the
r3bl_tui
crate.
Macros§
- add_
unsigned - Safely adds two unsigned numbers and returns the result. Does not panic.
- assert_
eq2 - A wrapper for
pretty_assertions::assert_eq!
macro. - assert_
eq2_ og - Similar to
assert_eq!
but automatically prints the left and right hand side variables if the assertion fails. - call_
if_ true - Syntactic sugar to run a conditional statement. Here’s an example.
- ch
- Creates a new ChUnit amount.
- color
- console_
log - This is a really simple macro to make it effortless to use the color console logger.
- create_
fmt - Avoid gnarly type annotations by using a macro to create the
fmt
layer. Note that tracing_subscriber::fmt::format::Pretty and tracing_subscriber::fmt::format::Compact are mutually exclusive. - dec_
unsigned - Safely decrements an unsigned number. Does not panic.
- get_
tui_ style - get_
tui_ styles - inc_
unsigned - Safely increments an unsigned number. Does not panic.
- mul_
unsigned - ok
- Simple macro to create a
Result
with anOk
variant. It is just syntactic sugar that helps having to writeOk(())
. - output_
device_ as_ mut - Macro to simplify locking and getting a mutable reference to the output device.
- percent
- position
- print_
header - requested_
size_ percent - This must be called from a block that returns a
Result
type. Since the?
operator is used here. - send_
signal - Send a signal to the main thread of app to render. The two things to pass in this macro are
- size
- Example:
- sub_
unsigned - Safely subtracts two unsigned numbers and returns the result. Does not panic.
- throws
- Wrap the given block or stmt so that it returns a Result<()>. It is just syntactic sugar that helps having to write Ok(()) repeatedly.
- throws_
with_ return - Wrap the given block or stmt so that it returns a Result<$it>. It is just syntactic sugar that helps having to write Ok($it) repeatedly.
- timed
- A decl macro that generates code to measure the performance of the block that it surrounds.
- tui_
styled_ text - Macro to make building TuiStyledText easy.
- tui_
styled_ texts - Macro to make building
TuiStyledTexts
easy. - tui_
stylesheet - Macro to make building TuiStylesheet easy.
- unwrap_
option_ or_ compute_ if_ none - Basically a way to compute something lazily when it (the
Option
) is set toNone
. - unwrap_
option_ or_ run_ fn_ returning_ err - Unwrap the
$option
, and ifNone
then run the$next
closure which must return an error. This macro must be called in a block that returns aCommonResult<T>
. - with
- Runs the
$code
block after evaluating the$eval
expression and assigning it to$id
. - with_
mut - Similar to
with!
except$id
is a mutable reference to the$eval
expression. - with_
mut_ returns - Similar to
with_mut!
except that it returns the value of the$code
block.