This PR renames the `h_stack` and `v_stack` to `h_flex` and `v_flex`, respectively. We were previously using `h_stack` and `v_stack` to match SwiftUI, but `h_flex` and `v_flex` fit better with the web/flexbox terminology that the rest of GPUI uses. Additionally, we were already calling the utility functions used to implement `h_stack` and `v_stack` by the new names. Release Notes: - N/A
115 lines
3.8 KiB
Rust
115 lines
3.8 KiB
Rust
use editor::Editor;
|
||
use gpui::{
|
||
Element, EventEmitter, IntoElement, ParentElement, Render, StyledText, Subscription,
|
||
ViewContext,
|
||
};
|
||
use itertools::Itertools;
|
||
use theme::ActiveTheme;
|
||
use ui::{prelude::*, ButtonLike, ButtonStyle, Label, Tooltip};
|
||
use workspace::{
|
||
item::{ItemEvent, ItemHandle},
|
||
ToolbarItemEvent, ToolbarItemLocation, ToolbarItemView,
|
||
};
|
||
|
||
pub struct Breadcrumbs {
|
||
pane_focused: bool,
|
||
active_item: Option<Box<dyn ItemHandle>>,
|
||
subscription: Option<Subscription>,
|
||
}
|
||
|
||
impl Breadcrumbs {
|
||
pub fn new() -> Self {
|
||
Self {
|
||
pane_focused: false,
|
||
active_item: Default::default(),
|
||
subscription: Default::default(),
|
||
}
|
||
}
|
||
}
|
||
|
||
impl EventEmitter<ToolbarItemEvent> for Breadcrumbs {}
|
||
|
||
impl Render for Breadcrumbs {
|
||
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
|
||
let element = h_flex().text_ui();
|
||
let Some(active_item) = self.active_item.as_ref() else {
|
||
return element;
|
||
};
|
||
let Some(segments) = active_item.breadcrumbs(cx.theme(), cx) else {
|
||
return element;
|
||
};
|
||
|
||
let highlighted_segments = segments.into_iter().map(|segment| {
|
||
let mut text_style = cx.text_style();
|
||
text_style.color = Color::Muted.color(cx);
|
||
|
||
StyledText::new(segment.text)
|
||
.with_highlights(&text_style, segment.highlights.unwrap_or_default())
|
||
.into_any()
|
||
});
|
||
let breadcrumbs = Itertools::intersperse_with(highlighted_segments, || {
|
||
Label::new("›").color(Color::Muted).into_any_element()
|
||
});
|
||
|
||
let breadcrumbs_stack = h_flex().gap_1().children(breadcrumbs);
|
||
match active_item
|
||
.downcast::<Editor>()
|
||
.map(|editor| editor.downgrade())
|
||
{
|
||
Some(editor) => element.child(
|
||
ButtonLike::new("toggle outline view")
|
||
.child(breadcrumbs_stack)
|
||
.style(ButtonStyle::Subtle)
|
||
.on_click(move |_, cx| {
|
||
if let Some(editor) = editor.upgrade() {
|
||
outline::toggle(editor, &outline::Toggle, cx)
|
||
}
|
||
})
|
||
.tooltip(|cx| Tooltip::for_action("Show symbol outline", &outline::Toggle, cx)),
|
||
),
|
||
None => element
|
||
// Match the height of the `ButtonLike` in the other arm.
|
||
.h(rems(22. / 16.))
|
||
.child(breadcrumbs_stack),
|
||
}
|
||
}
|
||
}
|
||
|
||
impl ToolbarItemView for Breadcrumbs {
|
||
fn set_active_pane_item(
|
||
&mut self,
|
||
active_pane_item: Option<&dyn ItemHandle>,
|
||
cx: &mut ViewContext<Self>,
|
||
) -> ToolbarItemLocation {
|
||
cx.notify();
|
||
self.active_item = None;
|
||
if let Some(item) = active_pane_item {
|
||
let this = cx.view().downgrade();
|
||
self.subscription = Some(item.subscribe_to_item_events(
|
||
cx,
|
||
Box::new(move |event, cx| {
|
||
if let ItemEvent::UpdateBreadcrumbs = event {
|
||
this.update(cx, |this, cx| {
|
||
cx.notify();
|
||
if let Some(active_item) = this.active_item.as_ref() {
|
||
cx.emit(ToolbarItemEvent::ChangeLocation(
|
||
active_item.breadcrumb_location(cx),
|
||
))
|
||
}
|
||
})
|
||
.ok();
|
||
}
|
||
}),
|
||
));
|
||
self.active_item = Some(item.boxed_clone());
|
||
item.breadcrumb_location(cx)
|
||
} else {
|
||
ToolbarItemLocation::Hidden
|
||
}
|
||
}
|
||
|
||
fn pane_focus_update(&mut self, pane_focused: bool, _: &mut ViewContext<Self>) {
|
||
self.pane_focused = pane_focused;
|
||
}
|
||
}
|