Crates.io | yeehaw |
lib.rs | yeehaw |
version | |
source | src |
created_at | 2024-03-27 08:18:10.259039+00 |
updated_at | 2025-01-04 22:14:47.109115+00 |
description | Batteries Included Text Based Application Framework |
homepage | |
repository | https://github.com/bogzbonny/yeehaw |
max_upload_size | |
id | 1187620 |
Cargo.toml error: | TOML parse error at line 21, column 1 | 21 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
~ Batteries Included Text Based Application Framework ~
yeehaw was born out of a need for an embeddable and reusable element pattern for sophisticated text based applications.
🖐️ Reasons why you need your application to be text-based:
https://github.com/user-attachments/assets/8b1c715a-4a26-4cdc-b3cd-9a8f10dd187e
running this example:
cargo run --release --example showcase
A hello world example with a label and a reactive button:
use yeehaw::*;
#[tokio::main]
async fn main() -> Result<(), Error> {
let (mut tui, ctx) = Tui::new()?;
let main_el = ParentPane::new(&ctx, "main_element");
// place the label at 30% of the screen width and height
let label = Label::new(&ctx, "Hello, World!").at(0.3, 0.3);
// place the button 1 character below the label
let x = DynVal::new_flex(0.3); // 30% screen width
let y = DynVal::new_flex(0.3).plus(1.into()); // 30% screen height + 1 ch
let label_ = label.clone(); // clone for closure move
let button = Button::new(&ctx, "Click Here!")
.with_fn(Box::new(move |_, _| {
label_.set_text("Button clicked!".to_string());
EventResponses::default()
}))
.at(x, y);
main_el.add_element(Box::new(label));
main_el.add_element(Box::new(button));
tui.run(Box::new(main_el)).await
}
Elements are arranged in a hierarchical manner while retaining semi-autonomy. Events (keyboard/mouse/custom) are routed from the top down (adjusted to be relative to the each destination Element) and responses then propagate back upwards along the Element ownership tree. Parent elements retain general authority over child elements; they determine how the flow of events are channeled and the location and size of child elements. Simple elements are only required to have spatial awareness within the confines provided to them (events are made relative to them by their parents) - although autonomy is still given for them to change their ordering and position within their immediate parent element (with great power comes great responsibility).
In addition to the event-response communication structure elements may directly interact through element-specific hooks (e.g. the button click function on a button element).
The core Element Trait has designed to be extensible for custom event/response kinds enabling developers to create entirely new sub-classes of elements which can reuse the event routing system logic.
Looking to understand more? Checkout:
pub
as possible to allow for more experimentation
without requiring forks of the repo. (Eventually put all the excess pub under
an internals
feature flag to reduce breaking changes).If you plan on building/experimenting with yeehaw right now, that's great news! I'd like to keep you apprised of some upcoming changes. If you do wish to experiment and or start development on yeehaw I wouldn't be too afraid of these upcoming changes, the majority of foreseeable major refactors have already been completed. While yeehaw is pre-1.0.0 all breaking changes will bd semver minor version upgrades - in other words I don't plan on providing patch updates for bug fixes for minor versions.
I'll try'n help out anyone who needs a hand understanding how to update their code if its been broken by a new release. Additionally a breaking changes doc with upgrade instructions shall be maintained.
HAVE NO FEAR
DynLocationSet
system. It won't change the existing location mechanisms just build on
top of them.DynVal::FULL
). Gradients on
angles which are repetitive (DynVal::fixed(..)
) work good, however the way
the angle is interpreted will likely change to account for cell dimensions.
Gradients on right-angles (0, 90, 180, 270 degrees) are stable.Yes! It'd be cool for this repo to become a mega repo. I want all sorts of funky widgets in this baby with first class support from this project (hiding behind feature flags to not gum up the compile times). All ideas will be considered with an open mind, if you'd like to build and element and merge it into yeehaw it'd be an honour, if you'd like to build a element with highly specific needs and the current Element trait is non-satisfactory, let's upgrade it. In the future, This repo will be transitioning to dynamic ownership based on contributions, so if your code becomes merged then your be gaining a specialized part piece of ownership in the project whenever dynamic ownership is integrated in (more on that later!).
Any contribution you intentionally submit for inclusion in the work, as defined in the Apache-2.0 license, shall be Apache-2.0 license, without any additional terms or conditions.