mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-12 06:15:48 +00:00
166 lines
5.2 KiB
Go
166 lines
5.2 KiB
Go
// import Spinner from '../spinner'
|
|
import { useStore } from "@nanostores/react"
|
|
import { memo, useMemo } from "react"
|
|
import { Area, AreaChart, CartesianGrid, YAxis } from "recharts"
|
|
import { type ChartConfig, ChartContainer, ChartTooltip, ChartTooltipContent, xAxis } from "@/components/ui/chart"
|
|
import { ChartType, Unit } from "@/lib/enums"
|
|
import { $containerFilter, $userSettings } from "@/lib/stores"
|
|
import { chartMargin, cn, decimalString, formatBytes, formatShortDate, toFixedFloat } from "@/lib/utils"
|
|
import type { ChartData } from "@/types"
|
|
import { Separator } from "../ui/separator"
|
|
import { useYAxisWidth } from "./hooks"
|
|
|
|
export default memo(function ContainerChart({
|
|
dataKey,
|
|
chartData,
|
|
chartType,
|
|
chartConfig,
|
|
unit = "%",
|
|
}: {
|
|
dataKey: string
|
|
chartData: ChartData
|
|
chartType: ChartType
|
|
chartConfig: ChartConfig
|
|
unit?: string
|
|
}) {
|
|
const filter = useStore($containerFilter)
|
|
const userSettings = useStore($userSettings)
|
|
const { yAxisWidth, updateYAxisWidth } = useYAxisWidth()
|
|
|
|
const { containerData } = chartData
|
|
|
|
const isNetChart = chartType === ChartType.Network
|
|
|
|
// biome-ignore lint/correctness/useExhaustiveDependencies: not necessary
|
|
const { toolTipFormatter, dataFunction, tickFormatter } = useMemo(() => {
|
|
const obj = {} as {
|
|
toolTipFormatter: (item: any, key: string) => React.ReactNode | string
|
|
dataFunction: (key: string, data: any) => number | null
|
|
tickFormatter: (value: any) => string
|
|
}
|
|
// tick formatter
|
|
if (chartType === ChartType.CPU) {
|
|
obj.tickFormatter = (value) => {
|
|
const val = toFixedFloat(value, 2) + unit
|
|
return updateYAxisWidth(val)
|
|
}
|
|
} else {
|
|
const chartUnit = isNetChart ? userSettings.unitNet : Unit.Bytes
|
|
obj.tickFormatter = (val) => {
|
|
const { value, unit } = formatBytes(val, isNetChart, chartUnit, true)
|
|
return updateYAxisWidth(`${toFixedFloat(value, value >= 10 ? 0 : 1)} ${unit}`)
|
|
}
|
|
}
|
|
// tooltip formatter
|
|
if (isNetChart) {
|
|
obj.toolTipFormatter = (item: any, key: string) => {
|
|
try {
|
|
const sent = item?.payload?.[key]?.ns ?? 0
|
|
const received = item?.payload?.[key]?.nr ?? 0
|
|
const { value: receivedValue, unit: receivedUnit } = formatBytes(received, true, userSettings.unitNet, true)
|
|
const { value: sentValue, unit: sentUnit } = formatBytes(sent, true, userSettings.unitNet, true)
|
|
return (
|
|
<span className="flex">
|
|
{decimalString(receivedValue)} {receivedUnit}
|
|
<span className="opacity-70 ms-0.5"> rx </span>
|
|
<Separator orientation="vertical" className="h-3 mx-1.5 bg-primary/40" />
|
|
{decimalString(sentValue)} {sentUnit}
|
|
<span className="opacity-70 ms-0.5"> tx</span>
|
|
</span>
|
|
)
|
|
} catch (e) {
|
|
return null
|
|
}
|
|
}
|
|
} else if (chartType === ChartType.Memory) {
|
|
obj.toolTipFormatter = (item: any) => {
|
|
const { value, unit } = formatBytes(item.value, false, Unit.Bytes, true)
|
|
return `${decimalString(value)} ${unit}`
|
|
}
|
|
} else {
|
|
obj.toolTipFormatter = (item: any) => `${decimalString(item.value)} ${unit}`
|
|
}
|
|
// data function
|
|
if (isNetChart) {
|
|
obj.dataFunction = (key: string, data: any) => (data[key] ? data[key].nr + data[key].ns : null)
|
|
} else {
|
|
obj.dataFunction = (key: string, data: any) => data[key]?.[dataKey] ?? null
|
|
}
|
|
return obj
|
|
}, [])
|
|
|
|
// Filter with set lookup
|
|
const filteredKeys = useMemo(() => {
|
|
if (!filter) {
|
|
return new Set<string>()
|
|
}
|
|
const filterLower = filter.toLowerCase()
|
|
return new Set(Object.keys(chartConfig).filter((key) => !key.toLowerCase().includes(filterLower)))
|
|
}, [chartConfig, filter])
|
|
|
|
// console.log('rendered at', new Date())
|
|
|
|
if (containerData.length === 0) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<ChartContainer
|
|
className={cn("h-full w-full absolute aspect-auto bg-card opacity-0 transition-opacity", {
|
|
"opacity-100": yAxisWidth,
|
|
})}
|
|
>
|
|
<AreaChart
|
|
accessibilityLayer
|
|
// syncId={'cpu'}
|
|
data={containerData}
|
|
margin={chartMargin}
|
|
reverseStackOrder={true}
|
|
>
|
|
<CartesianGrid vertical={false} />
|
|
<YAxis
|
|
direction="ltr"
|
|
orientation={chartData.orientation}
|
|
className="tracking-tighter"
|
|
width={yAxisWidth}
|
|
tickFormatter={tickFormatter}
|
|
tickLine={false}
|
|
axisLine={false}
|
|
/>
|
|
{xAxis(chartData)}
|
|
<ChartTooltip
|
|
animationEasing="ease-out"
|
|
animationDuration={150}
|
|
truncate={true}
|
|
labelFormatter={(_, data) => formatShortDate(data[0].payload.created)}
|
|
// @ts-expect-error
|
|
itemSorter={(a, b) => b.value - a.value}
|
|
content={<ChartTooltipContent filter={filter} contentFormatter={toolTipFormatter} />}
|
|
/>
|
|
{Object.keys(chartConfig).map((key) => {
|
|
const filtered = filteredKeys.has(key)
|
|
const fillOpacity = filtered ? 0.05 : 0.4
|
|
const strokeOpacity = filtered ? 0.1 : 1
|
|
return (
|
|
<Area
|
|
key={key}
|
|
isAnimationActive={false}
|
|
dataKey={dataFunction.bind(null, key)}
|
|
name={key}
|
|
type="monotoneX"
|
|
fill={chartConfig[key].color}
|
|
fillOpacity={fillOpacity}
|
|
stroke={chartConfig[key].color}
|
|
strokeOpacity={strokeOpacity}
|
|
activeDot={{ opacity: filtered ? 0 : 1 }}
|
|
stackId="a"
|
|
/>
|
|
)
|
|
})}
|
|
</AreaChart>
|
|
</ChartContainer>
|
|
</div>
|
|
)
|
|
})
|