92bed208e0
ARCHITECTURE ============ Backend: FastAPI + uvicorn (port 8000) - JWT authentication with PAM system users - ZFS CLI wrapper with caching (30-60s TTL) - WebSocket pool status broadcaster (30s interval) - Services: auth, zfs_runner, file_manager, shares, identities, system_info - Routers: pools, datasets, snapshots, shares, identities, navigator, system Frontend: Next.js 15 + TypeScript (static export) - Incremental Static Regeneration (ISR) for weak hardware - Type-safe API client (lib/api.ts) - Dark mode + custom Tailwind theme - Pages: Dashboard, Login, Snapshots, Datasets, Shares, etc. DEPLOYMENT ========== Test Target: 192.168.1.179:8090 (Debian LXC) Production: 10.66.120.3:9090 (Raspberry Pi 4GB ARM64) Updater: Automated Gitea-based deployment (update-test.sh, update-pi.sh) FEATURES COMPLETED ================== Phase 3a: Dashboard Quick Stats (System, CPU, Memory, Storage) - Real-time stats with color-coded progress bars - Responsive grid layout (mobile: 1, tablet: 2, desktop: 4 columns) - ISR-optimized for fast loads on weak hardware REBRANDING ========== Renamed throughout: - Project: 'ZFS Manager' → 'ZMB Webui' - Services: 'zfs-manager' → 'zmb-webui' - Systemd units: zfs-manager-backend → zmb-webui-backend - Configuration files and documentation Co-Authored-By: Patrick <patrick@perlbach24.de>
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
import React from "react"
|
|
|
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
variant?: "default" | "secondary" | "destructive" | "outline" | "ghost"
|
|
size?: "default" | "sm" | "lg"
|
|
}
|
|
|
|
const variantStyles = {
|
|
default:
|
|
"bg-primary text-primary-foreground hover:bg-primary/90 active:bg-primary/80",
|
|
secondary:
|
|
"bg-secondary text-secondary-foreground hover:bg-secondary/80 active:bg-secondary/70",
|
|
destructive:
|
|
"bg-destructive text-destructive-foreground hover:bg-destructive/90 active:bg-destructive/80",
|
|
outline:
|
|
"border border-input bg-background hover:bg-accent hover:text-accent-foreground",
|
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
}
|
|
|
|
const sizeStyles = {
|
|
default: "h-10 px-4 py-2",
|
|
sm: "h-9 rounded-md px-3 text-sm",
|
|
lg: "h-11 rounded-md px-8",
|
|
}
|
|
|
|
export function Button({
|
|
className = "",
|
|
variant = "default",
|
|
size = "default",
|
|
...props
|
|
}: ButtonProps) {
|
|
const baseStyles =
|
|
"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50"
|
|
|
|
const variantStyle = variantStyles[variant]
|
|
const sizeStyle = sizeStyles[size]
|
|
|
|
return (
|
|
<button
|
|
className={`${baseStyles} ${variantStyle} ${sizeStyle} ${className}`}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|