DynamicPicker: Use idle-timeout as debounce
This change uses the idle-timeout event to trigger fetching new results in the DynamicPicker, so idle-timeout becomes a sort of debounce. This prevents querying the language server overly aggressively.
This commit is contained in:
parent
d1f717eb8d
commit
a7daa02346
1 changed files with 5 additions and 2 deletions
|
@ -763,6 +763,7 @@ pub type DynQueryCallback<T> =
|
|||
pub struct DynamicPicker<T: ui::menu::Item + Send> {
|
||||
file_picker: FilePicker<T>,
|
||||
query_callback: DynQueryCallback<T>,
|
||||
query: String,
|
||||
}
|
||||
|
||||
impl<T: ui::menu::Item + Send> DynamicPicker<T> {
|
||||
|
@ -772,6 +773,7 @@ impl<T: ui::menu::Item + Send> DynamicPicker<T> {
|
|||
Self {
|
||||
file_picker,
|
||||
query_callback,
|
||||
query: String::new(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -782,14 +784,15 @@ impl<T: Item + Send + 'static> Component for DynamicPicker<T> {
|
|||
}
|
||||
|
||||
fn handle_event(&mut self, event: &Event, cx: &mut Context) -> EventResult {
|
||||
let prev_query = self.file_picker.picker.prompt.line().to_owned();
|
||||
let event_result = self.file_picker.handle_event(event, cx);
|
||||
let current_query = self.file_picker.picker.prompt.line();
|
||||
|
||||
if *current_query == prev_query || matches!(event_result, EventResult::Ignored(_)) {
|
||||
if !matches!(event, Event::IdleTimeout) || self.query == *current_query {
|
||||
return event_result;
|
||||
}
|
||||
|
||||
self.query.clone_from(current_query);
|
||||
|
||||
let new_options = (self.query_callback)(current_query.to_owned(), cx.editor);
|
||||
|
||||
cx.jobs.callback(async move {
|
||||
|
|
Loading…
Add table
Reference in a new issue