2023-04-16 21:46:10 -05:00
|
|
|
use crate::utils::prop_structs::{ButtonProps, ContentChildren};
|
2023-04-13 12:51:25 -05:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
|
|
use dioxus_router::Link;
|
|
|
|
|
|
|
|
pub fn BackToHomePage(cx: Scope) -> Element {
|
|
|
|
#[cfg(any(target_family = "windows", target_family = "unix"))]
|
|
|
|
return cx.render(rsx!{
|
2023-04-16 21:46:10 -05:00
|
|
|
a {href: "/",
|
2023-04-13 12:51:25 -05:00
|
|
|
p {
|
|
|
|
"Back to the homepage"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
|
|
return cx.render(rsx!{
|
2023-04-16 21:46:10 -05:00
|
|
|
Link { to: "/",
|
2023-04-13 12:51:25 -05:00
|
|
|
p {
|
|
|
|
"Back to the homepage"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn NavigationButton(cx: Scope<ButtonProps>) -> Element {
|
|
|
|
let title = cx.props.title.clone();
|
|
|
|
let title_ref = title.as_str();
|
|
|
|
let slug = cx.props.slug.clone();
|
|
|
|
let slug_ref = slug.as_str();
|
|
|
|
#[cfg(any(target_family = "windows", target_family = "unix"))]
|
|
|
|
return cx.render(rsx!{
|
2023-04-16 21:46:10 -05:00
|
|
|
a { href: "{slug_ref}",
|
2023-04-13 12:51:25 -05:00
|
|
|
"{title_ref}"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
|
|
return cx.render(rsx!{
|
2023-04-16 21:46:10 -05:00
|
|
|
Link { to: "{slug_ref}",
|
2023-04-13 12:51:25 -05:00
|
|
|
div {
|
|
|
|
dangerous_inner_html: "{title_ref}",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-04-16 21:46:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ButtonGroup<'a>(cx: Scope<'a, ContentChildren<'a>>) -> Element {
|
|
|
|
cx.render(rsx! {
|
|
|
|
div { class: "grid md:grid-flow-col grid-flow-row gap-y-4",
|
|
|
|
&cx.props.children
|
|
|
|
}
|
|
|
|
})
|
2023-04-13 12:51:25 -05:00
|
|
|
}
|