11 releases (4 breaking)

0.5.2 Apr 15, 2024
0.5.0 Mar 14, 2024
0.4.0 Oct 5, 2023

#129 in Game dev

Download history 3/week @ 2024-01-01 9/week @ 2024-02-26 118/week @ 2024-03-04 146/week @ 2024-03-11 13/week @ 2024-03-18 23/week @ 2024-04-01 132/week @ 2024-04-08 147/week @ 2024-04-15

303 downloads per month
Used in rexplorer

MIT/Apache

39KB
968 lines

Widgetui

Turn

Ratatui Minimal
fn main() -> Result<(), Box<dyn Error>> {
    let mut terminal = setup_terminal()?;
    run(&mut terminal)?;
    restore_terminal(&mut terminal)?;
    Ok(())
}

fn setup_terminal() -> Result<Terminal<CrosstermBackend<Stdout>>, Box<dyn Error>> {
    let mut stdout = io::stdout();
    enable_raw_mode()?;
    execute!(stdout, EnterAlternateScreen)?;
    Ok(Terminal::new(CrosstermBackend::new(stdout))?)
}

fn restore_terminal(
    terminal: &mut Terminal<CrosstermBackend<Stdout>>,
) -> Result<(), Box<dyn Error>> {
    disable_raw_mode()?;
    execute!(terminal.backend_mut(), LeaveAlternateScreen,)?;
    Ok(terminal.show_cursor()?)
}

fn run(terminal: &mut Terminal<CrosstermBackend<Stdout>>) -> Result<(), Box<dyn Error>> {
    Ok(loop {
        terminal.draw(|frame| {
            let greeting = Paragraph::new("Hello World!");
            frame.render_widget(greeting, frame.size());
        })?;
        if event::poll(Duration::from_millis(250))? {
            if let Event::Key(key) = event::read()? {
                if KeyCode::Char('q') == key.code {
                    break;
                }
            }
        }
    })
}

Into

Much Better
use ratatui::widgets::Paragraph;

use widgetui::*;

fn widget(mut frame: ResMut<WidgetFrame>, mut events: ResMut<Events>) -> WidgetResult {
    let size = frame.size()
    frame.render_widget(Paragraph::new("Hello, world!"), size);

    if events.key(crossterm::event::KeyCode::Char('q')) {
        events.register_exit();
    }

    Ok(())
}

fn main() -> Result<(), Box<dyn Error>> {
    App::new(100)?.widgets(widget).run()
}

The goal of this project is to simplify the requirements to make a good project using tui. It removes boilerplate, and improves the developer experience by using the power of typemaps, and dependency injection

Installation

Run the following within your project directory

cargo add widgetui

Introduction

Widgetui is a wrapper over Ratatui's Crossterm backend which allows for powerful abstraction, and simplifies creating a good app within Ratatui.

Why pick this over Ratatui?

Widgetui isn't meant to replace or undermine Ratatui. It is simply a wrapper. Without Ratatui, this crate would not exist, as well, you will still require Ratatui and Crossterm crates just to work with the apps.

TLDR; Don't, use both together to improve developer experience, and build your apps faster!

Quickstart

use ratatui::widgets::Paragraph;

use widgetui::*;

fn widget(mut frame: ResMut<WidgetFrame>, mut events: ResMut<Events>) -> WidgetResult {
    let size = frame.size()
    frame.render_widget(Paragraph::new("Hello, world!"), size);

    if events.key(crossterm::event::KeyCode::Char('q')) {
        events.register_exit();
    }

    Ok(())
}

fn main() -> Result<(), Box<dyn Error>> {
    App::new(100)?.widgets(widget).run()
}

The above will create an application that will display an empty terminal window, then close once you press q.

This application, with many less lines, will render the same thing that Ratatui's Quickstart renders.

Documentation

Documentation can be found on docs.rs. Need help? Check the wiki!

Fun Facts

  • I chose WidgetFrame because if I just used Widget, then you couldn't do the awesome
use widgetui::*;
use widgetui::ratatui::prelude::*;
  • It took about 10 hours to get this project initially set up!

    • Much longer after I decided to add bevy system like widget methods.
  • You used to have to take in a States struct, but in order to fix it, there is a lot of behind the scenes things going on!

  • You can only use 11 states in the same widget!

    • If you need more, please add an issue with details on why, and we may consider adding access to more at once!

Dependencies

~6–13MB
~117K SLoC