mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-18 03:26:17 +00:00
Update AppImage
This commit is contained in:
251
AppImage/components/network-card.tsx
Normal file
251
AppImage/components/network-card.tsx
Normal file
@@ -0,0 +1,251 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { Card, CardContent } from "./ui/card"
|
||||||
|
import { Badge } from "./ui/badge"
|
||||||
|
import { Wifi, Zap } from "lucide-react"
|
||||||
|
import { useState, useEffect } from "react"
|
||||||
|
|
||||||
|
interface NetworkCardProps {
|
||||||
|
interface_: {
|
||||||
|
name: string
|
||||||
|
type: string
|
||||||
|
status: string
|
||||||
|
speed: number
|
||||||
|
duplex?: string
|
||||||
|
mtu?: number
|
||||||
|
mac_address: string | null
|
||||||
|
addresses: Array<{
|
||||||
|
ip: string
|
||||||
|
netmask: string
|
||||||
|
}>
|
||||||
|
bytes_sent?: number
|
||||||
|
bytes_recv?: number
|
||||||
|
bridge_physical_interface?: string
|
||||||
|
bridge_bond_slaves?: string[]
|
||||||
|
vmid?: number
|
||||||
|
vm_name?: string
|
||||||
|
vm_type?: string
|
||||||
|
}
|
||||||
|
timeframe: "hour" | "day" | "week" | "month" | "year"
|
||||||
|
onClick?: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
const getInterfaceTypeBadge = (type: string) => {
|
||||||
|
switch (type) {
|
||||||
|
case "physical":
|
||||||
|
return { color: "bg-blue-500/10 text-blue-500 border-blue-500/20", label: "Physical" }
|
||||||
|
case "bridge":
|
||||||
|
return { color: "bg-green-500/10 text-green-500 border-green-500/20", label: "Bridge" }
|
||||||
|
case "bond":
|
||||||
|
return { color: "bg-purple-500/10 text-purple-500 border-purple-500/20", label: "Bond" }
|
||||||
|
case "vlan":
|
||||||
|
return { color: "bg-cyan-500/10 text-cyan-500 border-cyan-500/20", label: "VLAN" }
|
||||||
|
case "vm_lxc":
|
||||||
|
return { color: "bg-orange-500/10 text-orange-500 border-orange-500/20", label: "Virtual" }
|
||||||
|
case "virtual":
|
||||||
|
return { color: "bg-orange-500/10 text-orange-500 border-orange-500/20", label: "Virtual" }
|
||||||
|
default:
|
||||||
|
return { color: "bg-gray-500/10 text-gray-500 border-gray-500/20", label: "Unknown" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const getVMTypeBadge = (vmType: string | undefined) => {
|
||||||
|
if (vmType === "lxc") {
|
||||||
|
return { color: "bg-cyan-500/10 text-cyan-500 border-cyan-500/20", label: "LXC" }
|
||||||
|
} else if (vmType === "vm") {
|
||||||
|
return { color: "bg-purple-500/10 text-purple-500 border-purple-500/20", label: "VM" }
|
||||||
|
}
|
||||||
|
return { color: "bg-gray-500/10 text-gray-500 border-gray-500/20", label: "Unknown" }
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatBytes = (bytes: number | undefined): string => {
|
||||||
|
if (!bytes || bytes === 0) return "0 B"
|
||||||
|
const k = 1024
|
||||||
|
const sizes = ["B", "KB", "MB", "GB", "TB"]
|
||||||
|
const i = Math.floor(Math.log(bytes) / Math.log(k))
|
||||||
|
return `${(bytes / Math.pow(k, i)).toFixed(2)} ${sizes[i]}`
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatSpeed = (speed: number): string => {
|
||||||
|
if (speed === 0) return "N/A"
|
||||||
|
if (speed >= 1000) return `${(speed / 1000).toFixed(1)} Gbps`
|
||||||
|
return `${speed} Mbps`
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatStorage = (bytes: number): string => {
|
||||||
|
if (bytes === 0) return "0 B"
|
||||||
|
const k = 1024
|
||||||
|
const sizes = ["B", "KB", "MB", "GB", "TB", "PB"]
|
||||||
|
const i = Math.floor(Math.log(bytes) / Math.log(k))
|
||||||
|
const value = bytes / Math.pow(k, i)
|
||||||
|
const decimals = value >= 10 ? 1 : 2
|
||||||
|
return `${value.toFixed(decimals)} ${sizes[i]}`
|
||||||
|
}
|
||||||
|
|
||||||
|
export function NetworkCard({ interface_, timeframe, onClick }: NetworkCardProps) {
|
||||||
|
const typeBadge = getInterfaceTypeBadge(interface_.type)
|
||||||
|
const vmTypeBadge = interface_.vm_type ? getVMTypeBadge(interface_.vm_type) : null
|
||||||
|
|
||||||
|
const [trafficData, setTrafficData] = useState<{ received: number; sent: number }>({
|
||||||
|
received: 0,
|
||||||
|
sent: 0,
|
||||||
|
})
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchTrafficData = async () => {
|
||||||
|
try {
|
||||||
|
const response = await fetch(`/api/network/${interface_.name}/metrics?timeframe=${timeframe}`, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
signal: AbortSignal.timeout(5000),
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to fetch traffic data: ${response.status}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json()
|
||||||
|
|
||||||
|
// Calculate totals from the data points
|
||||||
|
if (data.data && data.data.length > 0) {
|
||||||
|
const lastPoint = data.data[data.data.length - 1]
|
||||||
|
const firstPoint = data.data[0]
|
||||||
|
|
||||||
|
// Calculate the difference between last and first data points
|
||||||
|
const receivedGB = Math.max(0, (lastPoint.netin || 0) - (firstPoint.netin || 0))
|
||||||
|
const sentGB = Math.max(0, (lastPoint.netout || 0) - (firstPoint.netout || 0))
|
||||||
|
|
||||||
|
setTrafficData({
|
||||||
|
received: receivedGB,
|
||||||
|
sent: sentGB,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("[v0] Failed to fetch traffic data for card:", error)
|
||||||
|
// Keep showing 0 values on error
|
||||||
|
setTrafficData({ received: 0, sent: 0 })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only fetch if interface is up and not a VM
|
||||||
|
if (interface_.status.toLowerCase() === "up" && interface_.vm_type !== "vm") {
|
||||||
|
fetchTrafficData()
|
||||||
|
|
||||||
|
// Refresh every 60 seconds
|
||||||
|
const interval = setInterval(fetchTrafficData, 60000)
|
||||||
|
return () => clearInterval(interval)
|
||||||
|
}
|
||||||
|
}, [interface_.name, interface_.status, interface_.vm_type, timeframe])
|
||||||
|
|
||||||
|
const getTimeframeLabel = () => {
|
||||||
|
switch (timeframe) {
|
||||||
|
case "hour":
|
||||||
|
return "Last Hour"
|
||||||
|
case "day":
|
||||||
|
return "Last 24 Hours"
|
||||||
|
case "week":
|
||||||
|
return "Last 7 Days"
|
||||||
|
case "month":
|
||||||
|
return "Last 30 Days"
|
||||||
|
case "year":
|
||||||
|
return "Last Year"
|
||||||
|
default:
|
||||||
|
return "Last 24 Hours"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card className="bg-card border-border hover:bg-white/5 transition-colors cursor-pointer" onClick={onClick}>
|
||||||
|
<CardContent className="p-4">
|
||||||
|
<div className="flex flex-col gap-3">
|
||||||
|
{/* First row: Icon, Name, Type Badge, Status */}
|
||||||
|
<div className="flex items-center gap-3 flex-wrap">
|
||||||
|
<Wifi className="h-5 w-5 text-muted-foreground flex-shrink-0" />
|
||||||
|
<div className="flex items-center gap-2 min-w-0 flex-1 flex-wrap">
|
||||||
|
<div className="font-medium text-foreground">{interface_.name}</div>
|
||||||
|
{vmTypeBadge ? (
|
||||||
|
<Badge variant="outline" className={vmTypeBadge.color}>
|
||||||
|
{vmTypeBadge.label}
|
||||||
|
</Badge>
|
||||||
|
) : (
|
||||||
|
<Badge variant="outline" className={typeBadge.color}>
|
||||||
|
{typeBadge.label}
|
||||||
|
</Badge>
|
||||||
|
)}
|
||||||
|
{interface_.vm_name && (
|
||||||
|
<div className="text-sm text-muted-foreground truncate">→ {interface_.vm_name}</div>
|
||||||
|
)}
|
||||||
|
{interface_.type === "bridge" && interface_.bridge_physical_interface && (
|
||||||
|
<div className="text-sm text-blue-500 font-medium flex items-center gap-1 flex-wrap break-all">
|
||||||
|
→ {interface_.bridge_physical_interface}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<Badge
|
||||||
|
variant="outline"
|
||||||
|
className={
|
||||||
|
interface_.status === "up"
|
||||||
|
? "bg-green-500/10 text-green-500 border-green-500/20"
|
||||||
|
: "bg-red-500/10 text-red-500 border-red-500/20"
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{interface_.status.toUpperCase()}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Second row: Details - Responsive layout */}
|
||||||
|
<div className="grid grid-cols-2 md:grid-cols-4 gap-4 text-sm">
|
||||||
|
<div>
|
||||||
|
<div className="text-muted-foreground text-xs">
|
||||||
|
{interface_.type === "vm_lxc" ? "VMID" : "IP Address"}
|
||||||
|
</div>
|
||||||
|
<div className="font-medium text-foreground font-mono text-sm truncate">
|
||||||
|
{interface_.type === "vm_lxc"
|
||||||
|
? (interface_.vmid ?? "N/A")
|
||||||
|
: interface_.addresses.length > 0
|
||||||
|
? interface_.addresses[0].ip
|
||||||
|
: "N/A"}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div className="text-muted-foreground text-xs">Speed</div>
|
||||||
|
<div className="font-medium text-foreground flex items-center gap-1 text-xs">
|
||||||
|
<Zap className="h-3 w-3" />
|
||||||
|
{formatSpeed(interface_.speed)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="col-span-2 md:col-span-1">
|
||||||
|
<div className="text-muted-foreground text-xs">{getTimeframeLabel()}</div>
|
||||||
|
<div className="font-medium text-foreground text-xs">
|
||||||
|
{interface_.status.toLowerCase() === "up" && interface_.vm_type !== "vm" ? (
|
||||||
|
<>
|
||||||
|
<span className="text-green-500">↓ {formatStorage(trafficData.received * 1024 * 1024 * 1024)}</span>
|
||||||
|
{" / "}
|
||||||
|
<span className="text-blue-500">↑ {formatStorage(trafficData.sent * 1024 * 1024 * 1024)}</span>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<span className="text-green-500">↓ {formatBytes(interface_.bytes_recv)}</span>
|
||||||
|
{" / "}
|
||||||
|
<span className="text-blue-500">↑ {formatBytes(interface_.bytes_sent)}</span>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{interface_.mac_address && (
|
||||||
|
<div className="col-span-2 md:col-span-1">
|
||||||
|
<div className="text-muted-foreground text-xs">MAC</div>
|
||||||
|
<div className="font-medium text-foreground font-mono text-xs truncate">{interface_.mac_address}</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -892,6 +892,37 @@ export function NetworkMetrics() {
|
|||||||
refreshInterval={60000}
|
refreshInterval={60000}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-2 gap-4 pt-4 border-t border-border">
|
||||||
|
<div>
|
||||||
|
<div className="text-sm text-muted-foreground">Packets Received</div>
|
||||||
|
<div className="font-medium">
|
||||||
|
{displayInterface.packets_recv?.toLocaleString() || "N/A"}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="text-sm text-muted-foreground">Packets Sent</div>
|
||||||
|
<div className="font-medium">
|
||||||
|
{displayInterface.packets_sent?.toLocaleString() || "N/A"}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="text-sm text-muted-foreground">Errors In</div>
|
||||||
|
<div className="font-medium text-red-500">{displayInterface.errors_in || 0}</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="text-sm text-muted-foreground">Errors Out</div>
|
||||||
|
<div className="font-medium text-red-500">{displayInterface.errors_out || 0}</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="text-sm text-muted-foreground">Drops In</div>
|
||||||
|
<div className="font-medium text-yellow-500">{displayInterface.drops_in || 0}</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="text-sm text-muted-foreground">Drops Out</div>
|
||||||
|
<div className="font-medium text-yellow-500">{displayInterface.drops_out || 0}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : displayInterface.status.toLowerCase() === "up" && displayInterface.vm_type === "vm" ? (
|
) : displayInterface.status.toLowerCase() === "up" && displayInterface.vm_type === "vm" ? (
|
||||||
@@ -938,26 +969,6 @@ export function NetworkMetrics() {
|
|||||||
<div className="text-sm text-muted-foreground">Drops Out</div>
|
<div className="text-sm text-muted-foreground">Drops Out</div>
|
||||||
<div className="font-medium text-yellow-500">{displayInterface.drops_out || 0}</div>
|
<div className="font-medium text-yellow-500">{displayInterface.drops_out || 0}</div>
|
||||||
</div>
|
</div>
|
||||||
{displayInterface.packet_loss_in !== undefined && (
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Packet Loss In</div>
|
|
||||||
<div
|
|
||||||
className={`font-medium ${displayInterface.packet_loss_in > 1 ? "text-red-500" : "text-green-500"}`}
|
|
||||||
>
|
|
||||||
{displayInterface.packet_loss_in}%
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{displayInterface.packet_loss_out !== undefined && (
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Packet Loss Out</div>
|
|
||||||
<div
|
|
||||||
className={`font-medium ${displayInterface.packet_loss_out > 1 ? "text-red-500" : "text-green-500"}`}
|
|
||||||
>
|
|
||||||
{displayInterface.packet_loss_out}%
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
@@ -970,77 +981,6 @@ export function NetworkMetrics() {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Cumulative Statistics - Only show if interface is UP and NOT a VM interface */}
|
|
||||||
{displayInterface.status.toLowerCase() === "up" && displayInterface.vm_type !== "vm" && (
|
|
||||||
<div>
|
|
||||||
<h3 className="text-sm font-semibold text-muted-foreground mb-4">
|
|
||||||
Cumulative Statistics (Since Last Boot)
|
|
||||||
</h3>
|
|
||||||
<div className="grid grid-cols-2 gap-4">
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Bytes Received</div>
|
|
||||||
<div className="font-medium text-green-500 text-lg">
|
|
||||||
{formatBytes(displayInterface.bytes_recv)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Bytes Sent</div>
|
|
||||||
<div className="font-medium text-blue-500 text-lg">
|
|
||||||
{formatBytes(displayInterface.bytes_sent)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Packets Received</div>
|
|
||||||
<div className="font-medium">
|
|
||||||
{displayInterface.packets_recv?.toLocaleString() || "N/A"}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Packets Sent</div>
|
|
||||||
<div className="font-medium">
|
|
||||||
{displayInterface.packets_sent?.toLocaleString() || "N/A"}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Errors In</div>
|
|
||||||
<div className="font-medium text-red-500">{displayInterface.errors_in || 0}</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Errors Out</div>
|
|
||||||
<div className="font-medium text-red-500">{displayInterface.errors_out || 0}</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Drops In</div>
|
|
||||||
<div className="font-medium text-yellow-500">{displayInterface.drops_in || 0}</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Drops Out</div>
|
|
||||||
<div className="font-medium text-yellow-500">{displayInterface.drops_out || 0}</div>
|
|
||||||
</div>
|
|
||||||
{displayInterface.packet_loss_in !== undefined && (
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Packet Loss In</div>
|
|
||||||
<div
|
|
||||||
className={`font-medium ${displayInterface.packet_loss_in > 1 ? "text-red-500" : "text-green-500"}`}
|
|
||||||
>
|
|
||||||
{displayInterface.packet_loss_in}%
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{displayInterface.packet_loss_out !== undefined && (
|
|
||||||
<div>
|
|
||||||
<div className="text-sm text-muted-foreground">Packet Loss Out</div>
|
|
||||||
<div
|
|
||||||
className={`font-medium ${displayInterface.packet_loss_out > 1 ? "text-red-500" : "text-green-500"}`}
|
|
||||||
>
|
|
||||||
{displayInterface.packet_loss_out}%
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* Bond Information */}
|
{/* Bond Information */}
|
||||||
{displayInterface.type === "bond" && displayInterface.bond_slaves && (
|
{displayInterface.type === "bond" && displayInterface.bond_slaves && (
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Reference in New Issue
Block a user