diff --git a/README.md b/README.md index 4d1e2a6..23e4045 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,12 @@ This is a web portal for SAR Link customers. ## User Menu ### Devices - [x] Add mac vendor validation for adding devices - - [ ] Add all the filters for devices table (mobile responsive) + - [x] Add all the filters for devices table (mobile responsive) + - [x] Add cancel feature to selected devices floating button -### Payments - - [ ] Show payments table - - [ ] Add all the filters for payment table (mobile responsive) + ### Payments + - [x] Show payments table + - [x] Add all the filters for payment table (mobile responsive) - [ ] Fix bill formula linking for generated payments ### Parental Control diff --git a/components/device-cart.tsx b/components/device-cart.tsx index f226eef..f1d5669 100644 --- a/components/device-cart.tsx +++ b/components/device-cart.tsx @@ -1,14 +1,14 @@ "use client"; -import { Button } from "@/components/ui/button"; -import { deviceCartAtom } from "@/lib/atoms"; -import { useAtomValue } from "jotai"; +import { useAtom } from "jotai"; import { MonitorSmartphone } from "lucide-react"; import { usePathname, useRouter } from "next/navigation"; +import { Button } from "@/components/ui/button"; +import { deviceCartAtom } from "@/lib/atoms"; export function DeviceCartDrawer() { const pathname = usePathname(); - const devices = useAtomValue(deviceCartAtom); + const [devices, setDevices] = useAtom(deviceCartAtom); const router = useRouter(); if (pathname === "/payment" || pathname === "/devices-to-pay") { return null; @@ -16,14 +16,23 @@ export function DeviceCartDrawer() { if (devices.length === 0) return null; return ( - +
+ + +
); } diff --git a/components/devices-for-payment.tsx b/components/devices-for-payment.tsx index a554b9f..0bc0c82 100644 --- a/components/devices-for-payment.tsx +++ b/components/devices-for-payment.tsx @@ -46,7 +46,7 @@ export default function DevicesForPayment() { }; if (disabled) { - return + return ; } return (