use std::error::Error;
use std::time::Duration;
use tui_realm_stdlib::components::Table;
use tuirealm::application::PollStrategy;
use tuirealm::command::{Cmd, CmdResult, Direction, Position};
use tuirealm::component::{AppComponent, Component};
use tuirealm::event::{Event, Key, KeyEvent, NoUserEvent};
use tuirealm::props::{
BorderType, Borders, Color, HorizontalAlignment, Style, TableBuilder, TextModifiers, Title,
};
use tuirealm::ratatui::layout::{Constraint, Direction as LayoutDirection, Layout};
use tuirealm::ratatui::text::Line;
use tuirealm::terminal::TerminalAdapter;
mod utils;
use utils::Model;
#[derive(Debug, PartialEq)]
pub enum Msg {
AppClose,
TableAlfaBlur,
TableBetaBlur,
Redraw,
}
#[derive(Debug, Eq, PartialEq, Clone, Hash)]
pub enum Id {
TableAlfa,
TableBeta,
}
impl Model<Id, Msg> {
fn view(&mut self) {
self.terminal
.draw(|f| {
let chunks = Layout::default()
.direction(LayoutDirection::Vertical)
.margin(1)
.constraints(
[
Constraint::Length(15),
Constraint::Length(6),
Constraint::Length(1),
]
.as_ref(),
)
.split(f.area());
self.app.view(&Id::TableAlfa, f, chunks[0]);
self.app.view(&Id::TableBeta, f, chunks[1]);
})
.expect("Drawing to the terminal failed");
}
fn update(&mut self, msg: Msg) {
self.redraw = true;
match msg {
Msg::AppClose => {
self.quit = true;
}
Msg::TableAlfaBlur => {
assert!(self.app.active(&Id::TableBeta).is_ok());
}
Msg::TableBetaBlur => {
assert!(self.app.active(&Id::TableAlfa).is_ok());
}
Msg::Redraw => (),
}
}
fn mount_main(&mut self) -> Result<(), Box<dyn Error>> {
self.app
.mount(Id::TableAlfa, Box::new(TableAlfa::default()), vec![])?;
self.app
.mount(Id::TableBeta, Box::new(TableBeta::default()), vec![])?;
self.app.active(&Id::TableAlfa)?;
Ok(())
}
}
fn main() {
let mut model = Model::new();
model.mount_main().expect("Mount all main components");
while !model.quit {
if let Ok(messages) = model
.app
.tick(PollStrategy::Once(Duration::from_millis(10)))
{
for msg in messages {
model.update(msg);
}
}
if model.redraw {
model.view();
model.redraw = false;
}
}
}
#[derive(Component)]
struct TableAlfa {
component: Table,
}
const STYLE_BOLD: Style = Style::new().bold();
impl Default for TableAlfa {
fn default() -> Self {
Self {
component: Table::default()
.borders(
Borders::default()
.modifiers(BorderType::Thick)
.color(Color::Yellow),
)
.foreground(Color::Yellow)
.background(Color::Black)
.inactive(Style::new().fg(Color::Gray))
.title(Title::from("Keybindings").alignment(HorizontalAlignment::Center))
.scroll(true)
.highlight_style(
Style::new()
.fg(Color::LightYellow)
.add_modifier(TextModifiers::REVERSED),
)
.highlight_style_inactive(Style::new().remove_modifier(TextModifiers::REVERSED))
.highlight_str("🚀")
.rewind(true)
.step(4)
.row_height(1)
.headers(["Key", "Msg", "Description"])
.column_spacing(3)
.widths(&[30, 20, 50])
.table(
TableBuilder::default()
.add_col(Line::styled("KeyCode::Down", STYLE_BOLD))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor down"))
.add_row()
.add_col(Line::styled("KeyCode::Up", STYLE_BOLD))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor up"))
.add_row()
.add_col(Line::styled("KeyCode::PageDown", STYLE_BOLD))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor down by 8"))
.add_row()
.add_col(Line::styled("KeyCode::PageUp", STYLE_BOLD))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor up by 8"))
.add_row()
.add_col(Line::styled("KeyCode::End", STYLE_BOLD))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor to last item"))
.add_row()
.add_col(Line::styled("KeyCode::Home", STYLE_BOLD))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor to first item"))
.add_row()
.add_col(Line::styled("KeyCode::Char(_)", STYLE_BOLD))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Return pressed key"))
.build(),
),
}
}
}
impl AppComponent<Msg, NoUserEvent> for TableAlfa {
fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
match ev.as_keyboard()? {
KeyEvent {
code: Key::Down, ..
} => self.perform(Cmd::Move(Direction::Down)),
KeyEvent { code: Key::Up, .. } => self.perform(Cmd::Move(Direction::Up)),
KeyEvent {
code: Key::PageDown,
..
} => self.perform(Cmd::Scroll(Direction::Down)),
KeyEvent {
code: Key::PageUp, ..
} => self.perform(Cmd::Scroll(Direction::Up)),
KeyEvent {
code: Key::Home, ..
} => self.perform(Cmd::GoTo(Position::Begin)),
KeyEvent { code: Key::End, .. } => self.perform(Cmd::GoTo(Position::End)),
KeyEvent { code: Key::Tab, .. } => return Some(Msg::TableAlfaBlur),
KeyEvent { code: Key::Esc, .. } => return Some(Msg::AppClose),
_ => CmdResult::NoChange,
};
Some(Msg::Redraw)
}
}
#[derive(Component)]
struct TableBeta {
component: Table,
}
impl Default for TableBeta {
fn default() -> Self {
Self {
component: Table::default()
.borders(
Borders::default()
.modifiers(BorderType::Rounded)
.color(Color::Green),
)
.foreground(Color::Green)
.background(Color::Gray)
.inactive(Style::new().fg(Color::Gray))
.title(
Title::from("Keybindings (not scrollable)")
.alignment(HorizontalAlignment::Center),
)
.scroll(false)
.highlight_str(">> ")
.row_height(1)
.headers(["Key", "Msg", "Description"])
.column_spacing(3)
.widths(&[30, 20, 50])
.table(
TableBuilder::default()
.add_col(Line::from("KeyCode::Down"))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor down"))
.add_row()
.add_col(Line::from("KeyCode::Up"))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor up"))
.add_row()
.add_col(Line::from("KeyCode::PageDown"))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor down by 8"))
.add_row()
.add_col(Line::from("KeyCode::PageUp"))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor up by 8"))
.add_row()
.add_col(Line::from("KeyCode::End"))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor to last item"))
.add_row()
.add_col(Line::from("KeyCode::Home"))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Move cursor to first item"))
.add_row()
.add_col(Line::from("KeyCode::Char(_)"))
.add_col(Line::from("OnKey"))
.add_col(Line::from("Return pressed key"))
.build(),
),
}
}
}
impl AppComponent<Msg, NoUserEvent> for TableBeta {
fn on(&mut self, ev: &Event<NoUserEvent>) -> Option<Msg> {
match ev.as_keyboard()? {
KeyEvent { code: Key::Tab, .. } => return Some(Msg::TableBetaBlur),
KeyEvent { code: Key::Esc, .. } => return Some(Msg::AppClose),
_ => CmdResult::NoChange,
};
Some(Msg::Redraw)
}
}