Compare commits
1 Commits
6ce5ef7d79
...
ce5062b359
Author | SHA1 | Date | |
---|---|---|---|
|
ce5062b359 |
@ -12,12 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- implement naive fuzzy matcher
|
||||
|
||||
### Other
|
||||
- move fuzzy search out of command
|
||||
- refactor/matcher move to a separate file
|
||||
|
||||
- move fuzzy search out of command
|
||||
- Actually add fuzzy matcher
|
||||
|
||||
- extract matcher
|
||||
- update dependencies
|
||||
- *(deps)* update rust crate anyhow to v1.0.89
|
||||
|
@ -1,8 +1,6 @@
|
||||
use nucleo_matcher::{pattern::Pattern, Matcher, Utf32Str};
|
||||
|
||||
use crate::{
|
||||
app::App, cache::CacheApp, fuzzy_matcher::FuzzyMatcherApp, projects_list::ProjectsListApp,
|
||||
};
|
||||
use crate::{app::App, cache::CacheApp, projects_list::ProjectsListApp};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct RootCommand {
|
||||
@ -28,23 +26,28 @@ impl RootCommand {
|
||||
repositories
|
||||
}
|
||||
};
|
||||
|
||||
let haystack = repositories
|
||||
.iter()
|
||||
.map(|r| r.to_rel_path().display().to_string());
|
||||
|
||||
let needle = match search {
|
||||
Some(needle) => needle.into(),
|
||||
None => todo!(),
|
||||
};
|
||||
|
||||
let haystack = repositories
|
||||
.iter()
|
||||
.map(|r| r.to_rel_path().display().to_string())
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
let haystack = haystack.as_str_vec();
|
||||
|
||||
let res = self.app.fuzzy_matcher().match_pattern(&needle, &haystack);
|
||||
let pattern = Pattern::new(
|
||||
&needle,
|
||||
nucleo_matcher::pattern::CaseMatching::Ignore,
|
||||
nucleo_matcher::pattern::Normalization::Smart,
|
||||
nucleo_matcher::pattern::AtomKind::Fuzzy,
|
||||
);
|
||||
let mut matcher = Matcher::new(nucleo_matcher::Config::DEFAULT);
|
||||
let res = pattern.match_list(haystack, &mut matcher);
|
||||
|
||||
let res = res.iter().take(10).rev().collect::<Vec<_>>();
|
||||
|
||||
for repo in res {
|
||||
for (repo, _score) in res {
|
||||
tracing::debug!("repo: {:?}", repo);
|
||||
}
|
||||
|
||||
@ -53,13 +56,3 @@ impl RootCommand {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
trait StringExt {
|
||||
fn as_str_vec<'a>(&'a self) -> Vec<&'a str>;
|
||||
}
|
||||
|
||||
impl StringExt for Vec<String> {
|
||||
fn as_str_vec<'a>(&'a self) -> Vec<&'a str> {
|
||||
self.iter().map(|r| r.as_ref()).collect()
|
||||
}
|
||||
}
|
||||
|
@ -1,34 +0,0 @@
|
||||
use nucleo_matcher::{pattern::Pattern, Matcher};
|
||||
|
||||
use crate::app::App;
|
||||
|
||||
pub struct FuzzyMatcher {}
|
||||
|
||||
impl FuzzyMatcher {
|
||||
pub fn new() -> Self {
|
||||
Self {}
|
||||
}
|
||||
|
||||
pub fn match_pattern<'a>(&self, pattern: &'a str, items: &'a [&'a str]) -> Vec<&'a str> {
|
||||
let pat = Pattern::new(
|
||||
&pattern,
|
||||
nucleo_matcher::pattern::CaseMatching::Ignore,
|
||||
nucleo_matcher::pattern::Normalization::Smart,
|
||||
nucleo_matcher::pattern::AtomKind::Fuzzy,
|
||||
);
|
||||
let mut matcher = Matcher::new(nucleo_matcher::Config::DEFAULT);
|
||||
let res = pat.match_list(items, &mut matcher);
|
||||
|
||||
res.into_iter().map(|((item, _))| *item).collect::<Vec<_>>()
|
||||
}
|
||||
}
|
||||
|
||||
pub trait FuzzyMatcherApp {
|
||||
fn fuzzy_matcher(&self) -> FuzzyMatcher;
|
||||
}
|
||||
|
||||
impl FuzzyMatcherApp for &'static App {
|
||||
fn fuzzy_matcher(&self) -> FuzzyMatcher {
|
||||
FuzzyMatcher::new()
|
||||
}
|
||||
}
|
@ -12,7 +12,6 @@ mod cache;
|
||||
mod cache_codec;
|
||||
mod commands;
|
||||
mod config;
|
||||
mod fuzzy_matcher;
|
||||
mod git_provider;
|
||||
mod projects_list;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user