This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/projects/website/src/components/chart/generic-chart.tsx

233 lines
6.1 KiB
TypeScript
Raw Normal View History

2024-10-04 18:25:37 +01:00
/* eslint-disable @typescript-eslint/no-explicit-any */
"use client";
2024-10-15 04:09:47 +01:00
import {
BarElement,
CategoryScale,
Chart,
Legend,
LinearScale,
LineElement,
PointElement,
Title,
Tooltip,
} from "chart.js";
2024-10-04 18:25:37 +01:00
import { Line } from "react-chartjs-2";
import { useIsMobile } from "@/hooks/use-is-mobile";
2024-10-15 04:09:47 +01:00
import { formatDateMinimal, getDaysAgo, getDaysAgoDate, parseDate } from "@ssr/common/utils/time-utils";
2024-10-04 18:25:37 +01:00
2024-10-15 04:09:47 +01:00
Chart.register(LinearScale, CategoryScale, PointElement, LineElement, BarElement, Title, Tooltip, Legend);
2024-10-04 18:25:37 +01:00
export type AxisPosition = "left" | "right";
2024-10-15 04:09:47 +01:00
export type DatasetDisplayType = "line" | "bar";
2024-10-04 18:25:37 +01:00
export type Axis = {
id?: string;
position?: AxisPosition;
display?: boolean;
grid?: { color?: string; drawOnChartArea?: boolean };
title?: { display: boolean; text: string; color?: string };
ticks?: {
stepSize?: number;
2024-10-14 02:32:32 +01:00
callback?: (value: number, index: number, values: any) => string;
font?: (context: any) => { weight: string; color?: string } | undefined;
color?: (context: any) => string | undefined;
2024-10-04 18:25:37 +01:00
};
reverse?: boolean;
};
export type Dataset = {
label: string;
data: (number | null)[];
borderColor: string;
fill: boolean;
lineTension: number;
spanGaps: boolean;
yAxisID: string;
2024-10-15 04:09:47 +01:00
type?: DatasetDisplayType;
2024-10-04 18:25:37 +01:00
};
export type DatasetConfig = {
title: string;
field: string;
color: string;
axisId: string;
axisConfig: {
reverse: boolean;
display: boolean;
hideOnMobile?: boolean;
displayName: string;
position: AxisPosition;
2024-10-14 03:06:22 +01:00
valueFormatter?: (value: number) => string; // Added precision option here
2024-10-04 18:25:37 +01:00
};
2024-10-15 04:09:47 +01:00
type?: DatasetDisplayType;
2024-10-04 18:25:37 +01:00
labelFormatter: (value: number) => string;
};
export type ChartProps = {
2024-10-14 02:32:32 +01:00
labels: Date[];
2024-10-04 18:25:37 +01:00
datasetConfig: DatasetConfig[];
histories: Record<string, (number | null)[]>;
};
const generateAxis = (
id: string,
reverse: boolean,
display: boolean,
position: AxisPosition,
2024-10-14 02:32:32 +01:00
displayName: string,
2024-10-14 03:06:22 +01:00
valueFormatter?: (value: number) => string
2024-10-04 18:25:37 +01:00
): Axis => ({
id,
position,
display,
grid: { drawOnChartArea: id === "y", color: id === "y" ? "#252525" : "" },
title: { display: true, text: displayName, color: "#ffffff" },
2024-10-14 02:32:32 +01:00
ticks: {
stepSize: 10,
callback: (value: number) => {
// Apply precision if specified, otherwise default to no decimal places
2024-10-14 03:06:22 +01:00
return valueFormatter !== undefined ? valueFormatter(value) : value.toString();
2024-10-14 02:32:32 +01:00
},
},
2024-10-04 18:25:37 +01:00
reverse,
});
2024-10-15 04:09:47 +01:00
const generateDataset = (
label: string,
data: (number | null)[],
borderColor: string,
yAxisID: string,
type?: DatasetDisplayType
): Dataset => ({
2024-10-04 18:25:37 +01:00
label,
data,
borderColor,
fill: false,
lineTension: 0.5,
spanGaps: false,
yAxisID,
2024-10-15 04:09:47 +01:00
type,
...(type === "bar" && {
backgroundColor: borderColor,
}),
2024-10-04 18:25:37 +01:00
});
export default function GenericChart({ labels, datasetConfig, histories }: ChartProps) {
const isMobile = useIsMobile();
const axes: Record<string, Axis> = {
x: {
grid: { color: "#252525" },
reverse: false,
2024-10-14 02:32:32 +01:00
ticks: {
font: (context: any) => {
// Make the first of the month bold
if (parseDate(context.tick.label).getDate() === 1) {
return {
weight: "bold",
};
}
},
color: (context: any) => {
if (parseDate(context.tick.label).getDate() === 1) {
return "#ffffff";
}
return "#717171";
},
},
2024-10-04 18:25:37 +01:00
},
};
const datasets: Dataset[] = datasetConfig
.map(config => {
const historyArray = histories[config.field];
if (historyArray && historyArray.some(value => value !== null)) {
axes[config.axisId] = generateAxis(
config.axisId,
config.axisConfig.reverse,
isMobile && config.axisConfig.hideOnMobile ? false : config.axisConfig.display,
config.axisConfig.position,
2024-10-14 02:32:32 +01:00
config.axisConfig.displayName,
2024-10-14 03:06:22 +01:00
config.axisConfig.valueFormatter
2024-10-04 18:25:37 +01:00
);
2024-10-15 04:09:47 +01:00
return generateDataset(config.title, historyArray, config.color, config.axisId, config.type || "line");
2024-10-04 18:25:37 +01:00
}
return null;
})
.filter(Boolean) as Dataset[];
const options: any = {
maintainAspectRatio: false,
responsive: true,
interaction: { mode: "index", intersect: false },
scales: axes,
elements: { point: { radius: 0 } },
plugins: {
legend: { position: "top", labels: { color: "white" } },
tooltip: {
callbacks: {
2024-10-14 02:32:32 +01:00
title(context: any) {
const date = labels[context[0].dataIndex];
2024-10-15 04:09:47 +01:00
const differenceInDays = getDaysAgo(date);
2024-10-14 02:32:32 +01:00
let formattedDate: string;
if (differenceInDays === 0) {
2024-10-15 04:09:47 +01:00
formattedDate = "Now";
2024-10-14 02:32:32 +01:00
} else if (differenceInDays === 1) {
formattedDate = "Yesterday";
} else {
formattedDate = formatDateMinimal(date);
}
return `${formattedDate} ${differenceInDays > 0 ? `(${differenceInDays} day${differenceInDays > 1 ? "s" : ""} ago)` : ""}`;
},
2024-10-04 18:25:37 +01:00
label(context: any) {
const value = Number(context.parsed.y);
const config = datasetConfig.find(cfg => cfg.title === context.dataset.label);
return config?.labelFormatter(value) ?? "";
},
},
},
},
};
2024-10-14 02:32:32 +01:00
const formattedLabels = labels.map(date => {
2024-10-15 04:09:47 +01:00
const formattedDate = formatDateMinimal(date);
if (formatDateMinimal(getDaysAgoDate(0)) === formattedDate) {
2024-10-14 02:32:32 +01:00
return "Now";
}
2024-10-15 04:09:47 +01:00
if (formatDateMinimal(getDaysAgoDate(1)) === formattedDate) {
2024-10-14 02:32:32 +01:00
return "Yesterday";
}
2024-10-15 04:09:47 +01:00
return formattedDate;
2024-10-14 02:32:32 +01:00
});
2024-10-15 04:09:47 +01:00
const data: any = { labels: formattedLabels, datasets };
2024-10-04 18:25:37 +01:00
return (
<div className="block h-[360px] w-full relative">
<Line
className="max-w-[100%]"
options={options}
data={data}
plugins={[
{
id: "legend-padding",
beforeInit: (chart: any) => {
const originalFit = chart.legend.fit;
chart.legend.fit = function fit() {
originalFit.bind(chart.legend)();
this.height += 2;
};
},
},
]}
/>
</div>
);
}