mirror of
https://github.com/adoyle0/thaw.git
synced 2025-03-13 22:19:49 -04:00
48 lines
1.4 KiB
Rust
48 lines
1.4 KiB
Rust
|
mod theme;
|
||
|
|
||
|
use crate::{theme::use_theme, Theme};
|
||
|
use leptos::*;
|
||
|
pub use theme::SkeletionTheme;
|
||
|
|
||
|
#[component]
|
||
|
pub fn Skeleton(
|
||
|
#[prop(default = MaybeSignal::Static(1), into)] repeat: MaybeSignal<u32>,
|
||
|
#[prop(optional, into)] text: MaybeSignal<bool>,
|
||
|
#[prop(optional, into)] width: Option<MaybeSignal<String>>,
|
||
|
#[prop(optional, into)] height: Option<MaybeSignal<String>>,
|
||
|
) -> impl IntoView {
|
||
|
let theme = use_theme(Theme::light);
|
||
|
let css_vars = create_memo(move |_| {
|
||
|
let mut css_vars = String::new();
|
||
|
if text.get() {
|
||
|
css_vars.push_str("display: inline-block;");
|
||
|
}
|
||
|
|
||
|
if let Some(width) = width.as_ref() {
|
||
|
css_vars.push_str(&format!("width: {};", width.get()));
|
||
|
}
|
||
|
if let Some(height) = height.as_ref() {
|
||
|
css_vars.push_str(&format!("height: {};", height.get()));
|
||
|
}
|
||
|
|
||
|
theme.with(|theme| {
|
||
|
css_vars.push_str(&format!(
|
||
|
"--background-color-start: {};",
|
||
|
theme.skeletion.background_color_start
|
||
|
));
|
||
|
css_vars.push_str(&format!(
|
||
|
"--background-color-end: {};",
|
||
|
theme.skeletion.background_color_end
|
||
|
));
|
||
|
});
|
||
|
|
||
|
css_vars
|
||
|
});
|
||
|
(0..repeat.get())
|
||
|
.into_iter()
|
||
|
.map(|_| {
|
||
|
view! { <div class="melt-skeleton" style=move || css_vars.get()></div> }
|
||
|
})
|
||
|
.collect_view()
|
||
|
}
|