-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1e84bd
commit f890846
Showing
6 changed files
with
206 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
use std::borrow::Cow; | ||
|
||
use crate::{float::FloatContent, hint::Shortcut}; | ||
|
||
use crossterm::event::{KeyCode, KeyEvent}; | ||
use ratatui::{ | ||
prelude::*, | ||
widgets::{Block, Borders, Clear, List}, | ||
}; | ||
|
||
pub enum ConfirmStatus { | ||
Confirm, | ||
Abort, | ||
None, | ||
} | ||
|
||
pub struct ConfirmPrompt { | ||
pub names: Box<[String]>, | ||
pub status: ConfirmStatus, | ||
scroll: usize, | ||
} | ||
|
||
impl ConfirmPrompt { | ||
pub fn new(names: &[&str]) -> Self { | ||
let names = names | ||
.iter() | ||
.zip(1..) | ||
.map(|(name, n)| format!("{n}. {name}")) | ||
.collect(); | ||
|
||
Self { | ||
names, | ||
status: ConfirmStatus::None, | ||
scroll: 0, | ||
} | ||
} | ||
|
||
pub fn scroll_down(&mut self) { | ||
if self.scroll < self.names.len() { | ||
self.scroll += 1; | ||
} | ||
} | ||
|
||
pub fn scroll_up(&mut self) { | ||
if self.scroll > 0 { | ||
self.scroll -= 1; | ||
} | ||
} | ||
} | ||
|
||
impl FloatContent for ConfirmPrompt { | ||
fn draw(&mut self, frame: &mut Frame, area: Rect) { | ||
let block = Block::default() | ||
.borders(Borders::ALL) | ||
.title("Confirm selections") | ||
.title_alignment(ratatui::layout::Alignment::Center) | ||
.title_style(Style::default().reversed()) | ||
.style(Style::default()); | ||
|
||
// Draw the Block first | ||
frame.render_widget(block.clone(), area); | ||
|
||
let inner_area = block.inner(area); | ||
|
||
let paths_text = self | ||
.names | ||
.iter() | ||
.skip(self.scroll) | ||
.map(|p| { | ||
Line::from(Span::from(Cow::<'_, str>::Borrowed(p))).style(Style::default().bold()) | ||
}) | ||
.collect::<Text>(); | ||
|
||
frame.render_widget(Clear, inner_area); | ||
frame.render_widget(List::new(paths_text), inner_area); | ||
} | ||
|
||
fn handle_key_event(&mut self, key: &KeyEvent) -> bool { | ||
use KeyCode::*; | ||
self.status = match key.code { | ||
Char('y') | Char('Y') => ConfirmStatus::Confirm, | ||
Char('n') | Char('N') | Esc => ConfirmStatus::Abort, | ||
_ => ConfirmStatus::None, | ||
}; | ||
|
||
false | ||
} | ||
|
||
fn is_finished(&self) -> bool { | ||
use ConfirmStatus::*; | ||
match self.status { | ||
Confirm | Abort => true, | ||
None => false, | ||
} | ||
} | ||
|
||
fn get_shortcut_list(&self) -> (&str, Box<[Shortcut]>) { | ||
( | ||
"Confirmation prompt", | ||
Box::new([ | ||
Shortcut::new("Continue", ["Y", "y"]), | ||
Shortcut::new("Abort", ["N", "n"]), | ||
]), | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
mod confirmation; | ||
mod filter; | ||
mod float; | ||
mod floating_text; | ||
|
Oops, something went wrong.