mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
54 lines
1.3 KiB
Rust
54 lines
1.3 KiB
Rust
use anyhow::Result;
|
|
use yazi_actor::Ctx;
|
|
use yazi_config::{KEYMAP, keymap::{Chord, ChordCow, Key}};
|
|
use yazi_macro::{act, emit};
|
|
use yazi_shared::Layer;
|
|
|
|
use crate::app::App;
|
|
|
|
pub(super) struct Router<'a> {
|
|
app: &'a mut App,
|
|
}
|
|
|
|
impl<'a> Router<'a> {
|
|
pub(super) fn new(app: &'a mut App) -> Self { Self { app } }
|
|
|
|
pub(super) fn route(&mut self, key: Key) -> Result<bool> {
|
|
let core = &mut self.app.core;
|
|
let layer = core.layer();
|
|
|
|
if core.help.visible && core.help.r#type(&key)? {
|
|
return Ok(true);
|
|
}
|
|
if core.input.visible && core.input.r#type(&key)? {
|
|
return Ok(true);
|
|
}
|
|
|
|
use Layer as L;
|
|
Ok(match layer {
|
|
L::App | L::Notify => unreachable!(),
|
|
L::Mgr | L::Tasks | L::Spot | L::Pick | L::Input | L::Confirm | L::Help => {
|
|
self.matches(layer, key)
|
|
}
|
|
L::Cmp => self.matches(L::Cmp, key) || self.matches(L::Input, key),
|
|
L::Which => core.which.r#type(key),
|
|
})
|
|
}
|
|
|
|
fn matches(&mut self, layer: Layer, key: Key) -> bool {
|
|
for chord @ Chord { on, .. } in KEYMAP.get(layer) {
|
|
if on.is_empty() || on[0] != key {
|
|
continue;
|
|
}
|
|
|
|
if on.len() > 1 {
|
|
let cx = &mut Ctx::active(&mut self.app.core, &mut self.app.term);
|
|
act!(which:activate, cx, (layer, key)).ok();
|
|
} else {
|
|
emit!(Seq(ChordCow::from(chord).into_seq()));
|
|
}
|
|
return true;
|
|
}
|
|
false
|
|
}
|
|
}
|