Compare commits
2 commits
081ecdba63
...
de9f1ecd37
Author | SHA1 | Date | |
---|---|---|---|
de9f1ecd37 | |||
7c0da5dc3f |
5 changed files with 80 additions and 12 deletions
1
crates/cli/src/tui/actor/handlers/mod.rs
Normal file
1
crates/cli/src/tui/actor/handlers/mod.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
//
|
4
crates/cli/src/tui/actor/messages.rs
Normal file
4
crates/cli/src/tui/actor/messages.rs
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
//
|
||||||
|
use git_next_core::message;
|
||||||
|
|
||||||
|
message!(Start, "Start the TUI");
|
61
crates/cli/src/tui/actor/mod.rs
Normal file
61
crates/cli/src/tui/actor/mod.rs
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
//
|
||||||
|
mod handlers;
|
||||||
|
pub mod messages;
|
||||||
|
|
||||||
|
use std::io::{stderr, Stderr};
|
||||||
|
|
||||||
|
use actix::{Actor, Context};
|
||||||
|
|
||||||
|
use ratatui::{
|
||||||
|
crossterm::{
|
||||||
|
execute,
|
||||||
|
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
|
||||||
|
},
|
||||||
|
prelude::CrosstermBackend,
|
||||||
|
Terminal,
|
||||||
|
};
|
||||||
|
|
||||||
|
pub struct Tui {
|
||||||
|
terminal: Option<Terminal<CrosstermBackend<Stderr>>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Actor for Tui {
|
||||||
|
type Context = Context<Self>;
|
||||||
|
|
||||||
|
fn started(&mut self, _ctx: &mut Self::Context) {
|
||||||
|
match init() {
|
||||||
|
Ok(terminal) => {
|
||||||
|
self.terminal.replace(terminal);
|
||||||
|
}
|
||||||
|
Err(err) => tracing::error!(?err, "Failed to start terminal UI"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn stopped(&mut self, _ctx: &mut Self::Context) {
|
||||||
|
if let Err(err) = restore() {
|
||||||
|
match std::env::consts::OS {
|
||||||
|
"linux" | "macos" => {
|
||||||
|
tracing::error!(
|
||||||
|
?err,
|
||||||
|
"Failed to restore terminal: Type `reset` to restore terminal"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
"windows" => {
|
||||||
|
tracing::error!(?err, "Failed to restore terminal: Reopen a new terminal");
|
||||||
|
}
|
||||||
|
_ => tracing::error!(?err, "Failed to restore terminal"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn init() -> std::io::Result<Terminal<CrosstermBackend<Stderr>>> {
|
||||||
|
execute!(stderr(), EnterAlternateScreen)?;
|
||||||
|
enable_raw_mode()?;
|
||||||
|
Terminal::new(CrosstermBackend::new(stderr()))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn restore() -> std::io::Result<()> {
|
||||||
|
execute!(stderr(), LeaveAlternateScreen)?;
|
||||||
|
disable_raw_mode()
|
||||||
|
}
|
2
crates/cli/src/tui/mod.rs
Normal file
2
crates/cli/src/tui/mod.rs
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
//
|
||||||
|
mod actor;
|
|
@ -1,23 +1,23 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
# Disable git releases for all packages by default
|
# Disable git releases for all packages by default
|
||||||
git_release_enable = false
|
git_release_enable = true
|
||||||
|
|
||||||
# Disable git tags for all packages by default
|
# Disable git tags for all packages by default
|
||||||
git_tag_enable = false
|
git_tag_enable = true
|
||||||
|
|
||||||
# set the path of all the crates to the changelog to the root of the repository
|
# set the path of all the crates to the changelog to the root of the repository
|
||||||
changelog_path = "./CHANGELOG.md"
|
changelog_path = "./CHANGELOG.md"
|
||||||
|
|
||||||
[[package]]
|
# [[package]]
|
||||||
name = "git-next"
|
# name = "git-next"
|
||||||
# (Optional) Customize the git tag name to remove the `my_main_package` prefix.
|
# # (Optional) Customize the git tag name to remove the `my_main_package` prefix.
|
||||||
git_tag_name = "v{{ version }}"
|
# git_tag_name = "v{{ version }}"
|
||||||
|
#
|
||||||
# Enable git tags for this package
|
# # Enable git tags for this package
|
||||||
git_tag_enable = true
|
# git_tag_enable = true
|
||||||
|
#
|
||||||
# Enable git releases for this package
|
# # Enable git releases for this package
|
||||||
git_release_enable = true
|
# git_release_enable = true
|
||||||
|
|
||||||
[changelog]
|
[changelog]
|
||||||
body = """
|
body = """
|
||||||
|
|
Loading…
Reference in a new issue