zed/crates/project_symbols/src/project_symbols.rs

266 lines
8.8 KiB
Rust
Raw Normal View History

use editor::{
combine_syntax_and_fuzzy_match_highlights, styled_runs_for_code_label, Autoscroll, Bias, Editor,
};
use fuzzy::{StringMatch, StringMatchCandidate};
2022-02-22 07:42:12 +00:00
use gpui::{
2022-04-15 00:35:32 +00:00
actions, elements::*, AppContext, Entity, ModelHandle, MutableAppContext, RenderContext, Task,
View, ViewContext, ViewHandle,
2022-02-22 07:42:12 +00:00
};
use ordered_float::OrderedFloat;
2022-04-15 00:35:32 +00:00
use picker::{Picker, PickerDelegate};
2022-02-22 13:50:06 +00:00
use project::{Project, Symbol};
use settings::Settings;
2022-04-15 00:35:32 +00:00
use std::{borrow::Cow, cmp::Reverse};
use util::ResultExt;
2022-04-15 00:35:32 +00:00
use workspace::Workspace;
2022-02-22 07:42:12 +00:00
actions!(project_symbols, [Toggle]);
2022-02-22 07:42:12 +00:00
pub fn init(cx: &mut MutableAppContext) {
cx.add_action(ProjectSymbolsView::toggle);
2022-04-15 00:35:32 +00:00
Picker::<ProjectSymbolsView>::init(cx);
2022-02-22 07:42:12 +00:00
}
pub struct ProjectSymbolsView {
2022-04-15 00:35:32 +00:00
picker: ViewHandle<Picker<Self>>,
2022-02-22 07:42:12 +00:00
project: ModelHandle<Project>,
selected_match_index: usize,
2022-02-22 13:50:06 +00:00
symbols: Vec<Symbol>,
match_candidates: Vec<StringMatchCandidate>,
2022-04-15 00:35:32 +00:00
show_worktree_root_name: bool,
2022-02-22 07:42:12 +00:00
matches: Vec<StringMatch>,
}
pub enum Event {
Dismissed,
Selected(Symbol),
2022-02-22 07:42:12 +00:00
}
impl Entity for ProjectSymbolsView {
type Event = Event;
}
impl View for ProjectSymbolsView {
fn ui_name() -> &'static str {
"ProjectSymbolsView"
}
2022-04-15 00:35:32 +00:00
fn render(&mut self, _: &mut RenderContext<Self>) -> ElementBox {
ChildView::new(self.picker.clone()).boxed()
2022-02-22 07:42:12 +00:00
}
fn on_focus(&mut self, cx: &mut ViewContext<Self>) {
2022-04-15 00:35:32 +00:00
cx.focus(&self.picker);
2022-02-22 07:42:12 +00:00
}
}
impl ProjectSymbolsView {
fn new(project: ModelHandle<Project>, cx: &mut ViewContext<Self>) -> Self {
2022-04-15 00:35:32 +00:00
let handle = cx.weak_handle();
2022-04-15 21:28:01 +00:00
Self {
2022-02-22 07:42:12 +00:00
project,
2022-04-15 21:28:01 +00:00
picker: cx.add_view(|cx| Picker::new(handle, cx)),
2022-02-22 07:42:12 +00:00
selected_match_index: 0,
symbols: Default::default(),
match_candidates: Default::default(),
2022-02-22 07:42:12 +00:00
matches: Default::default(),
2022-04-15 00:35:32 +00:00
show_worktree_root_name: false,
2022-04-15 21:28:01 +00:00
}
2022-02-22 07:42:12 +00:00
}
fn toggle(workspace: &mut Workspace, _: &Toggle, cx: &mut ViewContext<Workspace>) {
workspace.toggle_modal(cx, |cx, workspace| {
let project = workspace.project().clone();
let symbols = cx.add_view(|cx| Self::new(project, cx));
2022-02-22 07:42:12 +00:00
cx.subscribe(&symbols, Self::on_event).detach();
symbols
});
}
2022-04-15 00:35:32 +00:00
fn filter(&mut self, query: &str, cx: &mut ViewContext<Self>) {
let mut matches = if query.is_empty() {
self.match_candidates
.iter()
.enumerate()
.map(|(candidate_id, candidate)| StringMatch {
candidate_id,
score: Default::default(),
positions: Default::default(),
string: candidate.string.clone(),
})
.collect()
} else {
smol::block_on(fuzzy::match_strings(
&self.match_candidates,
2022-04-15 00:35:32 +00:00
query,
false,
100,
&Default::default(),
cx.background().clone(),
))
};
matches.sort_unstable_by_key(|mat| {
let label = &self.symbols[mat.candidate_id].label;
(
Reverse(OrderedFloat(mat.score)),
&label.text[label.filter_range.clone()],
)
});
for mat in &mut matches {
let filter_start = self.symbols[mat.candidate_id].label.filter_range.start;
for position in &mut mat.positions {
*position += filter_start;
}
}
self.matches = matches;
2022-04-15 00:35:32 +00:00
self.set_selected_index(0, cx);
cx.notify();
}
2022-02-22 07:42:12 +00:00
2022-04-15 00:35:32 +00:00
fn on_event(
workspace: &mut Workspace,
_: ViewHandle<Self>,
event: &Event,
cx: &mut ViewContext<Workspace>,
) {
match event {
Event::Dismissed => workspace.dismiss_modal(cx),
Event::Selected(symbol) => {
let buffer = workspace
.project()
.update(cx, |project, cx| project.open_buffer_for_symbol(symbol, cx));
let symbol = symbol.clone();
cx.spawn(|workspace, mut cx| async move {
let buffer = buffer.await?;
workspace.update(&mut cx, |workspace, cx| {
let position = buffer
.read(cx)
.clip_point_utf16(symbol.range.start, Bias::Left);
let editor = workspace.open_project_item::<Editor>(buffer, cx);
editor.update(cx, |editor, cx| {
editor.select_ranges(
[position..position],
Some(Autoscroll::Center),
cx,
);
});
});
Ok::<_, anyhow::Error>(())
})
.detach_and_log_err(cx);
workspace.dismiss_modal(cx);
}
2022-02-22 07:42:12 +00:00
}
2022-04-15 00:35:32 +00:00
}
}
2022-02-22 07:42:12 +00:00
2022-04-15 00:35:32 +00:00
impl PickerDelegate for ProjectSymbolsView {
fn confirm(&mut self, cx: &mut ViewContext<Self>) {
if let Some(symbol) = self
.matches
.get(self.selected_match_index)
.map(|mat| self.symbols[mat.candidate_id].clone())
{
cx.emit(Event::Selected(symbol));
}
}
fn dismiss(&mut self, cx: &mut ViewContext<Self>) {
cx.emit(Event::Dismissed);
}
2022-04-15 00:35:32 +00:00
fn match_count(&self) -> usize {
self.matches.len()
}
2022-02-22 07:42:12 +00:00
2022-04-15 00:35:32 +00:00
fn selected_index(&self) -> usize {
self.selected_match_index
2022-02-22 07:42:12 +00:00
}
2022-04-15 00:35:32 +00:00
fn set_selected_index(&mut self, ix: usize, cx: &mut ViewContext<Self>) {
self.selected_match_index = ix;
cx.notify();
}
fn update_matches(&mut self, query: String, cx: &mut ViewContext<Self>) -> Task<()> {
self.filter(&query, cx);
self.show_worktree_root_name = self.project.read(cx).visible_worktrees(cx).count() > 1;
let symbols = self
.project
.update(cx, |project, cx| project.symbols(&query, cx));
cx.spawn_weak(|this, mut cx| async move {
let symbols = symbols.await.log_err();
if let Some(this) = this.upgrade(&cx) {
if let Some(symbols) = symbols {
this.update(&mut cx, |this, cx| {
this.match_candidates = symbols
.iter()
.enumerate()
.map(|(id, symbol)| {
StringMatchCandidate::new(
id,
symbol.label.text[symbol.label.filter_range.clone()]
.to_string(),
)
})
.collect();
this.symbols = symbols;
this.filter(&query, cx);
});
}
}
})
}
fn render_match(&self, ix: usize, selected: bool, cx: &AppContext) -> ElementBox {
let string_match = &self.matches[ix];
let settings = cx.global::<Settings>();
2022-04-15 00:35:32 +00:00
let style = if selected {
2022-02-22 07:42:12 +00:00
&settings.theme.selector.active_item
} else {
&settings.theme.selector.item
};
let symbol = &self.symbols[string_match.candidate_id];
let syntax_runs = styled_runs_for_code_label(&symbol.label, &settings.theme.editor.syntax);
2022-02-22 07:42:12 +00:00
let mut path = symbol.path.to_string_lossy();
2022-04-15 00:35:32 +00:00
if self.show_worktree_root_name {
let project = self.project.read(cx);
if let Some(worktree) = project.worktree_for_id(symbol.worktree_id, cx) {
path = Cow::Owned(format!(
"{}{}{}",
worktree.read(cx).root_name(),
std::path::MAIN_SEPARATOR,
path.as_ref()
));
}
}
Flex::column()
.with_child(
Text::new(symbol.label.text.clone(), style.label.text.clone())
.with_soft_wrap(false)
.with_highlights(combine_syntax_and_fuzzy_match_highlights(
&symbol.label.text,
style.label.text.clone().into(),
syntax_runs,
&string_match.positions,
))
.boxed(),
)
.with_child(
// Avoid styling the path differently when it is selected, since
// the symbol's syntax highlighting doesn't change when selected.
Label::new(path.to_string(), settings.theme.selector.item.label.clone()).boxed(),
)
2022-02-22 07:42:12 +00:00
.contained()
.with_style(style.container)
.boxed()
}
}