ratatui/examples/gauge.rs

159 lines
4.1 KiB
Rust
Raw Normal View History

2016-11-07 23:35:46 +00:00
extern crate termion;
2017-10-30 21:28:37 +00:00
extern crate tui;
2016-11-07 23:35:46 +00:00
use std::io;
2018-05-06 10:59:24 +00:00
use std::sync::mpsc;
2016-11-07 23:35:46 +00:00
use std::thread;
use std::time;
use termion::event;
use termion::input::TermRead;
2017-09-03 13:34:05 +00:00
use tui::backend::MouseBackend;
use tui::layout::{Constraint, Direction, Layout, Rect};
2017-10-30 21:28:37 +00:00
use tui::style::{Color, Modifier, Style};
2018-05-06 10:59:24 +00:00
use tui::widgets::{Block, Borders, Gauge, Widget};
2018-06-09 09:02:37 +00:00
use tui::Terminal;
2016-11-07 23:35:46 +00:00
struct App {
2017-05-08 19:34:41 +00:00
size: Rect,
2016-11-07 23:35:46 +00:00
progress1: u16,
progress2: u16,
progress3: u16,
progress4: u16,
}
impl App {
fn new() -> App {
App {
2017-05-08 19:34:41 +00:00
size: Rect::default(),
2016-11-07 23:35:46 +00:00
progress1: 0,
progress2: 0,
progress3: 0,
progress4: 0,
}
}
fn advance(&mut self) {
self.progress1 += 5;
if self.progress1 > 100 {
self.progress1 = 0;
}
self.progress2 += 10;
if self.progress2 > 100 {
self.progress2 = 0;
}
self.progress3 += 1;
if self.progress3 > 100 {
self.progress3 = 0;
}
self.progress4 += 3;
if self.progress4 > 100 {
self.progress4 = 0;
}
}
}
enum Event {
Input(event::Key),
Tick,
}
fn main() {
// Terminal initialization
2017-09-03 13:34:05 +00:00
let backend = MouseBackend::new().unwrap();
2016-11-07 23:35:46 +00:00
let mut terminal = Terminal::new(backend).unwrap();
// Channels
let (tx, rx) = mpsc::channel();
let input_tx = tx.clone();
let clock_tx = tx.clone();
// Input
thread::spawn(move || {
let stdin = io::stdin();
for c in stdin.keys() {
let evt = c.unwrap();
input_tx.send(Event::Input(evt)).unwrap();
if evt == event::Key::Char('q') {
break;
}
}
});
// Tick
2017-05-21 09:13:24 +00:00
thread::spawn(move || loop {
2017-09-11 05:58:37 +00:00
clock_tx.send(Event::Tick).unwrap();
thread::sleep(time::Duration::from_millis(500));
});
2016-11-07 23:35:46 +00:00
// App
let mut app = App::new();
// First draw call
terminal.clear().unwrap();
terminal.hide_cursor().unwrap();
2017-05-08 19:34:41 +00:00
app.size = terminal.size().unwrap();
draw(&mut terminal, &app).unwrap();
2016-11-07 23:35:46 +00:00
loop {
2017-05-08 19:34:41 +00:00
let size = terminal.size().unwrap();
if size != app.size {
terminal.resize(size).unwrap();
app.size = size;
}
2016-11-07 23:35:46 +00:00
let evt = rx.recv().unwrap();
match evt {
2017-10-30 21:28:37 +00:00
Event::Input(input) => if input == event::Key::Char('q') {
break;
},
2016-11-07 23:35:46 +00:00
Event::Tick => {
app.advance();
}
}
draw(&mut terminal, &app).unwrap();
2016-11-07 23:35:46 +00:00
}
terminal.show_cursor().unwrap();
}
fn draw(t: &mut Terminal<MouseBackend>, app: &App) -> Result<(), io::Error> {
t.draw(|mut f| {
let chunks = Layout::default()
.direction(Direction::Vertical)
.margin(2)
.constraints(
[
Constraint::Percentage(25),
Constraint::Percentage(25),
Constraint::Percentage(25),
Constraint::Percentage(25),
].as_ref(),
)
2018-08-12 22:27:56 +00:00
.split(app.size);
Gauge::default()
.block(Block::default().title("Gauge1").borders(Borders::ALL))
.style(Style::default().fg(Color::Yellow))
.percent(app.progress1)
2018-08-12 22:27:56 +00:00
.render(&mut f, chunks[0]);
Gauge::default()
.block(Block::default().title("Gauge2").borders(Borders::ALL))
.style(Style::default().fg(Color::Magenta).bg(Color::Green))
.percent(app.progress2)
.label(&format!("{}/100", app.progress2))
2018-08-12 22:27:56 +00:00
.render(&mut f, chunks[1]);
Gauge::default()
.block(Block::default().title("Gauge2").borders(Borders::ALL))
.style(Style::default().fg(Color::Yellow))
.percent(app.progress3)
2018-08-12 22:27:56 +00:00
.render(&mut f, chunks[2]);
Gauge::default()
.block(Block::default().title("Gauge3").borders(Borders::ALL))
.style(Style::default().fg(Color::Cyan).modifier(Modifier::Italic))
.percent(app.progress4)
.label(&format!("{}/100", app.progress2))
2018-08-12 22:27:56 +00:00
.render(&mut f, chunks[3]);
})
2016-11-07 23:35:46 +00:00
}