79 lines
2.8 KiB
Rust
79 lines
2.8 KiB
Rust
use std::marker::PhantomData;
|
|
use std::path::PathBuf;
|
|
use std::str::FromStr;
|
|
use std::sync::Arc;
|
|
|
|
use ui::prelude::*;
|
|
use ui::{theme, Breadcrumb, HighlightColor, HighlightedText, Icon, IconButton, Symbol, Toolbar};
|
|
|
|
use crate::story::Story;
|
|
|
|
#[derive(Element)]
|
|
pub struct ToolbarStory<S: 'static + Send + Sync + Clone> {
|
|
state_type: PhantomData<S>,
|
|
}
|
|
|
|
impl<S: 'static + Send + Sync + Clone> ToolbarStory<S> {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
state_type: PhantomData,
|
|
}
|
|
}
|
|
|
|
fn render(&mut self, cx: &mut ViewContext<S>) -> impl Element<State = S> {
|
|
let theme = theme(cx);
|
|
|
|
struct LeftItemsPayload {
|
|
pub theme: Arc<Theme>,
|
|
}
|
|
|
|
Story::container(cx)
|
|
.child(Story::title_for::<_, Toolbar<S>>(cx))
|
|
.child(Story::label(cx, "Default"))
|
|
.child(Toolbar::new(
|
|
|_, payload| {
|
|
let payload = payload.downcast_ref::<LeftItemsPayload>().unwrap();
|
|
|
|
let theme = payload.theme.clone();
|
|
|
|
vec![Breadcrumb::new(
|
|
PathBuf::from_str("crates/ui/src/components/toolbar.rs").unwrap(),
|
|
vec![
|
|
Symbol(vec![
|
|
HighlightedText {
|
|
text: "impl ".to_string(),
|
|
color: HighlightColor::Keyword.hsla(&theme),
|
|
},
|
|
HighlightedText {
|
|
text: "ToolbarStory".to_string(),
|
|
color: HighlightColor::Function.hsla(&theme),
|
|
},
|
|
]),
|
|
Symbol(vec![
|
|
HighlightedText {
|
|
text: "fn ".to_string(),
|
|
color: HighlightColor::Keyword.hsla(&theme),
|
|
},
|
|
HighlightedText {
|
|
text: "render".to_string(),
|
|
color: HighlightColor::Function.hsla(&theme),
|
|
},
|
|
]),
|
|
],
|
|
)
|
|
.into_any()]
|
|
},
|
|
Box::new(LeftItemsPayload {
|
|
theme: theme.clone(),
|
|
}),
|
|
|_, _| {
|
|
vec![
|
|
IconButton::new(Icon::InlayHint).into_any(),
|
|
IconButton::new(Icon::MagnifyingGlass).into_any(),
|
|
IconButton::new(Icon::MagicWand).into_any(),
|
|
]
|
|
},
|
|
Box::new(()),
|
|
))
|
|
}
|
|
}
|