mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
39 lines
857 B
Rust
39 lines
857 B
Rust
use anyhow::Result;
|
|
use yazi_core::tab::Finder;
|
|
use yazi_macro::{act, render, succ};
|
|
use yazi_parser::mgr::FindDoForm;
|
|
use yazi_shared::data::Data;
|
|
|
|
use crate::{Actor, Ctx};
|
|
|
|
pub struct FindDo;
|
|
|
|
impl Actor for FindDo {
|
|
type Form = FindDoForm;
|
|
|
|
const NAME: &str = "find_do";
|
|
|
|
fn act(cx: &mut Ctx, Self::Form { opt }: Self::Form) -> Result<Data> {
|
|
if opt.query.is_empty() {
|
|
return act!(mgr:escape_find, cx);
|
|
}
|
|
|
|
let finder = Finder::new(&opt.query, opt.case)?;
|
|
if matches!(&cx.tab().finder, Some(f) if f.filter == finder.filter) {
|
|
succ!();
|
|
}
|
|
|
|
let step = if opt.prev {
|
|
finder.prev(&cx.current().files, cx.current().cursor, true)
|
|
} else {
|
|
finder.next(&cx.current().files, cx.current().cursor, true)
|
|
};
|
|
|
|
if let Some(step) = step {
|
|
act!(mgr:arrow, cx, step)?;
|
|
}
|
|
|
|
cx.tab_mut().finder = Some(finder);
|
|
succ!(render!());
|
|
}
|
|
}
|