mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
120 lines
2.8 KiB
TypeScript
120 lines
2.8 KiB
TypeScript
"use client";
|
|
// https://github.com/shadcn-ui/ui/blob/0fae3fd93ae749aca708bdfbbbeddc5d576bfb2e/apps/www/registry/default/example/cards/activity-goal.tsx
|
|
import * as React from "react";
|
|
import { Minus, Plus } from "lucide-react";
|
|
import { Bar, BarChart, ResponsiveContainer } from "recharts";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { twColourConfig } from "@/lib/twConfig";
|
|
|
|
const data = [
|
|
{
|
|
goal: 400,
|
|
},
|
|
{
|
|
goal: 300,
|
|
},
|
|
{
|
|
goal: 200,
|
|
},
|
|
{
|
|
goal: 300,
|
|
},
|
|
{
|
|
goal: 200,
|
|
},
|
|
{
|
|
goal: 278,
|
|
},
|
|
{
|
|
goal: 189,
|
|
},
|
|
{
|
|
goal: 239,
|
|
},
|
|
{
|
|
goal: 300,
|
|
},
|
|
{
|
|
goal: 200,
|
|
},
|
|
{
|
|
goal: 278,
|
|
},
|
|
{
|
|
goal: 189,
|
|
},
|
|
{
|
|
goal: 349,
|
|
},
|
|
];
|
|
|
|
export function DemoGoal() {
|
|
const [goal, setGoal] = React.useState(350);
|
|
|
|
function onClick(adjustment: number) {
|
|
setGoal(Math.max(200, Math.min(400, goal + adjustment)));
|
|
}
|
|
|
|
return (
|
|
<Card className="w-full">
|
|
<CardHeader className="pb-4">
|
|
<CardTitle className="text-base">Move Goal</CardTitle>
|
|
<CardDescription>Set your daily activity goal.</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="pb-2">
|
|
<div className="flex items-center justify-center space-x-2">
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
className="h-8 w-8 shrink-0 rounded-full"
|
|
onClick={() => onClick(-10)}
|
|
disabled={goal <= 200}
|
|
>
|
|
<Minus className="h-4 w-4" />
|
|
<span className="sr-only">Decrease</span>
|
|
</Button>
|
|
<div className="flex-1 text-center">
|
|
<div className="text-5xl font-bold tracking-tighter">{goal}</div>
|
|
<div className="text-[0.70rem] uppercase text-muted-foreground">
|
|
Calories/day
|
|
</div>
|
|
</div>
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
className="h-8 w-8 shrink-0 rounded-full"
|
|
onClick={() => onClick(10)}
|
|
disabled={goal >= 400}
|
|
>
|
|
<Plus className="h-4 w-4" />
|
|
<span className="sr-only">Increase</span>
|
|
</Button>
|
|
</div>
|
|
<div className="my-3 h-[60px]">
|
|
<ResponsiveContainer width="100%" height="100%">
|
|
<BarChart data={data}>
|
|
<Bar
|
|
dataKey="goal"
|
|
style={{
|
|
fill: `${twColourConfig.primary.DEFAULT}`,
|
|
opacity: 0.2,
|
|
}}
|
|
/>
|
|
</BarChart>
|
|
</ResponsiveContainer>
|
|
</div>
|
|
</CardContent>
|
|
<CardFooter>
|
|
<Button className="w-full">Set Goal</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|