Add icon and hover description for symlinks (#12263)

![image](https://github.com/zed-industries/zed/assets/12102857/c6ed8140-1256-4618-aa46-64e66becdf7e)


![Screenshot_20240524_201346](https://github.com/zed-industries/zed/assets/12102857/2577067c-4f61-486a-8613-14941555f5a8)

Resolves https://github.com/zed-industries/zed/issues/12142


Release Notes:

- Added in project panel an icon and hover description for symlinks ([12142](https://github.com/zed-industries/zed/issues/12142))
This commit is contained in:
Patryck 2024-05-28 02:50:58 -04:00 committed by GitHub
parent f7115be3d1
commit a03813a471
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 35 additions and 4 deletions

View file

@ -29,7 +29,7 @@ use std::{
sync::Arc,
};
use theme::ThemeSettings;
use ui::{prelude::*, v_flex, ContextMenu, Icon, KeyBinding, Label, ListItem};
use ui::{prelude::*, v_flex, ContextMenu, Icon, KeyBinding, Label, ListItem, Tooltip};
use unicase::UniCase;
use util::{maybe, NumericPrefixWithSuffix, ResultExt, TryFutureExt};
use workspace::{
@ -103,6 +103,7 @@ pub struct EntryDetails {
is_cut: bool,
git_status: Option<GitFileStatus>,
is_private: bool,
canonical_path: Option<PathBuf>,
}
#[derive(PartialEq, Clone, Default, Debug, Deserialize)]
@ -1444,11 +1445,12 @@ impl ProjectPanel {
path: entry.path.join("\0").into(),
inode: 0,
mtime: entry.mtime,
is_symlink: false,
is_ignored: entry.is_ignored,
is_external: false,
is_private: false,
git_status: entry.git_status,
canonical_path: entry.canonical_path.clone(),
is_symlink: entry.is_symlink,
});
}
if expanded_dir_ids.binary_search(&entry.id).is_err()
@ -1646,6 +1648,7 @@ impl ProjectPanel {
.map_or(false, |e| e.is_cut() && e.entry_id() == entry.id),
git_status: status,
is_private: entry.is_private,
canonical_path: entry.canonical_path.clone(),
};
if let Some(edit_state) = &self.edit_state {
@ -1738,6 +1741,12 @@ impl ProjectPanel {
icon = FileIcons::get_icon(Path::new(&filename), cx);
}
}
let canonical_path = details
.canonical_path
.as_ref()
.map(|f| f.to_string_lossy().to_string());
let depth = details.depth;
div()
.id(entry_id.to_proto() as usize)
@ -1759,6 +1768,14 @@ impl ProjectPanel {
.indent_level(depth)
.indent_step_size(px(settings.indent_size))
.selected(is_selected)
.when_some(canonical_path, |this, path| {
this.end_slot::<Icon>(
Icon::new(IconName::ArrowUpRight)
.size(IconSize::Indicator)
.color(filename_text_color),
)
.tooltip(move |cx| Tooltip::text(format!("{path} • Symbolic Link"), cx))
})
.child(if let Some(icon) = &icon {
h_flex().child(Icon::from_path(icon.to_string()).color(filename_text_color))
} else {