mirror of
https://github.com/fankes/beszel.git
synced 2025-10-19 01:39:34 +08:00
81 lines
2.1 KiB
Go
81 lines
2.1 KiB
Go
import { Area, AreaChart, CartesianGrid, XAxis, YAxis } from 'recharts'
|
|
|
|
import { ChartContainer, ChartTooltip, ChartTooltipContent } from '@/components/ui/chart'
|
|
import { chartTimeData, cn, formatShortDate, useYaxisWidth } from '@/lib/utils'
|
|
// import Spinner from '../spinner'
|
|
import { useStore } from '@nanostores/react'
|
|
import { $chartTime } from '@/lib/stores'
|
|
import { SystemStatsRecord } from '@/types'
|
|
import { useMemo, useRef } from 'react'
|
|
|
|
export default function CpuChart({
|
|
ticks,
|
|
systemData,
|
|
}: {
|
|
ticks: number[]
|
|
systemData: SystemStatsRecord[]
|
|
}) {
|
|
const chartTime = useStore($chartTime)
|
|
const chartRef = useRef<HTMLDivElement>(null)
|
|
const yAxisWidth = useYaxisWidth(chartRef)
|
|
|
|
const yAxisSet = useMemo(() => yAxisWidth !== 180, [yAxisWidth])
|
|
|
|
return (
|
|
<div ref={chartRef}>
|
|
<ChartContainer
|
|
config={{}}
|
|
className={cn('h-full w-full absolute aspect-auto bg-card opacity-0 transition-opacity', {
|
|
'opacity-100': yAxisSet,
|
|
})}
|
|
>
|
|
<AreaChart accessibilityLayer data={systemData} margin={{ top: 10 }}>
|
|
<CartesianGrid vertical={false} />
|
|
<YAxis
|
|
className="tracking-tighter"
|
|
// domain={[0, (max: number) => Math.ceil(max)]}
|
|
width={yAxisWidth}
|
|
tickLine={false}
|
|
axisLine={false}
|
|
unit={'%'}
|
|
/>
|
|
<XAxis
|
|
dataKey="created"
|
|
domain={[ticks[0], ticks.at(-1)!]}
|
|
ticks={ticks}
|
|
type="number"
|
|
scale={'time'}
|
|
minTickGap={35}
|
|
tickMargin={8}
|
|
axisLine={false}
|
|
tickFormatter={chartTimeData[chartTime].format}
|
|
/>
|
|
<ChartTooltip
|
|
animationEasing="ease-out"
|
|
animationDuration={150}
|
|
content={
|
|
<ChartTooltipContent
|
|
unit="%"
|
|
labelFormatter={(_, data) => formatShortDate(data[0].payload.created)}
|
|
indicator="line"
|
|
/>
|
|
}
|
|
/>
|
|
<Area
|
|
dataKey="stats.cpu"
|
|
name="CPU Usage"
|
|
type="monotoneX"
|
|
fill="hsl(var(--chart-1))"
|
|
fillOpacity={0.4}
|
|
stroke="hsl(var(--chart-1))"
|
|
isAnimationActive={false}
|
|
// animationEasing="ease-out"
|
|
// animationDuration={1200}
|
|
// animateNewValues={true}
|
|
/>
|
|
</AreaChart>
|
|
</ChartContainer>
|
|
</div>
|
|
)
|
|
}
|