mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-01 15:23:58 +00:00
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m13s
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { authOptions } from "@/app/auth";
|
|
import { DevicesTable } from "@/components/devices-table";
|
|
import DeviceFilter from "@/components/devices/device-filter";
|
|
import AddDeviceDialogForm from "@/components/user/add-device-dialog";
|
|
import { getServerSession } from "next-auth";
|
|
import { redirect } from "next/navigation";
|
|
import { Suspense } from "react";
|
|
import DevicesTableSkeleton from "./device-table-skeleton";
|
|
|
|
export default async function Devices({
|
|
searchParams,
|
|
}: {
|
|
searchParams: Promise<{
|
|
query: string;
|
|
page: number;
|
|
}>;
|
|
}) {
|
|
const query = (await searchParams)?.query || "";
|
|
const page = (await searchParams)?.page || 1;
|
|
const session = await getServerSession(authOptions);
|
|
if (session?.user?.is_admin) return redirect("/user-devices");
|
|
return (
|
|
<div>
|
|
<div className="flex justify-between items-center border-[1px] rounded-md border-dashed font-bold title-bg py-4 px-2 mb-4">
|
|
<h3 className="text-sarLinkOrange text-2xl">My Devices</h3>
|
|
<AddDeviceDialogForm user_id={session?.user?.id} />
|
|
</div>
|
|
<div
|
|
id="user-filters"
|
|
className=" pb-4 gap-4 flex sm:flex-row flex-col items-start justify-endO"
|
|
>
|
|
<DeviceFilter />
|
|
</div>
|
|
<Suspense key={query || page} fallback={<DevicesTableSkeleton />}>
|
|
<DevicesTable parentalControl={false} searchParams={searchParams} />
|
|
</Suspense>
|
|
</div>
|
|
);
|
|
}
|