Files
tm_panel/src/components/Charts/used-devices/index.tsx
T

38 lines
1010 B
TypeScript

import { PeriodPicker } from "@/components/period-picker";
import { cn } from "@/lib/utils";
import { getDevicesUsedData } from "@/services/charts.services";
import { DonutChart } from "./chart";
type PropsType = {
timeFrame?: string;
className?: string;
};
export async function UsedDevices({
timeFrame = "monthly",
className,
}: PropsType) {
const data = await getDevicesUsedData(timeFrame);
return (
<div
className={cn(
"grid grid-cols-1 grid-rows-[auto_1fr] gap-9 rounded-[10px] bg-white shadow-1 dark:bg-gray-dark dark:shadow-card",
className,
)}
>
<div className="flex flex-wrap items-center justify-between gap-4 p-7.5">
<h2 className="text-body-2xlg font-bold text-dark dark:text-white">
Used Devices
</h2>
<PeriodPicker defaultValue={timeFrame} sectionKey="used_devices" />
</div>
<div className="grid place-items-center pb-7.5">
<DonutChart data={data} />
</div>
</div>
);
}