From 2a11c227601a27d2dba458ac82eb0dedb56d8fc2 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 24 Jan 2024 12:06:03 -0700 Subject: [PATCH] Ensure chat opens when guests join shared projects This was broken because the panel was created before being added to a dock. Invert the control order and add `starts_open()` to the Panel trait. --- crates/collab_ui/src/chat_panel.rs | 15 +++++++-------- crates/project_panel/src/project_panel.rs | 14 ++++++++------ crates/workspace/src/dock.rs | 8 +++++++- crates/zed/src/zed.rs | 15 --------------- 4 files changed, 22 insertions(+), 30 deletions(-) diff --git a/crates/collab_ui/src/chat_panel.rs b/crates/collab_ui/src/chat_panel.rs index aee181e1df..ebba8ffc26 100644 --- a/crates/collab_ui/src/chat_panel.rs +++ b/crates/collab_ui/src/chat_panel.rs @@ -132,14 +132,6 @@ impl ChatPanel { { this.select_channel(channel_id, None, cx) .detach_and_log_err(cx); - - if ActiveCall::global(cx) - .read(cx) - .room() - .is_some_and(|room| room.read(cx).contains_guests()) - { - cx.emit(PanelEvent::Activate) - } } this.subscriptions.push(cx.subscribe( @@ -665,6 +657,13 @@ impl Panel for ChatPanel { fn toggle_action(&self) -> Box { Box::new(ToggleFocus) } + + fn starts_open(&self, cx: &WindowContext) -> bool { + ActiveCall::global(cx) + .read(cx) + .room() + .is_some_and(|room| room.read(cx).contains_guests()) + } } impl EventEmitter for ChatPanel {} diff --git a/crates/project_panel/src/project_panel.rs b/crates/project_panel/src/project_panel.rs index 1ad483837f..fdfdea9dd7 100644 --- a/crates/project_panel/src/project_panel.rs +++ b/crates/project_panel/src/project_panel.rs @@ -58,7 +58,6 @@ pub struct ProjectPanel { workspace: WeakView, width: Option, pending_serialization: Task>, - was_deserialized: bool, } #[derive(Copy, Clone, Debug)] @@ -244,7 +243,6 @@ impl ProjectPanel { workspace: workspace.weak_handle(), width: None, pending_serialization: Task::ready(None), - was_deserialized: false, }; this.update_visible_entries(None, cx); @@ -324,7 +322,6 @@ impl ProjectPanel { if let Some(serialized_panel) = serialized_panel { panel.update(cx, |panel, cx| { panel.width = serialized_panel.width; - panel.was_deserialized = true; cx.notify(); }); } @@ -1460,9 +1457,6 @@ impl ProjectPanel { cx.notify(); } } - pub fn was_deserialized(&self) -> bool { - self.was_deserialized - } } impl Render for ProjectPanel { @@ -1637,6 +1631,14 @@ impl Panel for ProjectPanel { fn persistent_name() -> &'static str { "Project Panel" } + + fn starts_open(&self, cx: &WindowContext) -> bool { + self.project.read(cx).visible_worktrees(cx).any(|tree| { + tree.read(cx) + .root_entry() + .map_or(false, |entry| entry.is_dir()) + }) + } } impl FocusableView for ProjectPanel { diff --git a/crates/workspace/src/dock.rs b/crates/workspace/src/dock.rs index a649b441a6..021383f73c 100644 --- a/crates/workspace/src/dock.rs +++ b/crates/workspace/src/dock.rs @@ -38,6 +38,9 @@ pub trait Panel: FocusableView + EventEmitter { fn is_zoomed(&self, _cx: &WindowContext) -> bool { false } + fn starts_open(&self, _cx: &WindowContext) -> bool { + false + } fn set_zoomed(&mut self, _zoomed: bool, _cx: &mut ViewContext) {} fn set_active(&mut self, _active: bool, _cx: &mut ViewContext) {} } @@ -414,7 +417,7 @@ impl Dock { let name = panel.persistent_name().to_string(); self.panel_entries.push(PanelEntry { - panel: Arc::new(panel), + panel: Arc::new(panel.clone()), _subscriptions: subscriptions, }); if let Some(serialized) = self.serialized_dock.clone() { @@ -429,6 +432,9 @@ impl Dock { }; } } + } else if panel.read(cx).starts_open(cx) { + self.activate_panel(self.panel_entries.len() - 1, cx); + self.set_open(true, cx); } cx.notify() diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index 3c714ad5da..a8a76b92a9 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -179,27 +179,12 @@ pub fn initialize_workspace(app_state: Arc, cx: &mut AppContext) { )?; workspace_handle.update(&mut cx, |workspace, cx| { - let was_deserialized = project_panel.read(cx).was_deserialized(); workspace.add_panel(project_panel, cx); workspace.add_panel(terminal_panel, cx); workspace.add_panel(assistant_panel, cx); workspace.add_panel(channels_panel, cx); workspace.add_panel(chat_panel, cx); workspace.add_panel(notification_panel, cx); - - if !was_deserialized - && workspace - .project() - .read(cx) - .visible_worktrees(cx) - .any(|tree| { - tree.read(cx) - .root_entry() - .map_or(false, |entry| entry.is_dir()) - }) - { - workspace.open_panel::(cx); - } cx.focus_self(); }) })