2018-01-27 09:27:26 +00:00
|
|
|
/// A simple example demonstrating how to handle user input. This is
|
|
|
|
/// a bit out of the scope of the library as it does not provide any
|
|
|
|
/// input handling out of the box. However, it may helps some to get
|
|
|
|
/// started.
|
|
|
|
///
|
|
|
|
/// This is a very simple example:
|
|
|
|
/// * A input box always focused. Every character you type is registered
|
|
|
|
/// here
|
|
|
|
/// * Pressing Backspace erases a character
|
|
|
|
/// * Pressing Enter pushes the current input in the history of previous
|
|
|
|
/// messages
|
|
|
|
|
2018-09-23 18:59:51 +00:00
|
|
|
#[allow(dead_code)]
|
|
|
|
mod util;
|
2018-01-27 09:27:26 +00:00
|
|
|
|
2019-01-06 11:57:06 +00:00
|
|
|
use crate::util::event::{Event, Events};
|
2020-03-13 01:02:51 +00:00
|
|
|
use std::{
|
|
|
|
error::Error,
|
|
|
|
io::{self, Write},
|
|
|
|
};
|
|
|
|
use termion::{
|
|
|
|
cursor::Goto, event::Key, input::MouseTerminal, raw::IntoRawMode, screen::AlternateScreen,
|
|
|
|
};
|
|
|
|
use tui::{
|
|
|
|
backend::TermionBackend,
|
|
|
|
layout::{Constraint, Direction, Layout},
|
|
|
|
style::{Color, Style},
|
|
|
|
widgets::{Block, Borders, List, Paragraph, Text},
|
|
|
|
Terminal,
|
|
|
|
};
|
|
|
|
use unicode_width::UnicodeWidthStr;
|
2018-09-23 18:59:51 +00:00
|
|
|
|
2020-01-19 17:41:00 +00:00
|
|
|
enum InputMode {
|
|
|
|
Normal,
|
|
|
|
Editing,
|
|
|
|
}
|
|
|
|
|
2018-09-23 18:59:51 +00:00
|
|
|
/// App holds the state of the application
|
2018-01-27 09:27:26 +00:00
|
|
|
struct App {
|
2018-09-23 18:59:51 +00:00
|
|
|
/// Current value of the input box
|
2018-01-27 09:27:26 +00:00
|
|
|
input: String,
|
2020-01-19 17:41:00 +00:00
|
|
|
/// Current input mode
|
|
|
|
input_mode: InputMode,
|
2018-09-23 18:59:51 +00:00
|
|
|
/// History of recorded messages
|
2018-01-27 09:27:26 +00:00
|
|
|
messages: Vec<String>,
|
|
|
|
}
|
|
|
|
|
2018-09-23 18:59:51 +00:00
|
|
|
impl Default for App {
|
|
|
|
fn default() -> App {
|
2018-01-27 09:27:26 +00:00
|
|
|
App {
|
|
|
|
input: String::new(),
|
2020-01-19 17:41:00 +00:00
|
|
|
input_mode: InputMode::Normal,
|
2018-01-27 09:27:26 +00:00
|
|
|
messages: Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-13 01:02:51 +00:00
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
2018-01-27 09:27:26 +00:00
|
|
|
// Terminal initialization
|
2018-09-23 18:59:51 +00:00
|
|
|
let stdout = io::stdout().into_raw_mode()?;
|
|
|
|
let stdout = MouseTerminal::from(stdout);
|
|
|
|
let stdout = AlternateScreen::from(stdout);
|
|
|
|
let backend = TermionBackend::new(stdout);
|
|
|
|
let mut terminal = Terminal::new(backend)?;
|
2018-01-27 09:27:26 +00:00
|
|
|
|
2018-09-23 18:59:51 +00:00
|
|
|
// Setup event handlers
|
2020-01-19 17:41:00 +00:00
|
|
|
let mut events = Events::new();
|
2018-01-27 09:27:26 +00:00
|
|
|
|
2018-09-23 18:59:51 +00:00
|
|
|
// Create default app state
|
|
|
|
let mut app = App::default();
|
2018-01-27 09:27:26 +00:00
|
|
|
|
|
|
|
loop {
|
2018-09-23 18:59:51 +00:00
|
|
|
// Draw UI
|
|
|
|
terminal.draw(|mut f| {
|
|
|
|
let chunks = Layout::default()
|
|
|
|
.direction(Direction::Vertical)
|
|
|
|
.margin(2)
|
2020-01-19 17:41:00 +00:00
|
|
|
.constraints(
|
|
|
|
[
|
|
|
|
Constraint::Length(1),
|
|
|
|
Constraint::Length(3),
|
|
|
|
Constraint::Min(1),
|
|
|
|
]
|
|
|
|
.as_ref(),
|
|
|
|
)
|
2018-12-07 14:43:05 +00:00
|
|
|
.split(f.size());
|
2019-12-15 20:38:18 +00:00
|
|
|
|
|
|
|
let msg = match app.input_mode {
|
2020-01-19 17:41:00 +00:00
|
|
|
InputMode::Normal => "Press q to exit, e to start editing.",
|
|
|
|
InputMode::Editing => "Press Esc to stop editing, Enter to record the message",
|
|
|
|
};
|
2019-12-15 20:38:18 +00:00
|
|
|
let text = [Text::raw(msg)];
|
|
|
|
let help_message = Paragraph::new(text.iter());
|
|
|
|
f.render_widget(help_message, chunks[0]);
|
|
|
|
|
|
|
|
let text = [Text::raw(&app.input)];
|
|
|
|
let input = Paragraph::new(text.iter())
|
2018-09-23 18:59:51 +00:00
|
|
|
.style(Style::default().fg(Color::Yellow))
|
2019-12-15 20:38:18 +00:00
|
|
|
.block(Block::default().borders(Borders::ALL).title("Input"));
|
|
|
|
f.render_widget(input, chunks[1]);
|
2018-09-23 18:59:51 +00:00
|
|
|
let messages = app
|
|
|
|
.messages
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(i, m)| Text::raw(format!("{}: {}", i, m)));
|
2019-12-15 20:38:18 +00:00
|
|
|
let messages =
|
|
|
|
List::new(messages).block(Block::default().borders(Borders::ALL).title("Messages"));
|
|
|
|
f.render_widget(messages, chunks[2]);
|
2018-09-23 18:59:51 +00:00
|
|
|
})?;
|
|
|
|
|
2018-11-04 17:32:31 +00:00
|
|
|
// Put the cursor back inside the input box
|
2018-11-04 18:04:51 +00:00
|
|
|
write!(
|
|
|
|
terminal.backend_mut(),
|
|
|
|
"{}",
|
2020-01-19 17:41:00 +00:00
|
|
|
Goto(4 + app.input.width() as u16, 5)
|
2018-11-04 18:04:51 +00:00
|
|
|
)?;
|
2019-06-02 04:31:15 +00:00
|
|
|
// stdout is buffered, flush it to see the effect immediately when hitting backspace
|
|
|
|
io::stdout().flush().ok();
|
2018-11-04 17:32:31 +00:00
|
|
|
|
2018-09-23 18:59:51 +00:00
|
|
|
// Handle input
|
2020-05-16 22:51:57 +00:00
|
|
|
if let Event::Input(input) = events.next()? {
|
|
|
|
match app.input_mode {
|
2020-01-19 17:41:00 +00:00
|
|
|
InputMode::Normal => match input {
|
|
|
|
Key::Char('e') => {
|
|
|
|
app.input_mode = InputMode::Editing;
|
|
|
|
events.disable_exit_key();
|
|
|
|
}
|
|
|
|
Key::Char('q') => {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
},
|
|
|
|
InputMode::Editing => match input {
|
|
|
|
Key::Char('\n') => {
|
|
|
|
app.messages.push(app.input.drain(..).collect());
|
|
|
|
}
|
|
|
|
Key::Char(c) => {
|
|
|
|
app.input.push(c);
|
|
|
|
}
|
|
|
|
Key::Backspace => {
|
|
|
|
app.input.pop();
|
|
|
|
}
|
|
|
|
Key::Esc => {
|
|
|
|
app.input_mode = InputMode::Normal;
|
|
|
|
events.enable_exit_key();
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
},
|
2020-05-16 22:51:57 +00:00
|
|
|
}
|
2018-01-27 09:27:26 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-23 18:59:51 +00:00
|
|
|
Ok(())
|
2018-01-27 09:27:26 +00:00
|
|
|
}
|