mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-21 21:26:16 +01:00
117 lines
3.8 KiB
Go
117 lines
3.8 KiB
Go
import { useStore } from "@nanostores/react"
|
|
import { memo, useMemo } from "react"
|
|
import { CartesianGrid, Line, LineChart, YAxis } from "recharts"
|
|
import {
|
|
ChartContainer,
|
|
ChartLegend,
|
|
ChartLegendContent,
|
|
ChartTooltip,
|
|
ChartTooltipContent,
|
|
xAxis,
|
|
} from "@/components/ui/chart"
|
|
import { $temperatureFilter, $userSettings } from "@/lib/stores"
|
|
import { chartMargin, cn, decimalString, formatShortDate, formatTemperature, toFixedFloat } from "@/lib/utils"
|
|
import type { ChartData } from "@/types"
|
|
import { useYAxisWidth } from "./hooks"
|
|
|
|
export default memo(function TemperatureChart({ chartData }: { chartData: ChartData }) {
|
|
const filter = useStore($temperatureFilter)
|
|
const userSettings = useStore($userSettings)
|
|
const { yAxisWidth, updateYAxisWidth } = useYAxisWidth()
|
|
|
|
if (chartData.systemStats.length === 0) {
|
|
return null
|
|
}
|
|
|
|
/** Format temperature data for chart and assign colors */
|
|
const newChartData = useMemo(() => {
|
|
const newChartData = { data: [], colors: {} } as {
|
|
data: Record<string, number | string>[]
|
|
colors: Record<string, string>
|
|
}
|
|
const tempSums = {} as Record<string, number>
|
|
for (const data of chartData.systemStats) {
|
|
const newData = { created: data.created } as Record<string, number | string>
|
|
const keys = Object.keys(data.stats?.t ?? {})
|
|
for (let i = 0; i < keys.length; i++) {
|
|
const key = keys[i]
|
|
newData[key] = data.stats.t![key]
|
|
tempSums[key] = (tempSums[key] ?? 0) + newData[key]
|
|
}
|
|
newChartData.data.push(newData)
|
|
}
|
|
const keys = Object.keys(tempSums).sort((a, b) => tempSums[b] - tempSums[a])
|
|
for (const key of keys) {
|
|
newChartData.colors[key] = `hsl(${((keys.indexOf(key) * 360) / keys.length) % 360}, 60%, 55%)`
|
|
}
|
|
return newChartData
|
|
}, [chartData])
|
|
|
|
const colors = Object.keys(newChartData.colors)
|
|
|
|
// console.log('rendered at', new Date())
|
|
|
|
return (
|
|
<div>
|
|
<ChartContainer
|
|
className={cn("h-full w-full absolute aspect-auto bg-card opacity-0 transition-opacity", {
|
|
"opacity-100": yAxisWidth,
|
|
})}
|
|
>
|
|
<LineChart accessibilityLayer data={newChartData.data} margin={chartMargin}>
|
|
<CartesianGrid vertical={false} />
|
|
<YAxis
|
|
direction="ltr"
|
|
orientation={chartData.orientation}
|
|
className="tracking-tighter"
|
|
domain={["auto", "auto"]}
|
|
width={yAxisWidth}
|
|
tickFormatter={(val) => {
|
|
const { value, unit } = formatTemperature(val, userSettings.unitTemp)
|
|
return updateYAxisWidth(toFixedFloat(value, 2) + " " + unit)
|
|
}}
|
|
tickLine={false}
|
|
axisLine={false}
|
|
/>
|
|
{xAxis(chartData)}
|
|
<ChartTooltip
|
|
animationEasing="ease-out"
|
|
animationDuration={150}
|
|
// @ts-expect-error
|
|
itemSorter={(a, b) => b.value - a.value}
|
|
content={
|
|
<ChartTooltipContent
|
|
labelFormatter={(_, data) => formatShortDate(data[0].payload.created)}
|
|
contentFormatter={(item) => {
|
|
const { value, unit } = formatTemperature(item.value, userSettings.unitTemp)
|
|
return decimalString(value) + " " + unit
|
|
}}
|
|
filter={filter}
|
|
/>
|
|
}
|
|
/>
|
|
{colors.map((key) => {
|
|
const filterTerms = filter ? filter.toLowerCase().split(" ").filter(term => term.length > 0) : []
|
|
const filtered = filterTerms.length > 0 && !filterTerms.some(term => key.toLowerCase().includes(term))
|
|
const strokeOpacity = filtered ? 0.1 : 1
|
|
return (
|
|
<Line
|
|
key={key}
|
|
dataKey={key}
|
|
name={key}
|
|
type="monotoneX"
|
|
dot={false}
|
|
strokeWidth={1.5}
|
|
stroke={newChartData.colors[key]}
|
|
strokeOpacity={strokeOpacity}
|
|
activeDot={{ opacity: filtered ? 0 : 1 }}
|
|
isAnimationActive={false}
|
|
/>
|
|
)
|
|
})}
|
|
{colors.length < 12 && <ChartLegend content={<ChartLegendContent />} />}
|
|
</LineChart>
|
|
</ChartContainer>
|
|
</div>
|
|
)
|
|
}) |