mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-22 22:09:22 -05:00
46 lines
1.5 KiB
Rust
46 lines
1.5 KiB
Rust
use super::use_tabbar;
|
|
use crate::{icon::Icon, theme::use_theme, Theme};
|
|
use leptos::*;
|
|
use thaw_components::*;
|
|
use thaw_utils::{mount_style, StoredMaybeSignal};
|
|
|
|
#[component]
|
|
pub fn TabbarItem(
|
|
#[prop(into)] key: MaybeSignal<String>,
|
|
#[prop(optional, into)] icon: Option<icondata_core::Icon>,
|
|
children: Children,
|
|
) -> impl IntoView {
|
|
mount_style("tabbar-item", include_str!("./tabbar-item.css"));
|
|
let theme = use_theme(Theme::light);
|
|
let tabbar = use_tabbar();
|
|
let key: StoredMaybeSignal<_> = key.into();
|
|
let on_click = move |_| {
|
|
let click_key = key.get();
|
|
if tabbar.0.with(|key| key != &click_key) {
|
|
tabbar.0.set(click_key);
|
|
}
|
|
};
|
|
|
|
let css_vars = create_memo(move |_| {
|
|
let mut css_vars = String::new();
|
|
theme.with(|theme| {
|
|
let font_color = theme.common.color_primary.clone();
|
|
css_vars.push_str(&format!("--thaw-font-color-selected: {font_color};"));
|
|
});
|
|
css_vars
|
|
});
|
|
|
|
view! {
|
|
<div
|
|
class="thaw-tabbar-item"
|
|
class=("thaw-tabbar-item--selected", move || tabbar.0.get() == key.get())
|
|
on:click=on_click
|
|
style=move || css_vars.get()
|
|
>
|
|
<OptionComp value=icon let:icon>
|
|
<Icon icon=icon width="22px" height="22px" class="thaw-tabbar-item__icon"/>
|
|
</OptionComp>
|
|
<div class="thaw-tabbar-item__content">{children()}</div>
|
|
</div>
|
|
}
|
|
}
|