mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-25 20:11:49 +03:00
Fix channel collapsing
This commit is contained in:
parent
6f173c64b3
commit
70eeefa1f8
@ -188,13 +188,6 @@ impl ChannelStore {
|
||||
self.client.clone()
|
||||
}
|
||||
|
||||
pub fn channel_has_children(&self) -> bool {
|
||||
self.channel_index
|
||||
.by_id()
|
||||
.iter()
|
||||
.any(|(_, channel)| channel.parent_path.contains(&channel.id))
|
||||
}
|
||||
|
||||
/// Returns the number of unique channels in the store
|
||||
pub fn channel_count(&self) -> usize {
|
||||
self.channel_index.by_id().len()
|
||||
|
@ -472,9 +472,20 @@ impl CollabPanel {
|
||||
cx,
|
||||
)
|
||||
}
|
||||
ListEntry::Channel { channel, depth, .. } => {
|
||||
let channel_row =
|
||||
this.render_channel(&*channel, *depth, &theme, is_selected, ix, cx);
|
||||
ListEntry::Channel {
|
||||
channel,
|
||||
depth,
|
||||
has_children,
|
||||
} => {
|
||||
let channel_row = this.render_channel(
|
||||
&*channel,
|
||||
*depth,
|
||||
&theme,
|
||||
is_selected,
|
||||
*has_children,
|
||||
ix,
|
||||
cx,
|
||||
);
|
||||
|
||||
if is_selected && this.context_menu_on_selected {
|
||||
Stack::new()
|
||||
@ -1867,12 +1878,12 @@ impl CollabPanel {
|
||||
depth: usize,
|
||||
theme: &theme::Theme,
|
||||
is_selected: bool,
|
||||
has_children: bool,
|
||||
ix: usize,
|
||||
cx: &mut ViewContext<Self>,
|
||||
) -> AnyElement<Self> {
|
||||
let channel_id = channel.id;
|
||||
let collab_theme = &theme.collab_panel;
|
||||
let has_children = self.channel_store.read(cx).channel_has_children();
|
||||
let is_public = self
|
||||
.channel_store
|
||||
.read(cx)
|
||||
|
Loading…
Reference in New Issue
Block a user