mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
126 lines
3.5 KiB
TypeScript
126 lines
3.5 KiB
TypeScript
"use client";
|
|
// Example data from ShadCN: https://github.com/shadcn-ui/ui/blob/0fae3fd93ae749aca708bdfbbbeddc5d576bfb2e/apps/www/registry/default/example/cards/stats.tsx#L61
|
|
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { Line, LineChart, ResponsiveContainer, Tooltip } from "recharts";
|
|
import { twColourConfig } from "@/lib/twConfig";
|
|
|
|
const timeSeriesData = [
|
|
{
|
|
average: 400,
|
|
today: 240,
|
|
},
|
|
{
|
|
average: 300,
|
|
today: 139,
|
|
},
|
|
{
|
|
average: 200,
|
|
today: 980,
|
|
},
|
|
{
|
|
average: 278,
|
|
today: 390,
|
|
},
|
|
{
|
|
average: 189,
|
|
today: 480,
|
|
},
|
|
{
|
|
average: 239,
|
|
today: 380,
|
|
},
|
|
{
|
|
average: 349,
|
|
today: 430,
|
|
},
|
|
];
|
|
|
|
export function DemoExercise() {
|
|
return (
|
|
<Card className="w-full text-left">
|
|
<CardHeader>
|
|
<CardTitle>Exercise Minutes</CardTitle>
|
|
<CardDescription>
|
|
Your exercise minutes are ahead of where you normally are.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="pb-4">
|
|
{/* <div className="h-auto"> */}
|
|
<div className="h-[140px]">
|
|
<ResponsiveContainer width="100%" height="100%">
|
|
<LineChart
|
|
data={timeSeriesData}
|
|
margin={{
|
|
top: 5,
|
|
right: 10,
|
|
left: 10,
|
|
bottom: 0,
|
|
}}
|
|
>
|
|
<Tooltip
|
|
content={({ active, payload }) => {
|
|
if (active && payload && payload.length) {
|
|
return (
|
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
|
<div className="grid grid-cols-2 gap-2">
|
|
<div className="flex flex-col">
|
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
|
Average
|
|
</span>
|
|
<span className="font-bold text-muted-foreground">
|
|
{payload[0].value}
|
|
</span>
|
|
</div>
|
|
<div className="flex flex-col">
|
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
|
Today
|
|
</span>
|
|
<span className="font-bold">
|
|
{payload[1].value}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
return null;
|
|
}}
|
|
/>
|
|
<Line
|
|
type="monotone"
|
|
strokeWidth={2}
|
|
dataKey="average"
|
|
activeDot={{
|
|
r: 6,
|
|
style: {
|
|
fill: `${twColourConfig.primary.DEFAULT}`,
|
|
opacity: 0.25,
|
|
},
|
|
}}
|
|
stroke={twColourConfig.primary.DEFAULT}
|
|
opacity={0.25}
|
|
/>
|
|
<Line
|
|
type="monotone"
|
|
dataKey="today"
|
|
strokeWidth={2}
|
|
activeDot={{
|
|
r: 8,
|
|
style: { fill: `${twColourConfig.primary.DEFAULT}` },
|
|
}}
|
|
stroke={twColourConfig.primary.DEFAULT}
|
|
/>
|
|
</LineChart>
|
|
</ResponsiveContainer>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|