Initial commit
commit
4fa4764cd4
@ -0,0 +1,2 @@
|
||||
/target
|
||||
**/*.rs.bk
|
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "tracc"
|
||||
version = "0.1.0"
|
||||
authors = ["kageru <kageru@encode.moe>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
tui = "0.8.0"
|
||||
termion = "1.5"
|
@ -0,0 +1,77 @@
|
||||
// This file was copied from https://github.com/fdehau/tui-rs/blob/master/examples/util/event.rs
|
||||
use std::io;
|
||||
use std::sync::mpsc;
|
||||
use std::sync::{
|
||||
atomic::{AtomicBool, Ordering},
|
||||
Arc,
|
||||
};
|
||||
use std::thread;
|
||||
use std::time::Duration;
|
||||
|
||||
use termion::event::Key;
|
||||
use termion::input::TermRead;
|
||||
|
||||
pub enum Event<I> {
|
||||
Input(I),
|
||||
}
|
||||
|
||||
/// A small event handler that wrap termion input and tick events. Each event
|
||||
/// type is handled in its own thread and returned to a common `Receiver`
|
||||
pub struct Events {
|
||||
rx: mpsc::Receiver<Event<Key>>,
|
||||
input_handle: thread::JoinHandle<()>,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub struct Config {
|
||||
pub exit_key: Key,
|
||||
pub tick_rate: Duration,
|
||||
}
|
||||
|
||||
impl Default for Config {
|
||||
fn default() -> Config {
|
||||
Config {
|
||||
exit_key: Key::Char('q'),
|
||||
tick_rate: Duration::from_millis(250),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Events {
|
||||
pub fn new() -> Events {
|
||||
Events::with_config(Config::default())
|
||||
}
|
||||
|
||||
pub fn with_config(config: Config) -> Events {
|
||||
let (tx, rx) = mpsc::channel();
|
||||
let ignore_exit_key = Arc::new(AtomicBool::new(false));
|
||||
let input_handle = {
|
||||
let tx = tx.clone();
|
||||
let ignore_exit_key = ignore_exit_key.clone();
|
||||
thread::spawn(move || {
|
||||
let stdin = io::stdin();
|
||||
for evt in stdin.keys() {
|
||||
match evt {
|
||||
Ok(key) => {
|
||||
if let Err(_) = tx.send(Event::Input(key)) {
|
||||
return;
|
||||
}
|
||||
if !ignore_exit_key.load(Ordering::Relaxed) && key == config.exit_key {
|
||||
return;
|
||||
}
|
||||
}
|
||||
Err(_) => {}
|
||||
}
|
||||
}
|
||||
})
|
||||
};
|
||||
Events {
|
||||
rx,
|
||||
input_handle,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn next(&self) -> Result<Event<Key>, mpsc::RecvError> {
|
||||
self.rx.recv()
|
||||
}
|
||||
}
|
@ -0,0 +1,77 @@
|
||||
use std::io;
|
||||
use termion::event::Key;
|
||||
use termion::raw::IntoRawMode;
|
||||
use tui::backend::Backend;
|
||||
use tui::backend::TermionBackend;
|
||||
use tui::style::{Color, Style};
|
||||
use tui::widgets::*;
|
||||
use tui::Terminal;
|
||||
mod events;
|
||||
use events::{Event, Events};
|
||||
mod tracc;
|
||||
use tracc::Tracc;
|
||||
|
||||
pub enum Mode {
|
||||
Insert,
|
||||
Normal,
|
||||
}
|
||||
|
||||
fn main() -> Result<(), io::Error> {
|
||||
let stdout = io::stdout().into_raw_mode()?;
|
||||
let backend = TermionBackend::new(stdout);
|
||||
let mut terminal = Terminal::new(backend)?;
|
||||
let mut tracc = Tracc::new();
|
||||
terminal.hide_cursor()?;
|
||||
terminal.clear()?;
|
||||
let events = Events::new();
|
||||
loop {
|
||||
refresh(&mut terminal, &tracc)?;
|
||||
// I need to find a better way to handle inputs. This is awful.
|
||||
match events.next().expect("input ded?") {
|
||||
Event::Input(input) => match tracc.mode {
|
||||
Mode::Normal => match input {
|
||||
Key::Char('q') => break,
|
||||
Key::Char('j') => tracc.selection_down(),
|
||||
Key::Char('k') => tracc.selection_up(),
|
||||
Key::Char('o') => {
|
||||
tracc.insert();
|
||||
tracc.set_mode(Mode::Insert, &mut terminal)?;
|
||||
}
|
||||
Key::Char('a') => tracc.set_mode(Mode::Insert, &mut terminal)?,
|
||||
Key::Char('A') => tracc.set_mode(Mode::Insert, &mut terminal)?,
|
||||
Key::Char(' ') => tracc.toggle_current(),
|
||||
// dd
|
||||
Key::Char('d') => {
|
||||
if let Event::Input(Key::Char('d')) = events.next().unwrap() {
|
||||
tracc.remove_current()
|
||||
}
|
||||
}
|
||||
_ => (),
|
||||
},
|
||||
Mode::Insert => match input {
|
||||
Key::Char('\n') => tracc.set_mode(Mode::Normal, &mut terminal)?,
|
||||
Key::Esc => tracc.set_mode(Mode::Normal, &mut terminal)?,
|
||||
Key::Backspace => tracc.current_pop(),
|
||||
Key::Char(x) => tracc.append_to_current(x),
|
||||
_ => (),
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn refresh(terminal: &mut tui::Terminal<impl Backend>, tracc: &Tracc) -> Result<(), io::Error> {
|
||||
terminal.draw(|mut frame| {
|
||||
let size = frame.size();
|
||||
let block = Block::default().title(" t r a c c ").borders(Borders::ALL);
|
||||
SelectableList::default()
|
||||
.block(block)
|
||||
.items(&tracc.printable_todos())
|
||||
.select(tracc.selected)
|
||||
.highlight_style(Style::default().fg(Color::LightGreen))
|
||||
.highlight_symbol(">")
|
||||
.render(&mut frame, size);
|
||||
})?;
|
||||
Ok(())
|
||||
}
|
Loading…
Reference in new issue