2023-04-17 18:04:18 -05:00
|
|
|
use super::super::utils::{prop_structs::{ButtonProps, ContentChildren}, user_prefs::{UserPrefs, ThemedComponent}};
|
2023-04-13 12:51:25 -05:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
|
|
use dioxus_router::Link;
|
|
|
|
|
2023-04-17 18:04:18 -05:00
|
|
|
pub fn BackToHomePage(cx: Scope<UserPrefs>) -> Element {
|
|
|
|
let (user_theme, user_font)= cx.props.clone().get_pref_classes(ThemedComponent::Button);
|
2023-04-13 12:51:25 -05:00
|
|
|
#[cfg(any(target_family = "windows", target_family = "unix"))]
|
|
|
|
return cx.render(rsx!{
|
2023-04-17 18:04:18 -05:00
|
|
|
a { class: "flex justify-center p-4 text-xl text-center ring-2 hover:animate-yip transition {user_theme} {user_font}",
|
2023-04-17 12:34:20 -05:00
|
|
|
href: "/",
|
2023-04-13 12:51:25 -05:00
|
|
|
p {
|
|
|
|
"Back to the homepage"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
|
|
return cx.render(rsx!{
|
2023-04-17 18:04:18 -05:00
|
|
|
Link { class: "flex justify-center p-4 text-xl text-center ring-2 hover:animate-yip transition {user_theme} {user_font}",
|
2023-04-17 12:34:20 -05:00
|
|
|
to: "/",
|
2023-04-13 12:51:25 -05:00
|
|
|
p {
|
|
|
|
"Back to the homepage"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn NavigationButton(cx: Scope<ButtonProps>) -> Element {
|
2023-04-17 18:04:18 -05:00
|
|
|
let (user_theme, user_font)= cx.props.user_prefs.clone().get_pref_classes(ThemedComponent::Button);
|
2023-04-13 12:51:25 -05:00
|
|
|
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-17 18:04:18 -05:00
|
|
|
a { class: "flex basis-full justify-center p-4 ml-2 mr-2 text-xl text-center ring-2 hover:animate-yip transition {user_theme} {user_font}",
|
2023-04-17 12:34:20 -05:00
|
|
|
href: "{slug_ref}",
|
2023-04-13 12:51:25 -05:00
|
|
|
"{title_ref}"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
|
|
return cx.render(rsx!{
|
2023-04-17 18:04:18 -05:00
|
|
|
Link { class: "flex basis-full justify-center p-4 ml-2 mr-2 text-xl text-center ring-2 hover:animate-yip transition {user_theme} {user_font}",
|
2023-04-17 12:34:20 -05:00
|
|
|
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! {
|
2023-04-17 18:04:18 -05:00
|
|
|
div { class: "flex md:flex-row md:space-y-0 flex-col space-y-4",
|
2023-04-16 21:46:10 -05:00
|
|
|
&cx.props.children
|
|
|
|
}
|
|
|
|
})
|
2023-04-13 12:51:25 -05:00
|
|
|
}
|