diff --git a/frontend/src/components/auth/login.rs b/frontend/src/components/auth/login.rs index b50cb6a..7316352 100644 --- a/frontend/src/components/auth/login.rs +++ b/frontend/src/components/auth/login.rs @@ -3,6 +3,8 @@ use leptos::task::spawn_local; use crate::components::ui::card::{Card, CardHeader, CardContent}; use crate::components::ui::input::{Input, InputType}; +use crate::components::ui::button::Button; + #[component] pub fn Login() -> impl IntoView { let username = RwSignal::new(String::new()); @@ -74,15 +76,16 @@ pub fn Login() -> impl IntoView {
- +
diff --git a/frontend/src/components/auth/setup.rs b/frontend/src/components/auth/setup.rs index 10ba0af..5e3b114 100644 --- a/frontend/src/components/auth/setup.rs +++ b/frontend/src/components/auth/setup.rs @@ -3,6 +3,8 @@ use leptos::task::spawn_local; use crate::components::ui::card::{Card, CardHeader, CardContent}; use crate::components::ui::input::{Input, InputType}; +use crate::components::ui::button::Button; + #[component] pub fn Setup() -> impl IntoView { let username = RwSignal::new(String::new()); @@ -98,15 +100,16 @@ pub fn Setup() -> impl IntoView {
- +
diff --git a/frontend/src/components/layout/sidebar.rs b/frontend/src/components/layout/sidebar.rs index a4ee0dc..cfde086 100644 --- a/frontend/src/components/layout/sidebar.rs +++ b/frontend/src/components/layout/sidebar.rs @@ -1,5 +1,6 @@ use leptos::prelude::*; use leptos::task::spawn_local; +use crate::components::ui::button::{Button, ButtonVariant, ButtonSize}; #[component] pub fn Sidebar() -> impl IntoView { @@ -137,8 +138,11 @@ pub fn Sidebar() -> impl IntoView { // Logout button - + @@ -166,13 +170,12 @@ fn SidebarButton( #[prop(into)] label: &'static str, count: Signal, ) -> impl IntoView { + let variant = move || if active.get() { ButtonVariant::Secondary } else { ButtonVariant::Ghost }; + view! { - + } } diff --git a/frontend/src/components/torrent/add_torrent.rs b/frontend/src/components/torrent/add_torrent.rs index 0b0d9fd..0d110af 100644 --- a/frontend/src/components/torrent/add_torrent.rs +++ b/frontend/src/components/torrent/add_torrent.rs @@ -4,6 +4,8 @@ use crate::components::ui::input::{Input, InputType}; use crate::store::TorrentStore; use crate::api; +use crate::components::ui::button::{Button, ButtonVariant}; + #[component] pub fn AddTorrentDialog( on_close: Callback<()>, @@ -80,17 +82,16 @@ pub fn AddTorrentDialog( })}
- - +
// Close button (X) - + } } \ No newline at end of file diff --git a/frontend/src/components/ui/button.rs b/frontend/src/components/ui/button.rs index 43f364d..02101be 100644 --- a/frontend/src/components/ui/button.rs +++ b/frontend/src/components/ui/button.rs @@ -1,9 +1,11 @@ use leptos::prelude::*; use leptos_ui::variants; +// TODO 💪 Loading state (demo_use_timeout_fn.rs and demo_button.rs) + variants! { Button { - base: "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive w-fit hover:cursor-pointer active:scale-[0.98] active:opacity-100 touch-manipulation [-webkit-tap-highlight-color:transparent] select-none [-webkit-touch-callout:none]", + base: "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive w-fit hover:cursor-pointer active:scale-[0.98] active:opacity-100 touch-manipulation [-webkit-tap-highlight-color:transparent] select-none [-webkit-touch-callout:none]", // Using hover:cursor-pointer as workaround for href_support. variants: { variant: { Default: "bg-primary text-primary-foreground shadow-xs hover:bg-primary/90", @@ -11,13 +13,21 @@ variants! { Outline: "border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/5", Secondary: "bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80", Ghost: "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50", + Accent: "bg-accent text-accent-foreground hover:bg-accent/80", Link: "text-primary underline-offset-4 hover:underline", + // + Warning: "bg-warning text-warning-foreground hover:bg-warning/90", + Success: "bg-success text-success-foreground hover:bg-success/90", + Bordered: "bg-transparent border border-zinc-200 text-muted-foreground", }, size: { Default: "h-9 px-4 py-2 has-[>svg]:px-3", Sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5", Lg: "h-10 rounded-md px-6 has-[>svg]:px-4", Icon: "size-9", + // + Mobile: "px-6 py-3 rounded-[24px]", + Badge: "px-2.5 py-0.5 text-xs" } }, component: { @@ -26,4 +36,4 @@ variants! { support_aria_current: true } } -} +} \ No newline at end of file