import { DateTime } from "luxon"; import { BarChart, Bar, LineChart, Line, CartesianGrid, XAxis, YAxis, Tooltip, ReferenceLine, ResponsiveContainer, Label, } from "recharts"; import GoatCounter from "../components/GoatCounter"; import "./Graph.css"; const Graph = (props) => { const { name, response, dataKey, timeDifference } = props; const { data, loading, error } = response; if (loading) { return
; } const eventStyle = { fill: "#767676" }; const parsed = data.map((d) => { return { date: DateTime.fromSQL(d["last_updated"], { zone: "UTC" }).setZone(DateTime.local().zoneName).toSeconds(), value: d[dataKey], }; }); return (
{name}
600 ? 750 : window.innerWidth * 0.9} height={500} margin={{ top: 15, right: 30, left: 0, bottom: 5 }} data={parsed} > {} } height={90} />
); }; const CustomizedAxisTick = ({ x, y, payload }) => { return ( {DateTime.fromSeconds(payload.value).toLocaleString()} ); }; const CustomTooltip = ({ active, payload, label }) => { if (active) { return (

{DateTime.fromSeconds(label).toLocaleString({ weekday: "long", month: "long", day: "2-digit" })}

{payload[0].value}

); } return null; }; export default Graph;