mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
893 lines
27 KiB
TypeScript
893 lines
27 KiB
TypeScript
"use client"
|
|
|
|
import {
|
|
MAX_HISTORY_LENGTH,
|
|
type ServerDataWithTimestamp,
|
|
useServerData,
|
|
} from "@/app/context/server-data-context"
|
|
import type { NezhaAPISafe } from "@/app/types/nezha-api"
|
|
import { ServerDetailChartLoading } from "@/components/loading/ServerDetailLoading"
|
|
import AnimatedCircularProgressBar from "@/components/ui/animated-circular-progress-bar"
|
|
import { Card, CardContent } from "@/components/ui/card"
|
|
import { type ChartConfig, ChartContainer } from "@/components/ui/chart"
|
|
import { formatBytes, formatNezhaInfo, formatRelativeTime } from "@/lib/utils"
|
|
import { useTranslations } from "next-intl"
|
|
import { useEffect, useRef, useState } from "react"
|
|
import { Area, AreaChart, CartesianGrid, Line, LineChart, XAxis, YAxis } from "recharts"
|
|
|
|
type cpuChartData = {
|
|
timeStamp: string
|
|
cpu: number
|
|
}
|
|
|
|
type processChartData = {
|
|
timeStamp: string
|
|
process: number
|
|
}
|
|
|
|
type diskChartData = {
|
|
timeStamp: string
|
|
disk: number
|
|
}
|
|
|
|
type memChartData = {
|
|
timeStamp: string
|
|
mem: number
|
|
swap: number
|
|
}
|
|
|
|
type networkChartData = {
|
|
timeStamp: string
|
|
upload: number
|
|
download: number
|
|
}
|
|
|
|
type connectChartData = {
|
|
timeStamp: string
|
|
tcp: number
|
|
udp: number
|
|
}
|
|
|
|
export default function ServerDetailChartClient({
|
|
server_id,
|
|
}: {
|
|
server_id: number
|
|
show: boolean
|
|
}) {
|
|
const t = useTranslations("ServerDetailChartClient")
|
|
|
|
const { data: serverList, error, history } = useServerData()
|
|
|
|
const data = serverList?.result?.find((item) => item.id === server_id)
|
|
|
|
if (error) {
|
|
return (
|
|
<>
|
|
<div className="flex flex-col items-center justify-center">
|
|
<p className="font-medium text-sm opacity-40">{error.message}</p>
|
|
<p className="font-medium text-sm opacity-40">{t("chart_fetch_error_message")}</p>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
if (!data) return <ServerDetailChartLoading />
|
|
|
|
return (
|
|
<section className="grid grid-cols-1 gap-3 md:grid-cols-2 lg:grid-cols-3">
|
|
<CpuChart data={data} history={history} />
|
|
<ProcessChart data={data} history={history} />
|
|
<DiskChart data={data} history={history} />
|
|
<MemChart data={data} history={history} />
|
|
<NetworkChart data={data} history={history} />
|
|
<ConnectChart data={data} history={history} />
|
|
</section>
|
|
)
|
|
}
|
|
|
|
function CpuChart({
|
|
history,
|
|
data,
|
|
}: {
|
|
history: ServerDataWithTimestamp[]
|
|
data: NezhaAPISafe
|
|
}) {
|
|
const [cpuChartData, setCpuChartData] = useState([] as cpuChartData[])
|
|
const hasInitialized = useRef(false)
|
|
const [historyLoaded, setHistoryLoaded] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!hasInitialized.current && history.length > 0) {
|
|
const historyData = history
|
|
.map((msg) => {
|
|
const server = msg.data?.result?.find((item) => item.id === data.id)
|
|
if (!server) return null
|
|
const { cpu } = formatNezhaInfo(server)
|
|
return {
|
|
timeStamp: msg.timestamp.toString(),
|
|
cpu: cpu,
|
|
}
|
|
})
|
|
.filter((item): item is cpuChartData => item !== null)
|
|
.reverse() // 保持时间顺序
|
|
|
|
setCpuChartData(historyData)
|
|
hasInitialized.current = true
|
|
setHistoryLoaded(true)
|
|
} else if (history.length === 0) {
|
|
setHistoryLoaded(true)
|
|
}
|
|
}, [])
|
|
|
|
const { cpu } = formatNezhaInfo(data)
|
|
|
|
useEffect(() => {
|
|
if (data && historyLoaded) {
|
|
const timestamp = Date.now().toString()
|
|
let newData = [] as cpuChartData[]
|
|
if (cpuChartData.length === 0) {
|
|
newData = [
|
|
{ timeStamp: timestamp, cpu: cpu },
|
|
{ timeStamp: timestamp, cpu: cpu },
|
|
]
|
|
} else {
|
|
newData = [...cpuChartData, { timeStamp: timestamp, cpu: cpu }]
|
|
}
|
|
if (newData.length > MAX_HISTORY_LENGTH) {
|
|
newData.shift()
|
|
}
|
|
setCpuChartData(newData)
|
|
}
|
|
}, [data, historyLoaded])
|
|
|
|
const chartConfig = {
|
|
cpu: {
|
|
label: "CPU",
|
|
},
|
|
} satisfies ChartConfig
|
|
|
|
return (
|
|
<Card>
|
|
<CardContent className="px-6 py-3">
|
|
<section className="flex flex-col gap-1">
|
|
<div className="flex items-center justify-between">
|
|
<p className="font-medium text-md">CPU</p>
|
|
<section className="flex items-center gap-2">
|
|
<p className="w-10 text-end font-medium text-xs">{cpu.toFixed(0)}%</p>
|
|
<AnimatedCircularProgressBar
|
|
className="size-3 text-[0px]"
|
|
max={100}
|
|
min={0}
|
|
value={cpu}
|
|
primaryColor="hsl(var(--chart-1))"
|
|
/>
|
|
</section>
|
|
</div>
|
|
<ChartContainer config={chartConfig} className="aspect-auto h-[130px] w-full">
|
|
<AreaChart
|
|
accessibilityLayer
|
|
data={cpuChartData}
|
|
margin={{
|
|
top: 12,
|
|
left: 12,
|
|
right: 12,
|
|
}}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<XAxis
|
|
dataKey="timeStamp"
|
|
tickLine={false}
|
|
axisLine={false}
|
|
tickMargin={8}
|
|
minTickGap={200}
|
|
interval="preserveStartEnd"
|
|
tickFormatter={(value) => formatRelativeTime(value)}
|
|
/>
|
|
<YAxis
|
|
tickLine={false}
|
|
axisLine={false}
|
|
mirror={true}
|
|
tickMargin={-15}
|
|
domain={[0, 100]}
|
|
tickFormatter={(value) => `${value}%`}
|
|
/>
|
|
<Area
|
|
isAnimationActive={false}
|
|
dataKey="cpu"
|
|
type="step"
|
|
fill="hsl(var(--chart-1))"
|
|
fillOpacity={0.3}
|
|
stroke="hsl(var(--chart-1))"
|
|
/>
|
|
</AreaChart>
|
|
</ChartContainer>
|
|
</section>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
function ProcessChart({
|
|
data,
|
|
history,
|
|
}: {
|
|
data: NezhaAPISafe
|
|
history: ServerDataWithTimestamp[]
|
|
}) {
|
|
const t = useTranslations("ServerDetailChartClient")
|
|
const [processChartData, setProcessChartData] = useState([] as processChartData[])
|
|
const hasInitialized = useRef(false)
|
|
const [historyLoaded, setHistoryLoaded] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!hasInitialized.current && history.length > 0) {
|
|
const historyData = history
|
|
.map((msg) => {
|
|
const server = msg.data?.result?.find((item) => item.id === data.id)
|
|
if (!server) return null
|
|
const { process } = formatNezhaInfo(server)
|
|
return {
|
|
timeStamp: msg.timestamp.toString(),
|
|
process: process,
|
|
}
|
|
})
|
|
.filter((item): item is processChartData => item !== null)
|
|
.reverse()
|
|
|
|
setProcessChartData(historyData)
|
|
hasInitialized.current = true
|
|
setHistoryLoaded(true)
|
|
} else if (history.length === 0) {
|
|
setHistoryLoaded(true)
|
|
}
|
|
}, [])
|
|
|
|
const { process } = formatNezhaInfo(data)
|
|
|
|
useEffect(() => {
|
|
if (data && historyLoaded) {
|
|
const timestamp = Date.now().toString()
|
|
let newData = [] as processChartData[]
|
|
if (processChartData.length === 0) {
|
|
newData = [
|
|
{ timeStamp: timestamp, process: process },
|
|
{ timeStamp: timestamp, process: process },
|
|
]
|
|
} else {
|
|
newData = [...processChartData, { timeStamp: timestamp, process: process }]
|
|
}
|
|
if (newData.length > MAX_HISTORY_LENGTH) {
|
|
newData.shift()
|
|
}
|
|
setProcessChartData(newData)
|
|
}
|
|
}, [data, historyLoaded])
|
|
|
|
const chartConfig = {
|
|
process: {
|
|
label: "Process",
|
|
},
|
|
} satisfies ChartConfig
|
|
|
|
return (
|
|
<Card>
|
|
<CardContent className="px-6 py-3">
|
|
<section className="flex flex-col gap-1">
|
|
<div className="flex items-center justify-between">
|
|
<p className="font-medium text-md">{t("Process")}</p>
|
|
<section className="flex items-center gap-2">
|
|
<p className="w-10 text-end font-medium text-xs">{process}</p>
|
|
</section>
|
|
</div>
|
|
<ChartContainer config={chartConfig} className="aspect-auto h-[130px] w-full">
|
|
<AreaChart
|
|
accessibilityLayer
|
|
data={processChartData}
|
|
margin={{
|
|
top: 12,
|
|
left: 12,
|
|
right: 12,
|
|
}}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<XAxis
|
|
dataKey="timeStamp"
|
|
tickLine={false}
|
|
axisLine={false}
|
|
tickMargin={8}
|
|
minTickGap={200}
|
|
interval="preserveStartEnd"
|
|
tickFormatter={(value) => formatRelativeTime(value)}
|
|
/>
|
|
<YAxis tickLine={false} axisLine={false} mirror={true} tickMargin={-15} />
|
|
<Area
|
|
isAnimationActive={false}
|
|
dataKey="process"
|
|
type="step"
|
|
fill="hsl(var(--chart-2))"
|
|
fillOpacity={0.3}
|
|
stroke="hsl(var(--chart-2))"
|
|
/>
|
|
</AreaChart>
|
|
</ChartContainer>
|
|
</section>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
function MemChart({
|
|
data,
|
|
history,
|
|
}: {
|
|
data: NezhaAPISafe
|
|
history: ServerDataWithTimestamp[]
|
|
}) {
|
|
const t = useTranslations("ServerDetailChartClient")
|
|
const [memChartData, setMemChartData] = useState([] as memChartData[])
|
|
const hasInitialized = useRef(false)
|
|
const [historyLoaded, setHistoryLoaded] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!hasInitialized.current && history.length > 0) {
|
|
const historyData = history
|
|
.map((msg) => {
|
|
const server = msg.data?.result?.find((item) => item.id === data.id)
|
|
if (!server) return null
|
|
const { mem, swap } = formatNezhaInfo(server)
|
|
return {
|
|
timeStamp: msg.timestamp.toString(),
|
|
mem: mem,
|
|
swap: swap,
|
|
}
|
|
})
|
|
.filter((item): item is memChartData => item !== null)
|
|
.reverse()
|
|
|
|
setMemChartData(historyData)
|
|
hasInitialized.current = true
|
|
setHistoryLoaded(true)
|
|
} else if (history.length === 0) {
|
|
setHistoryLoaded(true)
|
|
}
|
|
}, [])
|
|
|
|
const { mem, swap } = formatNezhaInfo(data)
|
|
|
|
useEffect(() => {
|
|
if (data && historyLoaded) {
|
|
const timestamp = Date.now().toString()
|
|
let newData = [] as memChartData[]
|
|
if (memChartData.length === 0) {
|
|
newData = [
|
|
{ timeStamp: timestamp, mem: mem, swap: swap },
|
|
{ timeStamp: timestamp, mem: mem, swap: swap },
|
|
]
|
|
} else {
|
|
newData = [...memChartData, { timeStamp: timestamp, mem: mem, swap: swap }]
|
|
}
|
|
if (newData.length > MAX_HISTORY_LENGTH) {
|
|
newData.shift()
|
|
}
|
|
setMemChartData(newData)
|
|
}
|
|
}, [data, historyLoaded])
|
|
|
|
const chartConfig = {
|
|
mem: {
|
|
label: "Mem",
|
|
},
|
|
swap: {
|
|
label: "Swap",
|
|
},
|
|
} satisfies ChartConfig
|
|
|
|
return (
|
|
<Card>
|
|
<CardContent className="px-6 py-3">
|
|
<section className="flex flex-col gap-1">
|
|
<div className="flex items-center justify-between">
|
|
<section className="flex items-center gap-4">
|
|
<div className="flex flex-col">
|
|
<p className=" text-muted-foreground text-xs">{t("Mem")}</p>
|
|
<div className="flex items-center gap-2">
|
|
<AnimatedCircularProgressBar
|
|
className="size-3 text-[0px]"
|
|
max={100}
|
|
min={0}
|
|
value={mem}
|
|
primaryColor="hsl(var(--chart-8))"
|
|
/>
|
|
<p className="font-medium text-xs">{mem.toFixed(0)}%</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col">
|
|
<p className=" text-muted-foreground text-xs">{t("Swap")}</p>
|
|
<div className="flex items-center gap-2">
|
|
<AnimatedCircularProgressBar
|
|
className="size-3 text-[0px]"
|
|
max={100}
|
|
min={0}
|
|
value={swap}
|
|
primaryColor="hsl(var(--chart-10))"
|
|
/>
|
|
<p className="font-medium text-xs">{swap.toFixed(0)}%</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section className="flex flex-col items-end gap-0.5">
|
|
<div className="flex items-center gap-2 font-medium text-[11px]">
|
|
{formatBytes(data.status.MemUsed)} / {formatBytes(data.host.MemTotal)}
|
|
</div>
|
|
<div className="flex items-center gap-2 font-medium text-[11px]">
|
|
swap: {formatBytes(data.status.SwapUsed)}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<ChartContainer config={chartConfig} className="aspect-auto h-[130px] w-full">
|
|
<AreaChart
|
|
accessibilityLayer
|
|
data={memChartData}
|
|
margin={{
|
|
top: 12,
|
|
left: 12,
|
|
right: 12,
|
|
}}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<XAxis
|
|
dataKey="timeStamp"
|
|
tickLine={false}
|
|
axisLine={false}
|
|
tickMargin={8}
|
|
minTickGap={200}
|
|
interval="preserveStartEnd"
|
|
tickFormatter={(value) => formatRelativeTime(value)}
|
|
/>
|
|
<YAxis
|
|
tickLine={false}
|
|
axisLine={false}
|
|
mirror={true}
|
|
tickMargin={-15}
|
|
domain={[0, 100]}
|
|
tickFormatter={(value) => `${value}%`}
|
|
/>
|
|
<Area
|
|
isAnimationActive={false}
|
|
dataKey="mem"
|
|
type="step"
|
|
fill="hsl(var(--chart-8))"
|
|
fillOpacity={0.3}
|
|
stroke="hsl(var(--chart-8))"
|
|
/>
|
|
<Area
|
|
isAnimationActive={false}
|
|
dataKey="swap"
|
|
type="step"
|
|
fill="hsl(var(--chart-10))"
|
|
fillOpacity={0.3}
|
|
stroke="hsl(var(--chart-10))"
|
|
/>
|
|
</AreaChart>
|
|
</ChartContainer>
|
|
</section>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
function DiskChart({
|
|
data,
|
|
history,
|
|
}: {
|
|
data: NezhaAPISafe
|
|
history: ServerDataWithTimestamp[]
|
|
}) {
|
|
const t = useTranslations("ServerDetailChartClient")
|
|
const [diskChartData, setDiskChartData] = useState([] as diskChartData[])
|
|
const hasInitialized = useRef(false)
|
|
const [historyLoaded, setHistoryLoaded] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!hasInitialized.current && history.length > 0) {
|
|
const historyData = history
|
|
.map((msg) => {
|
|
const server = msg.data?.result?.find((item) => item.id === data.id)
|
|
if (!server) return null
|
|
const { disk } = formatNezhaInfo(server)
|
|
return {
|
|
timeStamp: msg.timestamp.toString(),
|
|
disk: disk,
|
|
}
|
|
})
|
|
.filter((item): item is diskChartData => item !== null)
|
|
.reverse()
|
|
|
|
setDiskChartData(historyData)
|
|
hasInitialized.current = true
|
|
setHistoryLoaded(true)
|
|
} else if (history.length === 0) {
|
|
setHistoryLoaded(true)
|
|
}
|
|
}, [])
|
|
|
|
const { disk } = formatNezhaInfo(data)
|
|
|
|
useEffect(() => {
|
|
if (data && historyLoaded) {
|
|
const timestamp = Date.now().toString()
|
|
let newData = [] as diskChartData[]
|
|
if (diskChartData.length === 0) {
|
|
newData = [
|
|
{ timeStamp: timestamp, disk: disk },
|
|
{ timeStamp: timestamp, disk: disk },
|
|
]
|
|
} else {
|
|
newData = [...diskChartData, { timeStamp: timestamp, disk: disk }]
|
|
}
|
|
if (newData.length > MAX_HISTORY_LENGTH) {
|
|
newData.shift()
|
|
}
|
|
setDiskChartData(newData)
|
|
}
|
|
}, [data, historyLoaded])
|
|
|
|
const chartConfig = {
|
|
disk: {
|
|
label: "Disk",
|
|
},
|
|
} satisfies ChartConfig
|
|
|
|
return (
|
|
<Card>
|
|
<CardContent className="px-6 py-3">
|
|
<section className="flex flex-col gap-1">
|
|
<div className="flex items-center justify-between">
|
|
<p className="font-medium text-md">{t("Disk")}</p>
|
|
<section className="flex flex-col items-end gap-0.5">
|
|
<section className="flex items-center gap-2">
|
|
<p className="w-10 text-end font-medium text-xs">{disk.toFixed(0)}%</p>
|
|
<AnimatedCircularProgressBar
|
|
className="size-3 text-[0px]"
|
|
max={100}
|
|
min={0}
|
|
value={disk}
|
|
primaryColor="hsl(var(--chart-5))"
|
|
/>
|
|
</section>
|
|
<div className="flex items-center gap-2 font-medium text-[11px]">
|
|
{formatBytes(data.status.DiskUsed)} / {formatBytes(data.host.DiskTotal)}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<ChartContainer config={chartConfig} className="aspect-auto h-[130px] w-full">
|
|
<AreaChart
|
|
accessibilityLayer
|
|
data={diskChartData}
|
|
margin={{
|
|
top: 12,
|
|
left: 12,
|
|
right: 12,
|
|
}}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<XAxis
|
|
dataKey="timeStamp"
|
|
tickLine={false}
|
|
axisLine={false}
|
|
tickMargin={8}
|
|
minTickGap={200}
|
|
interval="preserveStartEnd"
|
|
tickFormatter={(value) => formatRelativeTime(value)}
|
|
/>
|
|
<YAxis
|
|
tickLine={false}
|
|
axisLine={false}
|
|
mirror={true}
|
|
tickMargin={-15}
|
|
domain={[0, 100]}
|
|
tickFormatter={(value) => `${value}%`}
|
|
/>
|
|
<Area
|
|
isAnimationActive={false}
|
|
dataKey="disk"
|
|
type="step"
|
|
fill="hsl(var(--chart-5))"
|
|
fillOpacity={0.3}
|
|
stroke="hsl(var(--chart-5))"
|
|
/>
|
|
</AreaChart>
|
|
</ChartContainer>
|
|
</section>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
function NetworkChart({
|
|
data,
|
|
history,
|
|
}: {
|
|
data: NezhaAPISafe
|
|
history: ServerDataWithTimestamp[]
|
|
}) {
|
|
const t = useTranslations("ServerDetailChartClient")
|
|
const [networkChartData, setNetworkChartData] = useState([] as networkChartData[])
|
|
const hasInitialized = useRef(false)
|
|
const [historyLoaded, setHistoryLoaded] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!hasInitialized.current && history.length > 0) {
|
|
const historyData = history
|
|
.map((msg) => {
|
|
const server = msg.data?.result?.find((item) => item.id === data.id)
|
|
if (!server) return null
|
|
const { up, down } = formatNezhaInfo(server)
|
|
return {
|
|
timeStamp: msg.timestamp.toString(),
|
|
upload: up,
|
|
download: down,
|
|
}
|
|
})
|
|
.filter((item): item is networkChartData => item !== null)
|
|
.reverse()
|
|
|
|
setNetworkChartData(historyData)
|
|
hasInitialized.current = true
|
|
setHistoryLoaded(true)
|
|
} else if (history.length === 0) {
|
|
setHistoryLoaded(true)
|
|
}
|
|
}, [])
|
|
|
|
const { up, down } = formatNezhaInfo(data)
|
|
|
|
useEffect(() => {
|
|
if (data && historyLoaded) {
|
|
const timestamp = Date.now().toString()
|
|
let newData = [] as networkChartData[]
|
|
if (networkChartData.length === 0) {
|
|
newData = [
|
|
{ timeStamp: timestamp, upload: up, download: down },
|
|
{ timeStamp: timestamp, upload: up, download: down },
|
|
]
|
|
} else {
|
|
newData = [...networkChartData, { timeStamp: timestamp, upload: up, download: down }]
|
|
}
|
|
if (newData.length > MAX_HISTORY_LENGTH) {
|
|
newData.shift()
|
|
}
|
|
setNetworkChartData(newData)
|
|
}
|
|
}, [data, historyLoaded])
|
|
|
|
let maxDownload = Math.max(...networkChartData.map((item) => item.download))
|
|
maxDownload = Math.ceil(maxDownload)
|
|
if (maxDownload < 1) {
|
|
maxDownload = 1
|
|
}
|
|
|
|
const chartConfig = {
|
|
upload: {
|
|
label: "Upload",
|
|
},
|
|
download: {
|
|
label: "Download",
|
|
},
|
|
} satisfies ChartConfig
|
|
|
|
return (
|
|
<Card>
|
|
<CardContent className="px-6 py-3">
|
|
<section className="flex flex-col gap-1">
|
|
<div className="flex items-center">
|
|
<section className="flex items-center gap-4">
|
|
<div className="flex w-20 flex-col">
|
|
<p className="text-muted-foreground text-xs">{t("Upload")}</p>
|
|
<div className="flex items-center gap-1">
|
|
<span className="relative inline-flex size-1.5 rounded-full bg-[hsl(var(--chart-1))]" />
|
|
<p className="font-medium text-xs">{up.toFixed(2)} M/s</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex w-20 flex-col">
|
|
<p className=" text-muted-foreground text-xs">{t("Download")}</p>
|
|
<div className="flex items-center gap-1">
|
|
<span className="relative inline-flex size-1.5 rounded-full bg-[hsl(var(--chart-4))]" />
|
|
<p className="font-medium text-xs">{down.toFixed(2)} M/s</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<ChartContainer config={chartConfig} className="aspect-auto h-[130px] w-full">
|
|
<LineChart
|
|
accessibilityLayer
|
|
data={networkChartData}
|
|
margin={{
|
|
top: 12,
|
|
left: 12,
|
|
right: 12,
|
|
}}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<XAxis
|
|
dataKey="timeStamp"
|
|
tickLine={false}
|
|
axisLine={false}
|
|
tickMargin={8}
|
|
minTickGap={200}
|
|
interval="preserveStartEnd"
|
|
tickFormatter={(value) => formatRelativeTime(value)}
|
|
/>
|
|
<YAxis
|
|
tickLine={false}
|
|
axisLine={false}
|
|
mirror={true}
|
|
tickMargin={-15}
|
|
type="number"
|
|
minTickGap={50}
|
|
interval="preserveStartEnd"
|
|
domain={[1, maxDownload]}
|
|
tickFormatter={(value) => `${value.toFixed(0)}M/s`}
|
|
/>
|
|
<Line
|
|
isAnimationActive={false}
|
|
dataKey="upload"
|
|
type="linear"
|
|
stroke="hsl(var(--chart-1))"
|
|
strokeWidth={1}
|
|
dot={false}
|
|
/>
|
|
<Line
|
|
isAnimationActive={false}
|
|
dataKey="download"
|
|
type="linear"
|
|
stroke="hsl(var(--chart-4))"
|
|
strokeWidth={1}
|
|
dot={false}
|
|
/>
|
|
</LineChart>
|
|
</ChartContainer>
|
|
</section>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
function ConnectChart({
|
|
data,
|
|
history,
|
|
}: {
|
|
data: NezhaAPISafe
|
|
history: ServerDataWithTimestamp[]
|
|
}) {
|
|
const [connectChartData, setConnectChartData] = useState([] as connectChartData[])
|
|
const hasInitialized = useRef(false)
|
|
const [historyLoaded, setHistoryLoaded] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!hasInitialized.current && history.length > 0) {
|
|
const historyData = history
|
|
.map((msg) => {
|
|
const server = msg.data?.result?.find((item) => item.id === data.id)
|
|
if (!server) return null
|
|
const { tcp, udp } = formatNezhaInfo(server)
|
|
return {
|
|
timeStamp: msg.timestamp.toString(),
|
|
tcp: tcp,
|
|
udp: udp,
|
|
}
|
|
})
|
|
.filter((item): item is connectChartData => item !== null)
|
|
.reverse()
|
|
|
|
setConnectChartData(historyData)
|
|
hasInitialized.current = true
|
|
setHistoryLoaded(true)
|
|
} else if (history.length === 0) {
|
|
setHistoryLoaded(true)
|
|
}
|
|
}, [])
|
|
|
|
const { tcp, udp } = formatNezhaInfo(data)
|
|
|
|
useEffect(() => {
|
|
if (data && historyLoaded) {
|
|
const timestamp = Date.now().toString()
|
|
let newData = [] as connectChartData[]
|
|
if (connectChartData.length === 0) {
|
|
newData = [
|
|
{ timeStamp: timestamp, tcp: tcp, udp: udp },
|
|
{ timeStamp: timestamp, tcp: tcp, udp: udp },
|
|
]
|
|
} else {
|
|
newData = [...connectChartData, { timeStamp: timestamp, tcp: tcp, udp: udp }]
|
|
}
|
|
if (newData.length > MAX_HISTORY_LENGTH) {
|
|
newData.shift()
|
|
}
|
|
setConnectChartData(newData)
|
|
}
|
|
}, [data, historyLoaded])
|
|
|
|
const chartConfig = {
|
|
tcp: {
|
|
label: "TCP",
|
|
},
|
|
udp: {
|
|
label: "UDP",
|
|
},
|
|
} satisfies ChartConfig
|
|
|
|
return (
|
|
<Card>
|
|
<CardContent className="px-6 py-3">
|
|
<section className="flex flex-col gap-1">
|
|
<div className="flex items-center">
|
|
<section className="flex items-center gap-4">
|
|
<div className="flex w-12 flex-col">
|
|
<p className="text-muted-foreground text-xs">TCP</p>
|
|
<div className="flex items-center gap-1">
|
|
<span className="relative inline-flex size-1.5 rounded-full bg-[hsl(var(--chart-1))]" />
|
|
<p className="font-medium text-xs">{tcp}</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex w-12 flex-col">
|
|
<p className=" text-muted-foreground text-xs">UDP</p>
|
|
<div className="flex items-center gap-1">
|
|
<span className="relative inline-flex size-1.5 rounded-full bg-[hsl(var(--chart-4))]" />
|
|
<p className="font-medium text-xs">{udp}</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<ChartContainer config={chartConfig} className="aspect-auto h-[130px] w-full">
|
|
<LineChart
|
|
accessibilityLayer
|
|
data={connectChartData}
|
|
margin={{
|
|
top: 12,
|
|
left: 12,
|
|
right: 12,
|
|
}}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<XAxis
|
|
dataKey="timeStamp"
|
|
tickLine={false}
|
|
axisLine={false}
|
|
tickMargin={8}
|
|
minTickGap={200}
|
|
interval="preserveStartEnd"
|
|
tickFormatter={(value) => formatRelativeTime(value)}
|
|
/>
|
|
<YAxis
|
|
tickLine={false}
|
|
axisLine={false}
|
|
mirror={true}
|
|
tickMargin={-15}
|
|
type="number"
|
|
interval="preserveStartEnd"
|
|
/>
|
|
<Line
|
|
isAnimationActive={false}
|
|
dataKey="tcp"
|
|
type="linear"
|
|
stroke="hsl(var(--chart-1))"
|
|
strokeWidth={1}
|
|
dot={false}
|
|
/>
|
|
<Line
|
|
isAnimationActive={false}
|
|
dataKey="udp"
|
|
type="linear"
|
|
stroke="hsl(var(--chart-4))"
|
|
strokeWidth={1}
|
|
dot={false}
|
|
/>
|
|
</LineChart>
|
|
</ChartContainer>
|
|
</section>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|