mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-10 23:26:53 +00:00
bd38457adc
1. Removed unused `unzip_file` and `download_file` methods from `utils/helper.rs`. 2. Removed `reqwest` and `zip` crates from `Cargo.toml`.
61 lines
1.8 KiB
Rust
61 lines
1.8 KiB
Rust
use crate::route::Route;
|
|
use dioxus::logger::tracing::debug;
|
|
use dioxus::prelude::*;
|
|
|
|
const NAVBAR_CSS: Asset = asset!("/assets/styling/navbar.css");
|
|
|
|
#[component]
|
|
pub fn Navbar() -> Element {
|
|
rsx! {
|
|
document::Link { rel: "stylesheet", href: NAVBAR_CSS }
|
|
|
|
div { id: "navbar", class: "hidden", style: "display: none;",
|
|
Link { to: Route::HomeViews {}, "Home" }
|
|
Link { to: Route::SettingViews {}, "Setting" }
|
|
}
|
|
|
|
Outlet::<Route> {}
|
|
}
|
|
}
|
|
|
|
#[derive(Props, PartialEq, Debug, Clone)]
|
|
pub struct LoadingSpinnerProps {
|
|
#[props(default = true)]
|
|
loading: bool,
|
|
#[props(default = "正在处理中...")]
|
|
text: &'static str,
|
|
}
|
|
|
|
#[component]
|
|
pub fn LoadingSpinner(props: LoadingSpinnerProps) -> Element {
|
|
debug!("loading: {}", props.loading);
|
|
if !props.loading {
|
|
debug!("LoadingSpinner false loading: {}", props.loading);
|
|
return rsx! {};
|
|
}
|
|
rsx! {
|
|
div { class: "flex items-center justify-center z-10",
|
|
svg {
|
|
class: "animate-spin h-5 w-5 text-blue-500",
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
fill: "none",
|
|
view_box: "0 0 24 24",
|
|
circle {
|
|
class: "opacity-25",
|
|
cx: "12",
|
|
cy: "12",
|
|
r: "10",
|
|
stroke: "currentColor",
|
|
stroke_width: "4",
|
|
}
|
|
path {
|
|
class: "opacity-75",
|
|
fill: "currentColor",
|
|
d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z",
|
|
}
|
|
}
|
|
span { class: "ml-2 text-gray-600", "{props.text}" }
|
|
}
|
|
}
|
|
}
|