update storage-overview.tsx

This commit is contained in:
MacRimi
2026-04-12 22:50:30 +02:00
parent 710f77764b
commit f14a0393b7
2 changed files with 130 additions and 29 deletions

View File

@@ -2,7 +2,7 @@
import { useEffect, useState } from "react"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { HardDrive, Database, AlertTriangle, CheckCircle2, XCircle, Square, Thermometer, Archive, Info, Clock, Usb, Server, Activity, FileText, Play, Loader2 } from "lucide-react"
import { HardDrive, Database, AlertTriangle, CheckCircle2, XCircle, Square, Thermometer, Archive, Info, Clock, Usb, Server, Activity, FileText, Play, Loader2, Download } from "lucide-react"
import { Badge } from "@/components/ui/badge"
import { Progress } from "@/components/ui/progress"
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from "@/components/ui/dialog"
@@ -1869,6 +1869,10 @@ interface SmartTestStatus {
status: 'ok' | 'warning' | 'critical'
}>
}
tools_installed?: {
smartctl: boolean
nvme: boolean
}
}
function SmartTestTab({ disk }: SmartTestTabProps) {
@@ -1897,6 +1901,35 @@ function SmartTestTab({ disk }: SmartTestTabProps) {
}
const [testError, setTestError] = useState<string | null>(null)
const [installing, setInstalling] = useState(false)
// Check if required tools are installed for this disk type
const isNvme = disk.name.startsWith('nvme')
const toolsAvailable = testStatus.tools_installed
? (isNvme ? testStatus.tools_installed.nvme : testStatus.tools_installed.smartctl)
: true // Assume true until we get the status
const installSmartTools = async () => {
try {
setInstalling(true)
setTestError(null)
const res = await fetch('/api/storage/smart/tools/install', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ install_all: true })
})
const data = await res.json()
if (data.success) {
fetchSmartStatus()
} else {
setTestError(data.error || 'Installation failed. Try manually: apt-get install smartmontools nvme-cli')
}
} catch {
setTestError('Failed to install tools. Try manually: apt-get install smartmontools nvme-cli')
} finally {
setInstalling(false)
}
}
const runSmartTest = async (testType: 'short' | 'long') => {
try {
@@ -1944,6 +1977,50 @@ function SmartTestTab({ disk }: SmartTestTabProps) {
)
}
// If tools not available, show install button only
if (!toolsAvailable && !loading) {
return (
<div className="space-y-6">
<div className="space-y-4">
<div className="flex items-start gap-3 p-4 rounded-lg bg-amber-500/10 border border-amber-500/20">
<AlertTriangle className="h-5 w-5 text-amber-500 mt-0.5 flex-shrink-0" />
<div className="flex-1">
<p className="font-medium text-amber-500">SMART Tools Not Installed</p>
<p className="text-sm text-muted-foreground mt-1">
{isNvme
? 'nvme-cli is required to run SMART tests on NVMe disks.'
: 'smartmontools is required to run SMART tests on this disk.'}
</p>
</div>
</div>
<Button
onClick={installSmartTools}
disabled={installing}
className="w-full gap-2 bg-[#4A9BA8] hover:bg-[#3d8591] text-white border-0"
>
{installing ? (
<Loader2 className="h-4 w-4 animate-spin" />
) : (
<Download className="h-4 w-4" />
)}
{installing ? 'Installing SMART Tools...' : 'Install SMART Tools'}
</Button>
{testError && (
<div className="flex items-start gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400">
<AlertTriangle className="h-4 w-4 mt-0.5 flex-shrink-0" />
<div>
<p className="text-sm font-medium">Installation Failed</p>
<p className="text-xs opacity-80">{testError}</p>
</div>
</div>
)}
</div>
</div>
)
}
return (
<div className="space-y-6">
{/* Quick Actions */}
@@ -2001,28 +2078,12 @@ function SmartTestTab({ disk }: SmartTestTabProps) {
{testError && (
<div className="flex items-start gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400">
<AlertTriangle className="h-4 w-4 mt-0.5 flex-shrink-0" />
<div>
<div className="flex-1">
<p className="text-sm font-medium">Failed to start test</p>
<p className="text-xs opacity-80">{testError}</p>
</div>
</div>
)}
{/* Tools not installed warning */}
{testStatus.tools_installed && (!testStatus.tools_installed.smartctl || !testStatus.tools_installed.nvme) && (
<div className="flex items-start gap-2 p-3 rounded-lg bg-amber-500/10 border border-amber-500/20 text-amber-400">
<AlertTriangle className="h-4 w-4 mt-0.5 flex-shrink-0" />
<div>
<p className="text-sm font-medium">SMART tools not fully installed</p>
<p className="text-xs opacity-80">
{!testStatus.tools_installed.smartctl && 'smartmontools (for SATA/SAS) '}
{!testStatus.tools_installed.smartctl && !testStatus.tools_installed.nvme && 'and '}
{!testStatus.tools_installed.nvme && 'nvme-cli (for NVMe) '}
not found. Click a test button to auto-install.
</p>
</div>
</div>
)}
</div>
{/* Test Progress */}

View File

@@ -6368,8 +6368,18 @@ def _ensure_smart_tools(install_if_missing=False):
has_nvme = shutil.which('nvme') is not None
installed = {'smartctl': False, 'nvme': False}
install_errors = []
if install_if_missing:
if install_if_missing and (not has_smartctl or not has_nvme):
# Run apt-get update first
try:
subprocess.run(
['apt-get', 'update'],
capture_output=True, text=True, timeout=60
)
except Exception:
pass
if not has_smartctl:
try:
# Install smartmontools
@@ -6380,8 +6390,10 @@ def _ensure_smart_tools(install_if_missing=False):
if proc.returncode == 0:
has_smartctl = shutil.which('smartctl') is not None
installed['smartctl'] = has_smartctl
except Exception:
pass
else:
install_errors.append(f"smartmontools: {proc.stderr.strip()}")
except Exception as e:
install_errors.append(f"smartmontools: {str(e)}")
if not has_nvme:
try:
@@ -6393,13 +6405,16 @@ def _ensure_smart_tools(install_if_missing=False):
if proc.returncode == 0:
has_nvme = shutil.which('nvme') is not None
installed['nvme'] = has_nvme
except Exception:
pass
else:
install_errors.append(f"nvme-cli: {proc.stderr.strip()}")
except Exception as e:
install_errors.append(f"nvme-cli: {str(e)}")
return {
'smartctl': has_smartctl,
'nvme': has_nvme,
'just_installed': installed
'just_installed': installed,
'install_errors': install_errors
}
def _parse_smart_attributes(output_lines):
@@ -6697,25 +6712,50 @@ def api_smart_tools_install():
"""Install SMART tools (smartmontools and nvme-cli)."""
try:
data = request.get_json() or {}
packages = data.get('packages', ['smartmontools', 'nvme-cli'])
install_all = data.get('install_all', False)
packages = data.get('packages', ['smartmontools', 'nvme-cli'] if install_all else [])
if not packages and install_all:
packages = ['smartmontools', 'nvme-cli']
if not packages:
return jsonify({'error': 'No packages specified'}), 400
# Run apt-get update first
update_proc = subprocess.run(
['apt-get', 'update'],
capture_output=True, text=True, timeout=60
)
results = {}
all_success = True
for pkg in packages:
if pkg not in ('smartmontools', 'nvme-cli'):
results[pkg] = {'success': False, 'error': 'Invalid package name'}
all_success = False
continue
# Update apt cache and install
# Install package
proc = subprocess.run(
['apt-get', 'install', '-y', pkg],
capture_output=True, text=True, timeout=120
)
success = proc.returncode == 0
results[pkg] = {
'success': proc.returncode == 0,
'output': proc.stdout if proc.returncode == 0 else proc.stderr
'success': success,
'output': proc.stdout if success else proc.stderr
}
if not success:
all_success = False
return jsonify(results)
# Check what's now installed
tools = _ensure_smart_tools()
return jsonify({
'success': all_success,
'results': results,
'tools': tools
})
except subprocess.TimeoutExpired:
return jsonify({'error': 'Installation timeout'}), 504
except Exception as e: