rustlings/src/list.rs

102 lines
3.4 KiB
Rust
Raw Normal View History

2024-04-06 21:03:37 -04:00
use anyhow::Result;
use crossterm::{
2024-04-06 21:38:18 -04:00
event::{self, Event, KeyCode, KeyEventKind},
2024-04-06 21:03:37 -04:00
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
ExecutableCommand,
};
2024-04-07 13:05:29 -04:00
use ratatui::{backend::CrosstermBackend, Terminal};
2024-04-07 19:33:11 -04:00
use std::{fmt::Write, io};
2024-04-06 21:03:37 -04:00
2024-04-07 13:05:29 -04:00
mod state;
2024-04-07 10:33:00 -04:00
2024-04-07 13:05:29 -04:00
use crate::{exercise::Exercise, state_file::StateFile};
2024-04-07 10:33:00 -04:00
2024-04-07 20:41:48 -04:00
use self::state::{Filter, UiState};
2024-04-06 21:03:37 -04:00
2024-04-07 13:01:08 -04:00
pub fn list(state_file: &mut StateFile, exercises: &[Exercise]) -> Result<()> {
2024-04-06 21:38:18 -04:00
let mut stdout = io::stdout().lock();
stdout.execute(EnterAlternateScreen)?;
enable_raw_mode()?;
let mut terminal = Terminal::new(CrosstermBackend::new(&mut stdout))?;
terminal.clear()?;
2024-04-07 13:01:08 -04:00
let mut ui_state = UiState::new(state_file, exercises);
2024-04-06 21:38:18 -04:00
'outer: loop {
2024-04-07 10:33:00 -04:00
terminal.draw(|frame| ui_state.draw(frame))?;
2024-04-06 21:03:37 -04:00
2024-04-06 21:38:18 -04:00
let key = loop {
match event::read()? {
2024-04-06 21:41:23 -04:00
Event::Key(key) => {
if key.kind != KeyEventKind::Press {
continue;
}
break key;
}
2024-04-06 21:38:18 -04:00
// Redraw
Event::Resize(_, _) => continue 'outer,
// Ignore
Event::FocusGained | Event::FocusLost | Event::Mouse(_) | Event::Paste(_) => (),
}
};
2024-04-07 19:33:11 -04:00
ui_state.message.clear();
2024-04-06 21:38:18 -04:00
match key.code {
KeyCode::Char('q') => break,
2024-04-07 10:33:00 -04:00
KeyCode::Down | KeyCode::Char('j') => ui_state.select_next(),
KeyCode::Up | KeyCode::Char('k') => ui_state.select_previous(),
KeyCode::Home | KeyCode::Char('g') => ui_state.select_first(),
KeyCode::End | KeyCode::Char('G') => ui_state.select_last(),
2024-04-07 20:41:48 -04:00
KeyCode::Char('d') => {
let message = if ui_state.filter == Filter::Done {
ui_state.filter = Filter::None;
"Disabled filter DONE"
} else {
ui_state.filter = Filter::Done;
"Enabled filter DONE │ Press d again to disable the filter"
};
ui_state = ui_state.with_updated_rows(state_file);
ui_state.message.push_str(message);
}
KeyCode::Char('p') => {
let message = if ui_state.filter == Filter::Pending {
ui_state.filter = Filter::None;
"Disabled filter PENDING"
} else {
ui_state.filter = Filter::Pending;
"Enabled filter PENDING │ Press p again to disable the filter"
};
ui_state = ui_state.with_updated_rows(state_file);
ui_state.message.push_str(message);
}
2024-04-07 16:43:59 -04:00
KeyCode::Char('r') => {
let selected = ui_state.selected();
2024-04-07 19:33:11 -04:00
let exercise = &exercises[selected];
exercise.reset()?;
2024-04-07 16:43:59 -04:00
state_file.reset(selected)?;
2024-04-07 19:33:11 -04:00
2024-04-07 20:41:48 -04:00
ui_state = ui_state.with_updated_rows(state_file);
2024-04-07 19:33:11 -04:00
ui_state
.message
.write_fmt(format_args!("The exercise {exercise} has been reset!"))?;
2024-04-07 16:43:59 -04:00
}
2024-04-06 22:59:22 -04:00
KeyCode::Char('c') => {
2024-04-07 13:05:29 -04:00
state_file.set_next_exercise_ind(ui_state.selected())?;
2024-04-07 20:41:48 -04:00
ui_state = ui_state.with_updated_rows(state_file);
2024-04-06 22:59:22 -04:00
}
2024-04-06 21:38:18 -04:00
_ => (),
2024-04-06 21:03:37 -04:00
}
}
drop(terminal);
stdout.execute(LeaveAlternateScreen)?;
disable_raw_mode()?;
Ok(())
}