83 lines
1.8 KiB
Rust
83 lines
1.8 KiB
Rust
use crate::app::App;
|
|
use crate::event::Key;
|
|
use crate::handlers::KeyEventHandler;
|
|
use crate::handlers::table_handler::{TableHandlingConfig, handle_table};
|
|
use crate::models::Route;
|
|
use crate::models::servarr_data::ActiveKeybindingBlock;
|
|
|
|
#[cfg(test)]
|
|
#[path = "keybinding_handler_tests.rs"]
|
|
mod keybinding_handler_tests;
|
|
|
|
pub(super) struct KeybindingHandler<'a, 'b> {
|
|
key: Key,
|
|
app: &'a mut App<'b>,
|
|
}
|
|
|
|
impl<'a, 'b> KeyEventHandler<'a, 'b, ActiveKeybindingBlock> for KeybindingHandler<'a, 'b> {
|
|
fn handle(&mut self) {
|
|
let keybinding_table_handling_config = TableHandlingConfig::new(self.app.get_current_route());
|
|
|
|
if !handle_table(
|
|
self,
|
|
|app| app.keymapping_table.as_mut().unwrap(),
|
|
keybinding_table_handling_config,
|
|
) {
|
|
self.handle_key_event();
|
|
}
|
|
}
|
|
|
|
fn accepts(_active_block: ActiveKeybindingBlock) -> bool {
|
|
true
|
|
}
|
|
|
|
fn new(
|
|
key: Key,
|
|
app: &'a mut App<'b>,
|
|
_active_block: ActiveKeybindingBlock,
|
|
_context: Option<ActiveKeybindingBlock>,
|
|
) -> KeybindingHandler<'a, 'b> {
|
|
KeybindingHandler { key, app }
|
|
}
|
|
|
|
fn get_key(&self) -> Key {
|
|
self.key
|
|
}
|
|
|
|
fn ignore_special_keys(&self) -> bool {
|
|
self.app.ignore_special_keys_for_textbox_input
|
|
}
|
|
|
|
fn is_ready(&self) -> bool {
|
|
self.app.keymapping_table.is_some()
|
|
}
|
|
|
|
fn handle_scroll_up(&mut self) {}
|
|
|
|
fn handle_scroll_down(&mut self) {}
|
|
|
|
fn handle_home(&mut self) {}
|
|
|
|
fn handle_end(&mut self) {}
|
|
|
|
fn handle_delete(&mut self) {}
|
|
|
|
fn handle_left_right_action(&mut self) {}
|
|
|
|
fn handle_submit(&mut self) {}
|
|
|
|
fn handle_esc(&mut self) {
|
|
self.app.keymapping_table = None;
|
|
}
|
|
|
|
fn handle_char_key_event(&mut self) {}
|
|
|
|
fn app_mut(&mut self) -> &mut App<'b> {
|
|
self.app
|
|
}
|
|
|
|
fn current_route(&self) -> Route {
|
|
self.app.get_current_route()
|
|
}
|
|
}
|