Prefer the same order of entries inside outline and project panels, project search multi buffer (#13044)

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov 2024-06-14 18:33:36 +03:00 committed by GitHub
parent 6c28b7e8b8
commit a8481099ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 140 additions and 121 deletions

3
Cargo.lock generated
View file

@ -7171,7 +7171,6 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"settings", "settings",
"unicase",
"util", "util",
"workspace", "workspace",
"worktree", "worktree",
@ -7863,6 +7862,7 @@ dependencies = [
"tempfile", "tempfile",
"terminal", "terminal",
"text", "text",
"unicase",
"unindent", "unindent",
"util", "util",
"which 6.0.0", "which 6.0.0",
@ -7893,7 +7893,6 @@ dependencies = [
"settings", "settings",
"theme", "theme",
"ui", "ui",
"unicase",
"util", "util",
"workspace", "workspace",
"worktree", "worktree",

View file

@ -1122,12 +1122,12 @@ impl MultiBuffer {
for range in ranges.by_ref().take(range_count) { for range in ranges.by_ref().take(range_count) {
let start = Anchor { let start = Anchor {
buffer_id: Some(buffer_id), buffer_id: Some(buffer_id),
excerpt_id: excerpt_id, excerpt_id,
text_anchor: range.start, text_anchor: range.start,
}; };
let end = Anchor { let end = Anchor {
buffer_id: Some(buffer_id), buffer_id: Some(buffer_id),
excerpt_id: excerpt_id, excerpt_id,
text_anchor: range.end, text_anchor: range.end,
}; };
if tx.send(start..end).await.is_err() { if tx.send(start..end).await.is_err() {

View file

@ -29,7 +29,6 @@ schemars.workspace = true
serde.workspace = true serde.workspace = true
serde_json.workspace = true serde_json.workspace = true
settings.workspace = true settings.workspace = true
unicase.workspace = true
util.workspace = true util.workspace = true
worktree.workspace = true worktree.workspace = true
workspace.workspace = true workspace.workspace = true

View file

@ -34,8 +34,7 @@ use outline_panel_settings::{OutlinePanelDockPosition, OutlinePanelSettings};
use project::{File, Fs, Project}; use project::{File, Fs, Project};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use settings::{Settings, SettingsStore}; use settings::{Settings, SettingsStore};
use unicase::UniCase; use util::{ResultExt, TryFutureExt};
use util::{maybe, NumericPrefixWithSuffix, ResultExt, TryFutureExt};
use workspace::{ use workspace::{
dock::{DockPosition, Panel, PanelEvent}, dock::{DockPosition, Panel, PanelEvent},
item::ItemHandle, item::ItemHandle,
@ -1755,7 +1754,7 @@ impl OutlinePanel {
.into_iter() .into_iter()
.map(|(worktree_id, (worktree_snapshot, entries))| { .map(|(worktree_id, (worktree_snapshot, entries))| {
let mut entries = entries.into_iter().collect::<Vec<_>>(); let mut entries = entries.into_iter().collect::<Vec<_>>();
sort_worktree_entries(&mut entries); project::sort_worktree_entries(&mut entries);
worktree_snapshot.propagate_git_statuses(&mut entries); worktree_snapshot.propagate_git_statuses(&mut entries);
(worktree_id, entries) (worktree_id, entries)
}) })
@ -2357,48 +2356,6 @@ fn back_to_common_visited_parent(
None None
} }
fn sort_worktree_entries(entries: &mut Vec<Entry>) {
entries.sort_by(|entry_a, entry_b| {
let mut components_a = entry_a.path.components().peekable();
let mut components_b = entry_b.path.components().peekable();
loop {
match (components_a.next(), components_b.next()) {
(Some(component_a), Some(component_b)) => {
let a_is_file = components_a.peek().is_none() && entry_a.is_file();
let b_is_file = components_b.peek().is_none() && entry_b.is_file();
let ordering = a_is_file.cmp(&b_is_file).then_with(|| {
let maybe_numeric_ordering = maybe!({
let num_and_remainder_a = Path::new(component_a.as_os_str())
.file_stem()
.and_then(|s| s.to_str())
.and_then(NumericPrefixWithSuffix::from_numeric_prefixed_str)?;
let num_and_remainder_b = Path::new(component_b.as_os_str())
.file_stem()
.and_then(|s| s.to_str())
.and_then(NumericPrefixWithSuffix::from_numeric_prefixed_str)?;
num_and_remainder_a.partial_cmp(&num_and_remainder_b)
});
maybe_numeric_ordering.unwrap_or_else(|| {
let name_a = UniCase::new(component_a.as_os_str().to_string_lossy());
let name_b = UniCase::new(component_b.as_os_str().to_string_lossy());
name_a.cmp(&name_b)
})
});
if !ordering.is_eq() {
return ordering;
}
}
(Some(_), None) => break cmp::Ordering::Greater,
(None, Some(_)) => break cmp::Ordering::Less,
(None, None) => break cmp::Ordering::Equal,
}
}
});
}
fn file_name(path: &Path) -> String { fn file_name(path: &Path) -> String {
let mut current_path = path; let mut current_path = path;
loop { loop {

View file

@ -65,6 +65,7 @@ snippet.workspace = true
terminal.workspace = true terminal.workspace = true
text.workspace = true text.workspace = true
util.workspace = true util.workspace = true
unicase.workspace = true
which.workspace = true which.workspace = true
[dev-dependencies] [dev-dependencies]

View file

@ -105,12 +105,13 @@ use task::{
}; };
use terminals::Terminals; use terminals::Terminals;
use text::{Anchor, BufferId, LineEnding}; use text::{Anchor, BufferId, LineEnding};
use unicase::UniCase;
use util::{ use util::{
debug_panic, defer, maybe, merge_json_value_into, parse_env_output, debug_panic, defer, maybe, merge_json_value_into, parse_env_output,
paths::{ paths::{
LOCAL_SETTINGS_RELATIVE_PATH, LOCAL_TASKS_RELATIVE_PATH, LOCAL_VSCODE_TASKS_RELATIVE_PATH, LOCAL_SETTINGS_RELATIVE_PATH, LOCAL_TASKS_RELATIVE_PATH, LOCAL_VSCODE_TASKS_RELATIVE_PATH,
}, },
post_inc, ResultExt, TryFutureExt as _, post_inc, NumericPrefixWithSuffix, ResultExt, TryFutureExt as _,
}; };
use worktree::{CreatedEntry, RemoteWorktreeClient, Snapshot, Traversal}; use worktree::{CreatedEntry, RemoteWorktreeClient, Snapshot, Traversal};
@ -620,29 +621,11 @@ enum SearchMatchCandidate {
Path { Path {
worktree_id: WorktreeId, worktree_id: WorktreeId,
is_ignored: bool, is_ignored: bool,
is_file: bool,
path: Arc<Path>, path: Arc<Path>,
}, },
} }
impl SearchMatchCandidate {
fn path(&self) -> Option<Arc<Path>> {
match self {
SearchMatchCandidate::OpenBuffer { path, .. } => path.clone(),
SearchMatchCandidate::Path { path, .. } => Some(path.clone()),
}
}
fn is_ignored(&self) -> bool {
matches!(
self,
SearchMatchCandidate::Path {
is_ignored: true,
..
}
)
}
}
pub enum SearchResult { pub enum SearchResult {
Buffer { Buffer {
buffer: Model<Buffer>, buffer: Model<Buffer>,
@ -7198,7 +7181,9 @@ impl Project {
} else { } else {
false false
}; };
matching_paths.sort_by_key(|candidate| (candidate.is_ignored(), candidate.path())); cx.update(|cx| {
sort_search_matches(&mut matching_paths, cx);
})?;
let mut range_count = 0; let mut range_count = 0;
let query = Arc::new(query); let query = Arc::new(query);
@ -11257,6 +11242,7 @@ async fn search_snapshots(
worktree_id: snapshot.id(), worktree_id: snapshot.id(),
path: entry.path.clone(), path: entry.path.clone(),
is_ignored: entry.is_ignored, is_ignored: entry.is_ignored,
is_file: entry.is_file(),
}; };
if results_tx.send(project_path).await.is_err() { if results_tx.send(project_path).await.is_err() {
return; return;
@ -11329,6 +11315,7 @@ async fn search_ignored_entry(
.expect("scanning worktree-related files"), .expect("scanning worktree-related files"),
), ),
is_ignored: true, is_ignored: true,
is_file: ignored_entry.is_file(),
}; };
if counter_tx.send(project_path).await.is_err() { if counter_tx.send(project_path).await.is_err() {
return; return;
@ -11994,3 +11981,127 @@ impl DiagnosticSummary {
} }
} }
} }
pub fn sort_worktree_entries(entries: &mut Vec<Entry>) {
entries.sort_by(|entry_a, entry_b| {
compare_paths(
(&entry_a.path, entry_a.is_file()),
(&entry_b.path, entry_b.is_file()),
)
});
}
fn sort_search_matches(search_matches: &mut Vec<SearchMatchCandidate>, cx: &AppContext) {
search_matches.sort_by(|entry_a, entry_b| match (entry_a, entry_b) {
(
SearchMatchCandidate::OpenBuffer {
buffer: buffer_a,
path: None,
},
SearchMatchCandidate::OpenBuffer {
buffer: buffer_b,
path: None,
},
) => buffer_a
.read(cx)
.remote_id()
.cmp(&buffer_b.read(cx).remote_id()),
(
SearchMatchCandidate::OpenBuffer { path: None, .. },
SearchMatchCandidate::Path { .. }
| SearchMatchCandidate::OpenBuffer { path: Some(_), .. },
) => Ordering::Less,
(
SearchMatchCandidate::OpenBuffer { path: Some(_), .. }
| SearchMatchCandidate::Path { .. },
SearchMatchCandidate::OpenBuffer { path: None, .. },
) => Ordering::Greater,
(
SearchMatchCandidate::OpenBuffer {
path: Some(path_a), ..
},
SearchMatchCandidate::Path {
is_file: is_file_b,
path: path_b,
..
},
) => compare_paths((path_a.as_ref(), true), (path_b.as_ref(), *is_file_b)),
(
SearchMatchCandidate::Path {
is_file: is_file_a,
path: path_a,
..
},
SearchMatchCandidate::OpenBuffer {
path: Some(path_b), ..
},
) => compare_paths((path_a.as_ref(), *is_file_a), (path_b.as_ref(), true)),
(
SearchMatchCandidate::OpenBuffer {
path: Some(path_a), ..
},
SearchMatchCandidate::OpenBuffer {
path: Some(path_b), ..
},
) => compare_paths((path_a.as_ref(), true), (path_b.as_ref(), true)),
(
SearchMatchCandidate::Path {
worktree_id: worktree_id_a,
is_file: is_file_a,
path: path_a,
..
},
SearchMatchCandidate::Path {
worktree_id: worktree_id_b,
is_file: is_file_b,
path: path_b,
..
},
) => worktree_id_a.cmp(&worktree_id_b).then_with(|| {
compare_paths((path_a.as_ref(), *is_file_a), (path_b.as_ref(), *is_file_b))
}),
});
}
fn compare_paths(
(path_a, a_is_file): (&Path, bool),
(path_b, b_is_file): (&Path, bool),
) -> cmp::Ordering {
let mut components_a = path_a.components().peekable();
let mut components_b = path_b.components().peekable();
loop {
match (components_a.next(), components_b.next()) {
(Some(component_a), Some(component_b)) => {
let a_is_file = components_a.peek().is_none() && a_is_file;
let b_is_file = components_b.peek().is_none() && b_is_file;
let ordering = a_is_file.cmp(&b_is_file).then_with(|| {
let maybe_numeric_ordering = maybe!({
let num_and_remainder_a = Path::new(component_a.as_os_str())
.file_stem()
.and_then(|s| s.to_str())
.and_then(NumericPrefixWithSuffix::from_numeric_prefixed_str)?;
let num_and_remainder_b = Path::new(component_b.as_os_str())
.file_stem()
.and_then(|s| s.to_str())
.and_then(NumericPrefixWithSuffix::from_numeric_prefixed_str)?;
num_and_remainder_a.partial_cmp(&num_and_remainder_b)
});
maybe_numeric_ordering.unwrap_or_else(|| {
let name_a = UniCase::new(component_a.as_os_str().to_string_lossy());
let name_b = UniCase::new(component_b.as_os_str().to_string_lossy());
name_a.cmp(&name_b)
})
});
if !ordering.is_eq() {
return ordering;
}
}
(Some(_), None) => break cmp::Ordering::Greater,
(None, Some(_)) => break cmp::Ordering::Less,
(None, None) => break cmp::Ordering::Equal,
}
}
}

View file

@ -31,7 +31,6 @@ serde_json.workspace = true
settings.workspace = true settings.workspace = true
theme.workspace = true theme.workspace = true
ui.workspace = true ui.workspace = true
unicase.workspace = true
util.workspace = true util.workspace = true
client.workspace = true client.workspace = true
worktree.workspace = true worktree.workspace = true

View file

@ -22,7 +22,6 @@ use project::{Entry, EntryKind, Fs, Project, ProjectEntryId, ProjectPath, Worktr
use project_panel_settings::{ProjectPanelDockPosition, ProjectPanelSettings}; use project_panel_settings::{ProjectPanelDockPosition, ProjectPanelSettings};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::{ use std::{
cmp::Ordering,
collections::HashSet, collections::HashSet,
ffi::OsStr, ffi::OsStr,
ops::Range, ops::Range,
@ -31,8 +30,7 @@ use std::{
}; };
use theme::ThemeSettings; use theme::ThemeSettings;
use ui::{prelude::*, v_flex, ContextMenu, Icon, KeyBinding, Label, ListItem, Tooltip}; use ui::{prelude::*, v_flex, ContextMenu, Icon, KeyBinding, Label, ListItem, Tooltip};
use unicase::UniCase; use util::{maybe, ResultExt, TryFutureExt};
use util::{maybe, NumericPrefixWithSuffix, ResultExt, TryFutureExt};
use workspace::{ use workspace::{
dock::{DockPosition, Panel, PanelEvent}, dock::{DockPosition, Panel, PanelEvent},
notifications::{DetachAndPromptErr, NotifyTaskExt}, notifications::{DetachAndPromptErr, NotifyTaskExt},
@ -1623,52 +1621,7 @@ impl ProjectPanel {
} }
snapshot.propagate_git_statuses(&mut visible_worktree_entries); snapshot.propagate_git_statuses(&mut visible_worktree_entries);
project::sort_worktree_entries(&mut visible_worktree_entries);
visible_worktree_entries.sort_by(|entry_a, entry_b| {
let mut components_a = entry_a.path.components().peekable();
let mut components_b = entry_b.path.components().peekable();
loop {
match (components_a.next(), components_b.next()) {
(Some(component_a), Some(component_b)) => {
let a_is_file = components_a.peek().is_none() && entry_a.is_file();
let b_is_file = components_b.peek().is_none() && entry_b.is_file();
let ordering = a_is_file.cmp(&b_is_file).then_with(|| {
let maybe_numeric_ordering = maybe!({
let num_and_remainder_a = Path::new(component_a.as_os_str())
.file_stem()
.and_then(|s| s.to_str())
.and_then(
NumericPrefixWithSuffix::from_numeric_prefixed_str,
)?;
let num_and_remainder_b = Path::new(component_b.as_os_str())
.file_stem()
.and_then(|s| s.to_str())
.and_then(
NumericPrefixWithSuffix::from_numeric_prefixed_str,
)?;
num_and_remainder_a.partial_cmp(&num_and_remainder_b)
});
maybe_numeric_ordering.unwrap_or_else(|| {
let name_a =
UniCase::new(component_a.as_os_str().to_string_lossy());
let name_b =
UniCase::new(component_b.as_os_str().to_string_lossy());
name_a.cmp(&name_b)
})
});
if !ordering.is_eq() {
return ordering;
}
}
(Some(_), None) => break Ordering::Greater,
(None, Some(_)) => break Ordering::Less,
(None, None) => break Ordering::Equal,
}
}
});
self.visible_entries self.visible_entries
.push((worktree_id, visible_worktree_entries)); .push((worktree_id, visible_worktree_entries));
} }