breadcrumb: Add Breadcrumb. (#461)

<img width="1187" alt="image"
src="https://github.com/user-attachments/assets/a64b88da-bc57-4d28-a440-b4b7b456612b">
This commit is contained in:
Jason Lee 2024-12-03 22:24:44 +08:00 committed by GitHub
parent 23f9352295
commit cc23291d19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 148 additions and 4 deletions

View file

@ -65,6 +65,7 @@ A UI components for building desktop application by using [GPUI](https://gpui.rs
- [x] WebView
- [x] Accordion
- [x] Sidebar
- [x] Breadcrumb
## Showcase

View file

@ -5,6 +5,7 @@ use gpui::{
use serde::Deserialize;
use ui::{
breadcrumb::{Breadcrumb, BreadcrumbItem},
divider::Divider,
h_flex,
popup_menu::PopupMenuExt,
@ -103,6 +104,7 @@ impl Item {
let item = *self;
move |this, _, cx| {
this.active_item = item;
this.active_subitem = None;
cx.notify();
}
}
@ -332,10 +334,25 @@ impl Render for SidebarStory {
})),
)
.child(Divider::vertical().h_4())
.child(self.active_item.label())
.when_some(self.active_subitem, |this, subitem| {
this.child(Divider::vertical().h_4()).child(subitem.label())
}),
.child(
Breadcrumb::new()
.item(BreadcrumbItem::new("0", "Home").on_click(cx.listener(
|this, _, cx| {
this.active_item = Item::Playground;
cx.notify();
},
)))
.item(
BreadcrumbItem::new("1", self.active_item.label())
.on_click(cx.listener(|this, _, cx| {
this.active_subitem = None;
cx.notify();
})),
)
.when_some(self.active_subitem, |this, subitem| {
this.item(BreadcrumbItem::new("2", subitem.label()))
}),
),
)
.child("This content"),
)

118
crates/ui/src/breadcrumb.rs Normal file
View file

@ -0,0 +1,118 @@
use std::rc::Rc;
use gpui::{
div, prelude::FluentBuilder as _, ClickEvent, ElementId, InteractiveElement as _, IntoElement,
ParentElement, RenderOnce, SharedString, StatefulInteractiveElement, Styled, WindowContext,
};
use crate::{h_flex, theme::ActiveTheme, Icon, IconName};
#[derive(IntoElement)]
pub struct Breadcrumb {
items: Vec<BreadcrumbItem>,
}
#[derive(IntoElement)]
pub struct BreadcrumbItem {
id: ElementId,
text: SharedString,
on_click: Option<Rc<dyn Fn(&ClickEvent, &mut WindowContext)>>,
disabled: bool,
is_last: bool,
}
impl BreadcrumbItem {
pub fn new(id: impl Into<ElementId>, text: impl Into<SharedString>) -> Self {
Self {
id: id.into(),
text: text.into(),
on_click: None,
disabled: false,
is_last: false,
}
}
pub fn disabled(mut self, disabled: bool) -> Self {
self.disabled = disabled;
self
}
pub fn on_click(
mut self,
on_click: impl Fn(&ClickEvent, &mut WindowContext) + 'static,
) -> Self {
self.on_click = Some(Rc::new(on_click));
self
}
/// For internal use only.
fn is_last(mut self, is_last: bool) -> Self {
self.is_last = is_last;
self
}
}
impl RenderOnce for BreadcrumbItem {
fn render(self, cx: &mut WindowContext) -> impl IntoElement {
div()
.id(self.id)
.child(self.text)
.text_color(cx.theme().muted_foreground)
.when(self.is_last, |this| this.text_color(cx.theme().foreground))
.when(self.disabled, |this| {
this.text_color(cx.theme().muted_foreground)
})
.when(!self.disabled, |this| {
this.when_some(self.on_click, |this, on_click| {
this.cursor_pointer().on_click(move |event, cx| {
on_click(event, cx);
})
})
})
}
}
impl Breadcrumb {
pub fn new() -> Self {
Self { items: Vec::new() }
}
/// Add an item to the breadcrumb.
pub fn item(mut self, item: BreadcrumbItem) -> Self {
self.items.push(item);
self
}
}
#[derive(IntoElement)]
struct BreadcrumbSeparator;
impl RenderOnce for BreadcrumbSeparator {
fn render(self, cx: &mut WindowContext) -> impl IntoElement {
Icon::new(IconName::ChevronRight)
.text_color(cx.theme().muted_foreground)
.size_3p5()
.into_any_element()
}
}
impl RenderOnce for Breadcrumb {
fn render(self, cx: &mut WindowContext) -> impl IntoElement {
let items_count = self.items.len();
let mut children = vec![];
for (ix, item) in self.items.into_iter().enumerate() {
let is_last = ix == items_count - 1;
children.push(item.is_last(is_last).into_any_element());
if !is_last {
children.push(BreadcrumbSeparator.into_any_element());
}
}
h_flex()
.gap_1p5()
.text_sm()
.text_color(cx.theme().muted_foreground)
.children(children)
}
}

View file

@ -10,6 +10,7 @@ mod title_bar;
pub mod accordion;
pub mod animation;
pub mod breadcrumb;
pub mod button;
pub mod button_group;
pub mod checkbox;

View file

@ -10,6 +10,7 @@ use crate::theme::ActiveTheme as _;
pub struct Link {
base: Stateful<Div>,
href: Option<SharedString>,
disabled: bool,
on_click: Option<Box<dyn Fn(&ClickEvent, &mut gpui::WindowContext) + 'static>>,
}
@ -19,6 +20,7 @@ impl Link {
base: div().id(id),
href: None,
on_click: None,
disabled: false,
}
}
@ -34,6 +36,11 @@ impl Link {
self.on_click = Some(Box::new(handler));
self
}
pub fn disabled(mut self, disabled: bool) -> Self {
self.disabled = disabled;
self
}
}
impl Styled for Link {