ZMB Webui: Complete Project – Rebrand & Initial Clean Commit

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>
This commit is contained in:
Claude Code
2026-04-22 00:26:23 +02:00
committed by Patrick
commit 92bed208e0
108 changed files with 29925 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
interface BadgeProps extends React.HTMLAttributes<HTMLDivElement> {
variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning"
}
const variantStyles = {
default: "border-transparent bg-primary text-primary-foreground",
secondary: "border-transparent bg-secondary text-secondary-foreground",
destructive: "border-transparent bg-destructive text-destructive-foreground",
outline: "text-foreground",
success: "border-transparent bg-green-100 text-green-800",
warning: "border-transparent bg-yellow-100 text-yellow-800",
}
export function Badge({
className = "",
variant = "default",
...props
}: BadgeProps) {
const baseStyles =
"inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
const variantStyle = variantStyles[variant]
return (
<div className={`${baseStyles} ${variantStyle} ${className}`} {...props} />
)
}
+44
View File
@@ -0,0 +1,44 @@
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}
/>
)
}
+68
View File
@@ -0,0 +1,68 @@
export function Card({
className = "",
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={`rounded-lg border border-border bg-card text-card-foreground shadow-sm ${className}`}
{...props}
/>
)
}
export function CardHeader({
className = "",
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={`flex flex-col space-y-1.5 p-6 ${className}`}
{...props}
/>
)
}
export function CardTitle({
className = "",
...props
}: React.HTMLAttributes<HTMLHeadingElement>) {
return (
<h2
className={`text-2xl font-semibold leading-none tracking-tight ${className}`}
{...props}
/>
)
}
export function CardDescription({
className = "",
...props
}: React.HTMLAttributes<HTMLParagraphElement>) {
return (
<p
className={`text-sm text-muted-foreground ${className}`}
{...props}
/>
)
}
export function CardContent({
className = "",
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div className={`p-6 pt-0 ${className}`} {...props} />
)
}
export function CardFooter({
className = "",
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={`flex items-center p-6 pt-0 ${className}`}
{...props}
/>
)
}
+53
View File
@@ -0,0 +1,53 @@
"use client"
import { useEffect } from "react"
interface DialogProps {
open: boolean
onClose: () => void
title: string
children: React.ReactNode
}
export function Dialog({ open, onClose, title, children }: DialogProps) {
// Close on Escape key
useEffect(() => {
if (!open) return
const handler = (e: KeyboardEvent) => { if (e.key === "Escape") onClose() }
document.addEventListener("keydown", handler)
return () => document.removeEventListener("keydown", handler)
}, [open, onClose])
if (!open) return null
return (
<div
className="fixed inset-0 z-50 flex items-center justify-center"
onClick={onClose}
>
{/* Backdrop */}
<div className="absolute inset-0 bg-black/60" />
{/* Panel */}
<div
className="relative z-10 w-full max-w-md mx-4 rounded-lg border border-border bg-background shadow-xl"
onClick={(e) => e.stopPropagation()}
>
{/* Header */}
<div className="flex items-center justify-between px-6 py-4 border-b border-border">
<h2 className="text-lg font-semibold">{title}</h2>
<button
onClick={onClose}
className="text-muted-foreground hover:text-foreground transition-colors text-xl leading-none"
aria-label="Close"
>
×
</button>
</div>
{/* Body */}
<div className="px-6 py-4">{children}</div>
</div>
</div>
)
}
+46
View File
@@ -0,0 +1,46 @@
interface ProgressProps extends React.HTMLAttributes<HTMLDivElement> {
value: number
max?: number
color?: "default" | "success" | "warning" | "danger"
}
const colorStyles = {
default: "bg-primary",
success: "bg-green-600",
warning: "bg-yellow-600",
danger: "bg-red-600",
}
export function Progress({
value,
max = 100,
color = "default",
className = "",
...props
}: ProgressProps) {
const percentage = Math.min((value / max) * 100, 100)
let colorClass = colorStyles[color]
// Auto-select color based on percentage
if (color === "default") {
if (percentage >= 90) {
colorClass = colorStyles.danger
} else if (percentage >= 75) {
colorClass = colorStyles.warning
} else {
colorClass = colorStyles.success
}
}
return (
<div
className={`relative w-full h-2 rounded-full bg-secondary overflow-hidden ${className}`}
{...props}
>
<div
className={`h-full ${colorClass} transition-all`}
style={{ width: `${percentage}%` }}
/>
</div>
)
}