2024-06-06 23:56:45 +01:00
|
|
|
mod float;
|
2024-08-08 23:37:19 +01:00
|
|
|
mod floating_text;
|
2024-06-06 23:56:45 +01:00
|
|
|
mod running_command;
|
2024-07-28 16:17:06 +01:00
|
|
|
pub mod state;
|
2024-08-09 10:22:19 +01:00
|
|
|
mod tabs;
|
2024-06-06 23:56:45 +01:00
|
|
|
mod theme;
|
|
|
|
|
|
|
|
use std::{
|
|
|
|
io::{self, stdout},
|
|
|
|
time::Duration,
|
|
|
|
};
|
|
|
|
|
|
|
|
use clap::Parser;
|
|
|
|
use crossterm::{
|
|
|
|
cursor::RestorePosition,
|
2024-08-09 10:22:19 +01:00
|
|
|
event::{self, DisableMouseCapture, Event, KeyEventKind},
|
2024-06-06 23:56:45 +01:00
|
|
|
style::ResetColor,
|
|
|
|
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
|
|
|
|
ExecutableCommand,
|
|
|
|
};
|
2024-07-28 16:31:20 +01:00
|
|
|
use include_dir::include_dir;
|
2024-06-06 23:56:45 +01:00
|
|
|
use ratatui::{
|
|
|
|
backend::{Backend, CrosstermBackend},
|
|
|
|
Terminal,
|
|
|
|
};
|
2024-07-28 16:17:06 +01:00
|
|
|
use state::AppState;
|
2024-07-28 16:31:20 +01:00
|
|
|
use tempdir::TempDir;
|
2024-07-28 16:17:06 +01:00
|
|
|
use theme::THEMES;
|
2024-06-06 23:56:45 +01:00
|
|
|
|
|
|
|
/// This is a binary :), Chris, change this to update the documentation on -h
|
|
|
|
#[derive(Debug, Parser)]
|
|
|
|
struct Args {
|
|
|
|
/// Enable compatibility mode (disable icons and RGB colors)
|
|
|
|
#[arg(short, long, default_value_t = false)]
|
|
|
|
compat: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() -> std::io::Result<()> {
|
|
|
|
let args = Args::parse();
|
2024-07-28 16:17:06 +01:00
|
|
|
|
|
|
|
let theme = if args.compat {
|
|
|
|
THEMES[0].clone()
|
|
|
|
} else {
|
|
|
|
THEMES[1].clone()
|
|
|
|
};
|
2024-07-28 16:31:20 +01:00
|
|
|
let commands_dir = include_dir!("src/commands");
|
|
|
|
let temp_dir: TempDir = TempDir::new("linutil_scripts").unwrap();
|
|
|
|
commands_dir
|
|
|
|
.extract(temp_dir.path())
|
|
|
|
.expect("Failed to extract the saved directory");
|
2024-07-28 16:17:06 +01:00
|
|
|
|
2024-08-09 10:22:19 +01:00
|
|
|
let mut state = AppState::new(theme, temp_dir.path().to_owned());
|
2024-06-06 23:56:45 +01:00
|
|
|
|
|
|
|
stdout().execute(EnterAlternateScreen)?;
|
|
|
|
enable_raw_mode()?;
|
|
|
|
let mut terminal = Terminal::new(CrosstermBackend::new(stdout()))?;
|
|
|
|
terminal.clear()?;
|
|
|
|
|
2024-08-09 10:22:19 +01:00
|
|
|
run(&mut terminal, &mut state)?;
|
2024-06-06 23:56:45 +01:00
|
|
|
|
|
|
|
// restore terminal
|
|
|
|
disable_raw_mode()?;
|
|
|
|
terminal.backend_mut().execute(LeaveAlternateScreen)?;
|
|
|
|
terminal.backend_mut().execute(DisableMouseCapture)?;
|
|
|
|
terminal.backend_mut().execute(ResetColor)?;
|
|
|
|
terminal.backend_mut().execute(RestorePosition)?;
|
|
|
|
terminal.show_cursor()?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2024-08-09 10:22:19 +01:00
|
|
|
fn run<B: Backend>(terminal: &mut Terminal<B>, state: &mut AppState) -> io::Result<()> {
|
2024-06-06 23:56:45 +01:00
|
|
|
loop {
|
2024-08-09 10:22:19 +01:00
|
|
|
terminal.draw(|frame| state.draw(frame)).unwrap();
|
2024-07-11 23:58:27 +01:00
|
|
|
|
|
|
|
// Wait for an event
|
|
|
|
if !event::poll(Duration::from_millis(10))? {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's guaranteed that the `read()` won't block when the `poll()`
|
|
|
|
// function returns `true`
|
|
|
|
if let Event::Key(key) = event::read()? {
|
|
|
|
// We are only interested in Press and Repeat events
|
|
|
|
if key.kind != KeyEventKind::Press && key.kind != KeyEventKind::Repeat {
|
|
|
|
continue;
|
|
|
|
}
|
2024-08-08 23:37:19 +01:00
|
|
|
|
2024-08-09 10:22:19 +01:00
|
|
|
if !state.handle_key(&key) {
|
|
|
|
return Ok(());
|
2024-07-11 23:58:27 +01:00
|
|
|
}
|
|
|
|
}
|
2024-06-06 23:56:45 +01:00
|
|
|
}
|
|
|
|
}
|