Initial commit for new panel

This commit is contained in:
AmirReza Jamali
2025-09-09 11:20:26 +03:30
commit 1d4ccb3575
343 changed files with 20031 additions and 0 deletions
@@ -0,0 +1,37 @@
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 p-7.5 shadow-1 dark:bg-gray-dark dark:shadow-card",
className,
)}
>
<div className="flex flex-wrap items-center justify-between gap-4">
<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">
<DonutChart data={data} />
</div>
</div>
);
}