Test moving panels

Co-Authored-By: Julia Risley <julia@zed.dev>
This commit is contained in:
Nathan Sobo 2023-05-10 10:41:03 -06:00
parent cc21421ea8
commit 5549669316
6 changed files with 169 additions and 15 deletions

View file

@ -202,6 +202,8 @@ impl Dock {
if panel_ix == self.active_panel_index {
self.active_panel_index = 0;
self.set_open(false, cx);
} else if panel_ix < self.active_panel_index {
self.active_panel_index -= 1;
}
self.panel_entries.remove(panel_ix);
cx.notify();
@ -228,7 +230,9 @@ impl Dock {
pub fn active_panel(&self) -> Option<&Rc<dyn PanelHandle>> {
if self.is_open {
self.panel_entries.get(self.active_panel_index).map(|entry| &entry.panel)
self.panel_entries
.get(self.active_panel_index)
.map(|entry| &entry.panel)
} else {
None
}
@ -416,3 +420,68 @@ impl StatusItemView for PanelButtons {
) {
}
}
#[cfg(test)]
pub(crate) mod test {
use super::*;
use gpui::Entity;
pub enum TestPanelEvent {
PositionChanged,
Activated,
Closed,
}
pub struct TestPanel {
pub position: DockPosition,
}
impl Entity for TestPanel {
type Event = TestPanelEvent;
}
impl View for TestPanel {
fn ui_name() -> &'static str {
"TestPanel"
}
fn render(&mut self, _: &mut ViewContext<'_, '_, Self>) -> AnyElement<Self> {
Empty::new().into_any()
}
}
impl Panel for TestPanel {
fn position(&self, _: &gpui::WindowContext) -> super::DockPosition {
self.position
}
fn position_is_valid(&self, _: super::DockPosition) -> bool {
true
}
fn set_position(&mut self, position: DockPosition, cx: &mut ViewContext<Self>) {
self.position = position;
cx.emit(TestPanelEvent::PositionChanged);
}
fn icon_path(&self) -> &'static str {
"icons/test_panel.svg"
}
fn icon_tooltip(&self) -> String {
"Test Panel".into()
}
fn should_change_position_on_event(event: &Self::Event) -> bool {
matches!(event, TestPanelEvent::PositionChanged)
}
fn should_activate_on_event(&self, event: &Self::Event, _: &gpui::AppContext) -> bool {
matches!(event, TestPanelEvent::Activated)
}
fn should_close_on_event(&self, event: &Self::Event, _: &gpui::AppContext) -> bool {
matches!(event, TestPanelEvent::Closed)
}
}
}