mirror of
https://github.com/fankes/beszel.git
synced 2025-10-20 18:29:29 +08:00
109 lines
2.4 KiB
TypeScript
109 lines
2.4 KiB
TypeScript
import { Area, AreaChart, CartesianGrid, XAxis, YAxis } from 'recharts'
|
|
|
|
import {
|
|
ChartConfig,
|
|
ChartContainer,
|
|
ChartTooltip,
|
|
ChartTooltipContent,
|
|
} from '@/components/ui/chart'
|
|
import { formatShortDate, hourWithMinutes } from '@/lib/utils'
|
|
import { useMemo } from 'react'
|
|
import Spinner from '../spinner'
|
|
|
|
export default function MemChart({
|
|
chartData,
|
|
ticks,
|
|
}: {
|
|
chartData: { time: number; mem: number; memUsed: number; memCache: number }[]
|
|
ticks: number[]
|
|
}) {
|
|
if (!chartData.length || !ticks.length) {
|
|
return <Spinner />
|
|
}
|
|
|
|
const totalMem = useMemo(() => {
|
|
return Math.ceil(chartData[0]?.mem)
|
|
}, [chartData])
|
|
|
|
const chartConfig = useMemo(
|
|
() => ({
|
|
memCache: {
|
|
label: 'Cache / Buffers',
|
|
color: 'hsl(var(--chart-2))',
|
|
},
|
|
memUsed: {
|
|
label: 'Used',
|
|
color: 'hsl(var(--chart-2))',
|
|
},
|
|
}),
|
|
[]
|
|
) satisfies ChartConfig
|
|
|
|
return (
|
|
<ChartContainer config={chartConfig} className="h-full w-full absolute aspect-auto">
|
|
<AreaChart
|
|
accessibilityLayer
|
|
data={chartData}
|
|
margin={{
|
|
top: 10,
|
|
}}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<YAxis
|
|
// use "ticks" instead of domain / tickcount if need more control
|
|
domain={[0, totalMem]}
|
|
tickCount={9}
|
|
tickLine={false}
|
|
allowDecimals={false}
|
|
axisLine={false}
|
|
tickFormatter={(v) => `${v} GB`}
|
|
/>
|
|
{/* todo: short time if first date is same day, otherwise short date */}
|
|
<XAxis
|
|
dataKey="time"
|
|
domain={[ticks[0], ticks.at(-1)!]}
|
|
ticks={ticks}
|
|
type="number"
|
|
scale={'time'}
|
|
tickLine={true}
|
|
axisLine={false}
|
|
tickMargin={8}
|
|
minTickGap={30}
|
|
tickFormatter={hourWithMinutes}
|
|
/>
|
|
<ChartTooltip
|
|
// cursor={false}
|
|
animationEasing="ease-out"
|
|
animationDuration={150}
|
|
content={
|
|
<ChartTooltipContent
|
|
unit="GB"
|
|
// @ts-ignore
|
|
itemSorter={(a, b) => a.name.localeCompare(b.name)}
|
|
labelFormatter={(_, data) => formatShortDate(data[0].payload.time)}
|
|
indicator="line"
|
|
/>
|
|
}
|
|
/>
|
|
<Area
|
|
dataKey="memUsed"
|
|
type="monotoneX"
|
|
fill="var(--color-memUsed)"
|
|
fillOpacity={0.4}
|
|
stroke="var(--color-memUsed)"
|
|
stackId="a"
|
|
/>
|
|
<Area
|
|
dataKey="memCache"
|
|
type="monotoneX"
|
|
fill="var(--color-memCache)"
|
|
fillOpacity={0.2}
|
|
strokeOpacity={0.3}
|
|
stroke="var(--color-memCache)"
|
|
stackId="a"
|
|
/>
|
|
</AreaChart>
|
|
</ChartContainer>
|
|
)
|
|
}
|