mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-01 09:13:57 +00:00
WIP feat(admin-devices): enhance device management from admin with dynamic filters and improved blocking functionality
This commit is contained in:
@ -1,8 +1,8 @@
|
|||||||
"use server";
|
"use server";
|
||||||
|
|
||||||
|
import { revalidatePath } from "next/cache";
|
||||||
import type { GroupProfile, MacAddress, OmadaResponse } from "@/lib/types";
|
import type { GroupProfile, MacAddress, OmadaResponse } from "@/lib/types";
|
||||||
import { formatMacAddress } from "@/lib/utils";
|
import { formatMacAddress } from "@/lib/utils";
|
||||||
import { revalidatePath } from "next/cache";
|
|
||||||
|
|
||||||
async function fetchOmadaGroupProfiles(siteId: string): Promise<OmadaResponse> {
|
async function fetchOmadaGroupProfiles(siteId: string): Promise<OmadaResponse> {
|
||||||
if (!siteId) {
|
if (!siteId) {
|
||||||
|
@ -51,13 +51,6 @@ export default async function Devices({
|
|||||||
label: "Vendor",
|
label: "Vendor",
|
||||||
type: "string",
|
type: "string",
|
||||||
placeholder: "Enter vendor name",
|
placeholder: "Enter vendor name",
|
||||||
}, {
|
|
||||||
label: "Amount of Devices",
|
|
||||||
name: "amount",
|
|
||||||
type: "dual-range-slider",
|
|
||||||
min: 1,
|
|
||||||
max: 100,
|
|
||||||
sliderLabel: "MVR"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
import { AdminDevicesTable } from "@/components/admin/admin-devices-table";
|
|
||||||
import Search from "@/components/search";
|
|
||||||
import { Suspense } from "react";
|
import { Suspense } from "react";
|
||||||
|
import { AdminDevicesTable } from "@/components/admin/admin-devices-table";
|
||||||
|
import DynamicFilter from "@/components/generic-filter";
|
||||||
|
import Search from "@/components/search";
|
||||||
|
|
||||||
export default async function UserDevices({
|
export default async function UserDevices({
|
||||||
searchParams,
|
searchParams,
|
||||||
@ -19,17 +17,37 @@ export default async function UserDevices({
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<div className="flex justify-between items-center border rounded-md border-dashed font-bold title-bg py-4 px-2 mb-4">
|
<div className="flex justify-between items-center border rounded-md border-dashed font-bold title-bg py-4 px-2 mb-4">
|
||||||
<h3 className="text-sarLinkOrange text-2xl">
|
<h3 className="text-sarLinkOrange text-2xl">User Devices</h3>
|
||||||
User Devices
|
|
||||||
</h3>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
id="user-filters"
|
id="user-filters"
|
||||||
className=" pb-4 gap-4 flex sm:flex-row flex-col items-start justify-start"
|
className=" pb-4 gap-4 flex sm:flex-row flex-col items-start justify-start"
|
||||||
>
|
>
|
||||||
<Search />
|
<DynamicFilter
|
||||||
|
description="Filter devices by name, MAC address, or vendor."
|
||||||
|
title="Device Filter"
|
||||||
|
inputs={[
|
||||||
|
{
|
||||||
|
name: "name",
|
||||||
|
label: "Device Name",
|
||||||
|
type: "string",
|
||||||
|
placeholder: "Enter device name",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "mac",
|
||||||
|
label: "MAC Address",
|
||||||
|
type: "string",
|
||||||
|
placeholder: "Enter MAC address",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "vendor",
|
||||||
|
label: "Vendor",
|
||||||
|
type: "string",
|
||||||
|
placeholder: "Enter vendor name",
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<Suspense key={query} fallback={"loading...."}>
|
<Suspense key={query} fallback={"loading...."}>
|
||||||
<AdminDevicesTable parentalControl={true} searchParams={searchParams} />
|
<AdminDevicesTable parentalControl={true} searchParams={searchParams} />
|
||||||
|
@ -1,204 +1,181 @@
|
|||||||
// import {
|
import { HandCoins } from "lucide-react";
|
||||||
// Table,
|
import Link from "next/link";
|
||||||
// TableBody,
|
import { redirect } from "next/navigation";
|
||||||
// TableCaption,
|
import { getServerSession } from "next-auth";
|
||||||
// TableCell,
|
import { authOptions } from "@/app/auth";
|
||||||
// TableFooter,
|
import {
|
||||||
// TableHead,
|
Table,
|
||||||
// TableHeader,
|
TableBody,
|
||||||
// TableRow,
|
TableCaption,
|
||||||
// } from "@/components/ui/table";
|
TableCell,
|
||||||
// import { headers } from "next/headers";
|
TableFooter,
|
||||||
// import Link from "next/link";
|
TableHead,
|
||||||
// import BlockDeviceDialog from "../block-device-dialog";
|
TableHeader,
|
||||||
// import DeviceCard from "../device-card";
|
TableRow,
|
||||||
// import Pagination from "../pagination";
|
} from "@/components/ui/table";
|
||||||
|
import { cn } from "@/lib/utils";
|
||||||
|
import { getDevices } from "@/queries/devices";
|
||||||
|
import { tryCatch } from "@/utils/tryCatch";
|
||||||
|
import AddDevicesToCartButton from "../add-devices-to-cart-button";
|
||||||
|
import BlockDeviceDialog from "../block-device-dialog";
|
||||||
|
import ClientErrorMessage from "../client-error-message";
|
||||||
|
import DeviceCard from "../device-card";
|
||||||
|
import Pagination from "../pagination";
|
||||||
|
|
||||||
export async function AdminDevicesTable({
|
export async function AdminDevicesTable({
|
||||||
searchParams,
|
searchParams,
|
||||||
parentalControl,
|
parentalControl,
|
||||||
}: {
|
}: {
|
||||||
searchParams: Promise<{
|
searchParams: Promise<{
|
||||||
query: string;
|
[key: string]: unknown;
|
||||||
page: number;
|
|
||||||
sortBy: string;
|
|
||||||
}>;
|
}>;
|
||||||
parentalControl?: boolean;
|
parentalControl?: boolean;
|
||||||
}) {
|
}) {
|
||||||
console.log(parentalControl);
|
const resolvedParams = await searchParams;
|
||||||
// const session = await auth.api.getSession({
|
const session = await getServerSession(authOptions);
|
||||||
// headers: await headers(),
|
const isAdmin = session?.user?.is_superuser;
|
||||||
// });
|
|
||||||
// const isAdmin = session?.user.role === "ADMIN";
|
|
||||||
const query = (await searchParams)?.query || "";
|
|
||||||
const page = (await searchParams)?.page;
|
|
||||||
console.log(query, page);
|
|
||||||
// const sortBy = (await searchParams)?.sortBy || "asc";
|
|
||||||
// const totalDevices = await prisma.device.count({
|
|
||||||
// where: {
|
|
||||||
// OR: [
|
|
||||||
// {
|
|
||||||
// name: {
|
|
||||||
// contains: query || "",
|
|
||||||
// mode: "insensitive",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// mac: {
|
|
||||||
// contains: query || "",
|
|
||||||
// mode: "insensitive",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
|
|
||||||
// const totalPages = Math.ceil(totalDevices / 10);
|
const page = Number.parseInt(resolvedParams.page as string) || 1;
|
||||||
// const limit = 10;
|
const limit = 10;
|
||||||
// const offset = (Number(page) - 1) * limit || 0;
|
const offset = (page - 1) * limit;
|
||||||
|
|
||||||
// const devices = await prisma.device.findMany({
|
// Build params object for getDevices
|
||||||
// where: {
|
const apiParams: Record<string, string | number | undefined> = {};
|
||||||
// OR: [
|
for (const [key, value] of Object.entries(resolvedParams)) {
|
||||||
// {
|
if (value !== undefined && value !== "") {
|
||||||
// name: {
|
apiParams[key] = typeof value === "number" ? value : String(value);
|
||||||
// contains: query || "",
|
}
|
||||||
// mode: "insensitive",
|
}
|
||||||
// },
|
apiParams.limit = limit;
|
||||||
// },
|
apiParams.offset = offset;
|
||||||
// {
|
|
||||||
// mac: {
|
|
||||||
// contains: query || "",
|
|
||||||
// mode: "insensitive",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
// include: {
|
|
||||||
// User: true,
|
|
||||||
// payments: true,
|
|
||||||
// },
|
|
||||||
// skip: offset,
|
|
||||||
// take: limit,
|
|
||||||
// orderBy: {
|
|
||||||
// name: `${sortBy}` as "asc" | "desc",
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
return null;
|
|
||||||
// return (
|
|
||||||
// <div>
|
|
||||||
// {devices.length === 0 ? (
|
|
||||||
// <div className="h-[calc(100svh-400px)] flex flex-col items-center justify-center my-4">
|
|
||||||
// <h3>No devices yet.</h3>
|
|
||||||
// </div>
|
|
||||||
// ) : (
|
|
||||||
// <>
|
|
||||||
// <div className="hidden sm:block">
|
|
||||||
// <Table className="overflow-scroll">
|
|
||||||
// <TableCaption>Table of all devices.</TableCaption>
|
|
||||||
// <TableHeader>
|
|
||||||
// <TableRow>
|
|
||||||
// <TableHead>Device Name</TableHead>
|
|
||||||
// <TableHead>User</TableHead>
|
|
||||||
// <TableHead>MAC Address</TableHead>
|
|
||||||
// <TableHead>isActive</TableHead>
|
|
||||||
// <TableHead>blocked</TableHead>
|
|
||||||
// <TableHead>blockedBy</TableHead>
|
|
||||||
// <TableHead>expiryDate</TableHead>
|
|
||||||
// </TableRow>
|
|
||||||
// </TableHeader>
|
|
||||||
// <TableBody className="overflow-scroll">
|
|
||||||
// {devices.map((device) => (
|
|
||||||
// <TableRow key={device.id}>
|
|
||||||
// <TableCell>
|
|
||||||
// <div className="flex flex-col items-start">
|
|
||||||
// <Link
|
|
||||||
// className="font-medium hover:underline"
|
|
||||||
// href={`/devices/${device.id}`}
|
|
||||||
// >
|
|
||||||
// {device.name}
|
|
||||||
// </Link>
|
|
||||||
// {device.isActive && (
|
|
||||||
// <span className="text-muted-foreground">
|
|
||||||
// Active until{" "}
|
|
||||||
// {new Date().toLocaleDateString("en-US", {
|
|
||||||
// month: "short",
|
|
||||||
// day: "2-digit",
|
|
||||||
// year: "numeric",
|
|
||||||
// })}
|
|
||||||
// </span>
|
|
||||||
// )}
|
|
||||||
|
|
||||||
// {device.blocked && (
|
const [error, devices] = await tryCatch(
|
||||||
// <div className="p-2 rounded border my-2">
|
getDevices(apiParams, true),
|
||||||
// <span>Comment: </span>
|
);
|
||||||
// <p className="text-neutral-500">
|
if (error) {
|
||||||
// blocked because he was watching youtube
|
if (error.message === "UNAUTHORIZED") {
|
||||||
// </p>
|
redirect("/auth/signin");
|
||||||
// </div>
|
} else {
|
||||||
// )}
|
return <ClientErrorMessage message={error.message} />;
|
||||||
// </div>
|
}
|
||||||
// </TableCell>
|
}
|
||||||
// <TableCell className="font-medium">
|
const { meta, data } = devices;
|
||||||
// {device.User?.name}
|
return (
|
||||||
// </TableCell>
|
<div>
|
||||||
|
{data?.length === 0 ? (
|
||||||
|
<div className="h-[calc(100svh-400px)] text-muted-foreground flex flex-col items-center justify-center my-4">
|
||||||
|
<h3>No devices.</h3>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<div className="hidden sm:block">
|
||||||
|
<Table className="overflow-scroll">
|
||||||
|
<TableCaption>Table of all devices.</TableCaption>
|
||||||
|
<TableHeader>
|
||||||
|
<TableRow>
|
||||||
|
<TableHead>Device Name</TableHead>
|
||||||
|
<TableHead>User</TableHead>
|
||||||
|
<TableHead>MAC Address</TableHead>
|
||||||
|
<TableHead>Vendor</TableHead>
|
||||||
|
<TableHead>#</TableHead>
|
||||||
|
</TableRow>
|
||||||
|
</TableHeader>
|
||||||
|
<TableBody className="overflow-scroll">
|
||||||
|
{data?.map((device) => (
|
||||||
|
<TableRow
|
||||||
|
key={device.id}
|
||||||
|
>
|
||||||
|
<TableCell>
|
||||||
|
<div className="flex flex-col items-start">
|
||||||
|
<Link
|
||||||
|
className={cn(
|
||||||
|
"hover:underline font-semibold",
|
||||||
|
device.is_active ? "text-green-600" : "",
|
||||||
|
)}
|
||||||
|
href={`/devices/${device.id}`}
|
||||||
|
>
|
||||||
|
{device.name}
|
||||||
|
</Link>
|
||||||
|
{device.is_active ? (
|
||||||
|
<div className="text-muted-foreground">
|
||||||
|
Active until{" "}
|
||||||
|
<span className="font-semibold">
|
||||||
|
{new Date(device.expiry_date || "").toLocaleDateString(
|
||||||
|
"en-US",
|
||||||
|
{
|
||||||
|
month: "short",
|
||||||
|
day: "2-digit",
|
||||||
|
year: "numeric",
|
||||||
|
},
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<p className="text-muted-foreground">Device Inactive</p>
|
||||||
|
)}
|
||||||
|
{device.has_a_pending_payment && (
|
||||||
|
<Link href={`/payments/${device.pending_payment_id}`}>
|
||||||
|
<span className="bg-muted rounded px-2 p-1 mt-2 flex hover:underline items-center justify-center gap-2 text-muted-foreground">
|
||||||
|
Payment Pending{" "}
|
||||||
|
<HandCoins className="animate-pulse" size={14} />
|
||||||
|
</span>
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
|
||||||
// <TableCell className="font-medium">{device.mac}</TableCell>
|
{device.blocked_by === "ADMIN" && device.blocked && (
|
||||||
// <TableCell>
|
<div className="p-2 rounded border my-2 bg-white dark:bg-neutral-800 shadow">
|
||||||
// {device.isActive ? "Active" : "Inactive"}
|
<span className="font-semibold">Comment</span>
|
||||||
// </TableCell>
|
<p className="text-neutral-400">{device?.reason_for_blocking}</p>
|
||||||
// <TableCell>
|
</div>
|
||||||
// {device.blocked ? "Blocked" : "Not Blocked"}
|
)}
|
||||||
// </TableCell>
|
</div>
|
||||||
// <TableCell>
|
</TableCell>
|
||||||
// {device.blocked ? device.blockedBy : ""}
|
<TableCell className="font-medium">{device.user}</TableCell>
|
||||||
// </TableCell>
|
<TableCell className="font-medium">{device.mac}</TableCell>
|
||||||
// <TableCell>
|
<TableCell className="font-medium">{device?.vendor}</TableCell>
|
||||||
// {new Date().toLocaleDateString("en-US", {
|
<TableCell>
|
||||||
// month: "short",
|
<BlockDeviceDialog
|
||||||
// day: "2-digit",
|
admin={isAdmin}
|
||||||
// year: "numeric",
|
type={device.blocked ? "unblock" : "block"}
|
||||||
// })}
|
device={device}
|
||||||
// </TableCell>
|
/>
|
||||||
// <TableCell>
|
</TableCell>
|
||||||
// <BlockDeviceDialog
|
</TableRow>
|
||||||
// admin={isAdmin}
|
))}
|
||||||
// type={device.blocked ? "unblock" : "block"}
|
</TableBody>
|
||||||
// device={device}
|
<TableFooter>
|
||||||
// />
|
<TableRow>
|
||||||
// </TableCell>
|
<TableCell colSpan={5} className="text-muted-foreground">
|
||||||
// </TableRow>
|
{meta?.total === 1 ? (
|
||||||
// ))}
|
<p className="text-center">
|
||||||
// </TableBody>
|
Total {meta?.total} device.
|
||||||
// <TableFooter>
|
</p>
|
||||||
// <TableRow>
|
) : (
|
||||||
// <TableCell colSpan={7}>
|
<p className="text-center">
|
||||||
// {query.length > 0 && (
|
Total {meta?.total} devices.
|
||||||
// <p className="text-sm text-muted-foreground">
|
</p>
|
||||||
// Showing {devices.length} locations for "{query}
|
)}
|
||||||
// "
|
</TableCell>
|
||||||
// </p>
|
</TableRow>
|
||||||
// )}
|
</TableFooter>
|
||||||
// </TableCell>
|
</Table>
|
||||||
// <TableCell className="text-muted-foreground">
|
</div>
|
||||||
// {totalDevices} devices
|
<div className="sm:hidden my-4">
|
||||||
// </TableCell>
|
{data?.map((device) => (
|
||||||
// </TableRow>
|
<DeviceCard
|
||||||
// </TableFooter>
|
parentalControl={parentalControl}
|
||||||
// </Table>
|
key={device.id}
|
||||||
// <Pagination totalPages={totalPages} currentPage={page} />
|
device={device}
|
||||||
// </div>
|
/>
|
||||||
// <div className="sm:hidden my-4">
|
))}
|
||||||
// {devices.map((device) => (
|
</div>
|
||||||
// <DeviceCard
|
<Pagination
|
||||||
// parentalControl={parentalControl}
|
totalPages={meta?.last_page}
|
||||||
// key={device.id}
|
currentPage={meta?.current_page}
|
||||||
// device={device}
|
/>
|
||||||
// />
|
</>
|
||||||
// ))}
|
)
|
||||||
// </div>
|
}
|
||||||
// </>
|
</div >
|
||||||
// )}
|
);
|
||||||
// </div>
|
|
||||||
// );
|
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
|
|
||||||
|
import { zodResolver } from "@hookform/resolvers/zod";
|
||||||
|
import { OctagonX } from "lucide-react";
|
||||||
|
import { useState } from "react";
|
||||||
|
import { type SubmitHandler, useForm } from "react-hook-form";
|
||||||
|
import { toast } from "sonner";
|
||||||
|
import { z } from "zod";
|
||||||
import { blockDevice as BlockDeviceFromOmada } from "@/actions/omada-actions";
|
import { blockDevice as BlockDeviceFromOmada } from "@/actions/omada-actions";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import {
|
import {
|
||||||
@ -14,13 +21,6 @@ import { Label } from "@/components/ui/label";
|
|||||||
import type { Device } from "@/lib/backend-types";
|
import type { Device } from "@/lib/backend-types";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import { blockDevice } from "@/queries/devices";
|
import { blockDevice } from "@/queries/devices";
|
||||||
|
|
||||||
import { zodResolver } from "@hookform/resolvers/zod";
|
|
||||||
import { OctagonX } from "lucide-react";
|
|
||||||
import { useState } from "react";
|
|
||||||
import { type SubmitHandler, useForm } from "react-hook-form";
|
|
||||||
import { toast } from "sonner";
|
|
||||||
import { z } from "zod";
|
|
||||||
import { TextShimmer } from "./ui/text-shimmer";
|
import { TextShimmer } from "./ui/text-shimmer";
|
||||||
import { Textarea } from "./ui/textarea";
|
import { Textarea } from "./ui/textarea";
|
||||||
|
|
||||||
@ -44,7 +44,7 @@ export default function BlockDeviceDialog({
|
|||||||
|
|
||||||
const onSubmit: SubmitHandler<z.infer<typeof validationSchema>> = (data) => {
|
const onSubmit: SubmitHandler<z.infer<typeof validationSchema>> = (data) => {
|
||||||
setDisabled(true);
|
setDisabled(true);
|
||||||
console.log(data);
|
console.log("data in block device dialog", data);
|
||||||
toast.promise(
|
toast.promise(
|
||||||
blockDevice({
|
blockDevice({
|
||||||
deviceId: String(device.id),
|
deviceId: String(device.id),
|
||||||
@ -59,8 +59,9 @@ export default function BlockDeviceDialog({
|
|||||||
return "Blocked!";
|
return "Blocked!";
|
||||||
},
|
},
|
||||||
error: (error) => {
|
error: (error) => {
|
||||||
|
console.error("Error blocking device:", error);
|
||||||
setDisabled(false);
|
setDisabled(false);
|
||||||
return error || "Something went wrong";
|
return error.message || "Something went wrong";
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
@ -74,10 +75,10 @@ export default function BlockDeviceDialog({
|
|||||||
onClick={() => {
|
onClick={() => {
|
||||||
setDisabled(true);
|
setDisabled(true);
|
||||||
toast.promise(
|
toast.promise(
|
||||||
BlockDeviceFromOmada({
|
blockDevice({
|
||||||
macAddress: device.mac,
|
blocked_by: "ADMIN",
|
||||||
type: "unblock",
|
deviceId: String(device.id),
|
||||||
reason: "",
|
reason_for_blocking: "",
|
||||||
}),
|
}),
|
||||||
{
|
{
|
||||||
loading: "unblockinig...",
|
loading: "unblockinig...",
|
||||||
@ -85,9 +86,9 @@ export default function BlockDeviceDialog({
|
|||||||
setDisabled(false);
|
setDisabled(false);
|
||||||
return "Unblocked!";
|
return "Unblocked!";
|
||||||
},
|
},
|
||||||
error: () => {
|
error: (error) => {
|
||||||
setDisabled(false);
|
setDisabled(false);
|
||||||
return "Something went wrong";
|
return error.message || "Something went wrong";
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
@ -96,84 +97,53 @@ export default function BlockDeviceDialog({
|
|||||||
{disabled ? <TextShimmer>Unblocking</TextShimmer> : "Unblock"}
|
{disabled ? <TextShimmer>Unblocking</TextShimmer> : "Unblock"}
|
||||||
</Button>
|
</Button>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<div>
|
||||||
{!admin ? (
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
<Button
|
<DialogTrigger asChild>
|
||||||
variant={"destructive"}
|
<Button disabled={disabled} variant="destructive">
|
||||||
onClick={() => {
|
<OctagonX />
|
||||||
setDisabled(true);
|
Block
|
||||||
toast.promise(
|
</Button>
|
||||||
BlockDeviceFromOmada({
|
</DialogTrigger>
|
||||||
macAddress: device.mac,
|
<DialogContent className="sm:max-w-[425px]">
|
||||||
type: "block",
|
<DialogHeader>
|
||||||
reason: "",
|
<DialogTitle className="text-muted-foreground">
|
||||||
blockedBy: "PARENT",
|
Reason for blocking this device 🚫
|
||||||
}),
|
</DialogTitle>
|
||||||
{
|
</DialogHeader>
|
||||||
loading: "blocking...",
|
<form onSubmit={handleSubmit(onSubmit)}>
|
||||||
success: () => {
|
<div className="grid gap-2 py-2">
|
||||||
setDisabled(false);
|
<div className="flex flex-col items-start gap-4">
|
||||||
return "blocked!";
|
<Label htmlFor="reason" className="text-right text-muted-foreground">
|
||||||
},
|
Reason for blocking
|
||||||
error: () => {
|
</Label>
|
||||||
setDisabled(false);
|
<Textarea
|
||||||
return "Something went wrong";
|
rows={10}
|
||||||
},
|
{...register("reasonForBlocking")}
|
||||||
},
|
id="reasonForBlocking"
|
||||||
);
|
className={cn(
|
||||||
}}
|
"col-span-5",
|
||||||
>
|
errors.reasonForBlocking && "ring-2 ring-red-500",
|
||||||
<OctagonX />
|
)}
|
||||||
{disabled ? <TextShimmer>Blocking</TextShimmer> : "Block"}
|
/>
|
||||||
</Button>
|
<span className="text-sm text-red-500">
|
||||||
) : (
|
{errors.reasonForBlocking?.message}
|
||||||
<Dialog open={open} onOpenChange={setOpen}>
|
</span>
|
||||||
<DialogTrigger asChild>
|
|
||||||
<Button disabled={disabled} variant="destructive">
|
|
||||||
<OctagonX />
|
|
||||||
Block
|
|
||||||
</Button>
|
|
||||||
</DialogTrigger>
|
|
||||||
<DialogContent className="sm:max-w-[425px]">
|
|
||||||
<DialogHeader>
|
|
||||||
<DialogTitle>
|
|
||||||
Please provide a reason for blocking this device.
|
|
||||||
</DialogTitle>
|
|
||||||
</DialogHeader>
|
|
||||||
<form onSubmit={handleSubmit(onSubmit)}>
|
|
||||||
<div className="grid gap-4 py-4">
|
|
||||||
<div className="flex flex-col items-start gap-1">
|
|
||||||
<Label htmlFor="reason" className="text-right">
|
|
||||||
Reason for blocking
|
|
||||||
</Label>
|
|
||||||
<Textarea
|
|
||||||
rows={10}
|
|
||||||
{...register("reasonForBlocking")}
|
|
||||||
id="reasonForBlocking"
|
|
||||||
className={cn(
|
|
||||||
"col-span-5",
|
|
||||||
errors.reasonForBlocking && "ring-2 ring-red-500",
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
<span className="text-sm text-red-500">
|
|
||||||
{errors.reasonForBlocking?.message}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<DialogFooter>
|
</div>
|
||||||
<Button
|
<DialogFooter>
|
||||||
variant={"destructive"}
|
<Button
|
||||||
disabled={disabled}
|
variant={"destructive"}
|
||||||
type="submit"
|
disabled={disabled}
|
||||||
>
|
type="submit"
|
||||||
Block
|
>
|
||||||
</Button>
|
Block
|
||||||
</DialogFooter>
|
</Button>
|
||||||
</form>
|
</DialogFooter>
|
||||||
</DialogContent>
|
</form>
|
||||||
</Dialog>
|
</DialogContent>
|
||||||
)}
|
</Dialog>
|
||||||
</>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
import { useAtom } from "jotai";
|
||||||
|
import { HandCoins } from "lucide-react";
|
||||||
|
import Link from "next/link";
|
||||||
import { TableCell, TableRow } from "@/components/ui/table";
|
import { TableCell, TableRow } from "@/components/ui/table";
|
||||||
import { deviceCartAtom } from "@/lib/atoms";
|
import { deviceCartAtom } from "@/lib/atoms";
|
||||||
import type { Device } from "@/lib/backend-types";
|
import type { Device } from "@/lib/backend-types";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import { useAtom } from "jotai";
|
|
||||||
import { HandCoins } from "lucide-react";
|
|
||||||
import Link from "next/link";
|
|
||||||
import AddDevicesToCartButton from "./add-devices-to-cart-button";
|
import AddDevicesToCartButton from "./add-devices-to-cart-button";
|
||||||
import BlockDeviceDialog from "./block-device-dialog";
|
import BlockDeviceDialog from "./block-device-dialog";
|
||||||
export default function ClickableRow({
|
export default function ClickableRow({
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
"use server";
|
"use server";
|
||||||
|
|
||||||
|
import { revalidatePath } from "next/cache";
|
||||||
|
import { getServerSession } from "next-auth";
|
||||||
import { authOptions } from "@/app/auth";
|
import { authOptions } from "@/app/auth";
|
||||||
import type { AddDeviceFormState, initialState } from "@/components/user/add-device-dialog";
|
import type { AddDeviceFormState, initialState } from "@/components/user/add-device-dialog";
|
||||||
import type { ApiError, ApiResponse, Device } from "@/lib/backend-types";
|
import type { ApiError, ApiResponse, Device } from "@/lib/backend-types";
|
||||||
import { checkSession } from "@/utils/session";
|
import { checkSession } from "@/utils/session";
|
||||||
import { handleApiResponse } from "@/utils/tryCatch";
|
import { handleApiResponse } from "@/utils/tryCatch";
|
||||||
import { getServerSession } from "next-auth";
|
|
||||||
import { revalidatePath } from "next/cache";
|
|
||||||
|
|
||||||
type GetDevicesProps = {
|
type GetDevicesProps = {
|
||||||
name?: string;
|
name?: string;
|
||||||
@ -17,7 +17,7 @@ type GetDevicesProps = {
|
|||||||
status?: string;
|
status?: string;
|
||||||
[key: string]: string | number | undefined; // Allow additional properties for flexibility
|
[key: string]: string | number | undefined; // Allow additional properties for flexibility
|
||||||
};
|
};
|
||||||
export async function getDevices(params: GetDevicesProps) {
|
export async function getDevices(params: GetDevicesProps, allDevices = false) {
|
||||||
const session = await checkSession();
|
const session = await checkSession();
|
||||||
|
|
||||||
// Build query string from all defined params
|
// Build query string from all defined params
|
||||||
@ -27,7 +27,7 @@ export async function getDevices(params: GetDevicesProps) {
|
|||||||
.join("&");
|
.join("&");
|
||||||
|
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
`${process.env.SARLINK_API_BASE_URL}/api/devices/?${query}`,
|
`${process.env.SARLINK_API_BASE_URL}/api/devices/?${query}&all_devices=${allDevices}`,
|
||||||
{
|
{
|
||||||
method: "GET",
|
method: "GET",
|
||||||
headers: {
|
headers: {
|
||||||
@ -123,6 +123,7 @@ export async function blockDevice({
|
|||||||
reason_for_blocking: string;
|
reason_for_blocking: string;
|
||||||
blocked_by: "ADMIN" | "PARENT";
|
blocked_by: "ADMIN" | "PARENT";
|
||||||
}) {
|
}) {
|
||||||
|
console.log("Blocking device:", deviceId, reason_for_blocking, blocked_by);
|
||||||
const session = await getServerSession(authOptions);
|
const session = await getServerSession(authOptions);
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
`${process.env.SARLINK_API_BASE_URL}/api/devices/${deviceId}/block/`,
|
`${process.env.SARLINK_API_BASE_URL}/api/devices/${deviceId}/block/`,
|
||||||
|
Reference in New Issue
Block a user