Add placeholder `BufferSearch`

Marshall Bowers created

Change summary

crates/ui2/src/components.rs               |  2 ++
crates/ui2/src/components/buffer_search.rs | 20 ++++++++++++++++++++
crates/ui2/src/components/editor_pane.rs   |  5 +++--
3 files changed, 25 insertions(+), 2 deletions(-)

Detailed changes

crates/ui2/src/components.rs 🔗

@@ -1,6 +1,7 @@
 mod assistant_panel;
 mod breadcrumb;
 mod buffer;
+mod buffer_search;
 mod chat_panel;
 mod collab_panel;
 mod command_palette;
@@ -33,6 +34,7 @@ mod workspace;
 pub use assistant_panel::*;
 pub use breadcrumb::*;
 pub use buffer::*;
+pub use buffer_search::*;
 pub use chat_panel::*;
 pub use collab_panel::*;
 pub use command_palette::*;

crates/ui2/src/components/buffer_search.rs 🔗

@@ -0,0 +1,20 @@
+use crate::prelude::*;
+use crate::EditorPane;
+
+#[derive(Element)]
+#[element(view_state = "EditorPane")]
+pub struct BufferSearch {}
+
+impl BufferSearch {
+    pub fn new() -> Self {
+        Self {}
+    }
+
+    fn render(
+        &mut self,
+        _view: &mut EditorPane,
+        cx: &mut ViewContext<EditorPane>,
+    ) -> impl Element<ViewState = EditorPane> {
+        div().child("This is where Buffer Search goes.")
+    }
+}

crates/ui2/src/components/editor_pane.rs 🔗

@@ -4,8 +4,8 @@ use gpui3::{view, Context, View};
 
 use crate::prelude::*;
 use crate::{
-    hello_world_rust_editor_with_status_example, v_stack, Breadcrumb, Buffer, Icon, IconButton,
-    IconColor, Symbol, Tab, TabBar, Toolbar,
+    hello_world_rust_editor_with_status_example, v_stack, Breadcrumb, Buffer, BufferSearch, Icon,
+    IconButton, IconColor, Symbol, Tab, TabBar, Toolbar,
 };
 
 #[derive(Clone)]
@@ -69,6 +69,7 @@ impl EditorPane {
                         IconButton::new(Icon::MagicWand),
                     ]),
             )
+            .children(Some(BufferSearch::new()).filter(|_| self.is_buffer_search_open))
             .child(self.buffer.clone())
     }
 }