573 lines
17 KiB
TypeScript
573 lines
17 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import {
|
|
IconChevronDown,
|
|
IconChevronLeft,
|
|
IconChevronRight,
|
|
IconChevronsLeft,
|
|
IconChevronsRight,
|
|
IconDotsVertical,
|
|
IconLayoutColumns,
|
|
IconSearch,
|
|
} from "@tabler/icons-react";
|
|
import { toast } from "sonner";
|
|
import { useRouter } from "next/navigation";
|
|
import {
|
|
updateServiceStatus,
|
|
deleteServices,
|
|
deleteService,
|
|
duplicateService,
|
|
} from "@/lib/actions/admin-actions";
|
|
import {
|
|
ColumnDef,
|
|
ColumnFiltersState,
|
|
flexRender,
|
|
getCoreRowModel,
|
|
getFacetedRowModel,
|
|
getFacetedUniqueValues,
|
|
getFilteredRowModel,
|
|
getPaginationRowModel,
|
|
getSortedRowModel,
|
|
SortingState,
|
|
useReactTable,
|
|
VisibilityState,
|
|
} from "@tanstack/react-table";
|
|
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuCheckboxItem,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow,
|
|
} from "@/components/ui/table";
|
|
|
|
type Service = {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
duration: number;
|
|
price: string;
|
|
category: string;
|
|
isActive: boolean;
|
|
createdAt: Date;
|
|
appointments: Array<{
|
|
id: string;
|
|
}>;
|
|
};
|
|
|
|
const columns: ColumnDef<Service>[] = [
|
|
{
|
|
id: "select",
|
|
header: ({ table }) => (
|
|
<div className="flex items-center justify-center">
|
|
<Checkbox
|
|
checked={
|
|
table.getIsAllPageRowsSelected() ||
|
|
(table.getIsSomePageRowsSelected() && "indeterminate")
|
|
}
|
|
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
|
|
aria-label="Select all"
|
|
/>
|
|
</div>
|
|
),
|
|
cell: ({ row }) => (
|
|
<div className="flex items-center justify-center">
|
|
<Checkbox
|
|
checked={row.getIsSelected()}
|
|
onCheckedChange={(value) => row.toggleSelected(!!value)}
|
|
aria-label="Select row"
|
|
/>
|
|
</div>
|
|
),
|
|
enableSorting: false,
|
|
enableHiding: false,
|
|
},
|
|
{
|
|
accessorKey: "name",
|
|
header: "Service Name",
|
|
cell: ({ row }) => (
|
|
<div>
|
|
<p className="font-medium">{row.original.name}</p>
|
|
<p className="text-xs text-muted-foreground line-clamp-1">
|
|
{row.original.description}
|
|
</p>
|
|
</div>
|
|
),
|
|
enableHiding: false,
|
|
},
|
|
{
|
|
accessorKey: "category",
|
|
header: "Category",
|
|
cell: ({ row }) => (
|
|
<Badge variant="outline" className="text-xs">
|
|
{row.original.category}
|
|
</Badge>
|
|
),
|
|
},
|
|
{
|
|
accessorKey: "duration",
|
|
header: "Duration",
|
|
cell: ({ row }) => `${row.original.duration} mins`,
|
|
},
|
|
{
|
|
accessorKey: "price",
|
|
header: () => <div className="text-right">Price</div>,
|
|
cell: ({ row }) => (
|
|
<div className="text-right font-medium">
|
|
{row.original.price || "N/A"}
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
accessorKey: "bookings",
|
|
header: "Bookings",
|
|
cell: ({ row }) => row.original.appointments.length,
|
|
},
|
|
{
|
|
accessorKey: "isActive",
|
|
header: "Status",
|
|
cell: ({ row }) => (
|
|
<Badge
|
|
variant={row.original.isActive ? "default" : "secondary"}
|
|
className="text-xs"
|
|
>
|
|
{row.original.isActive ? "Active" : "Inactive"}
|
|
</Badge>
|
|
),
|
|
},
|
|
];
|
|
|
|
type AdminServicesTableProps = {
|
|
services: Service[];
|
|
};
|
|
|
|
export function AdminServicesTable({ services }: AdminServicesTableProps) {
|
|
const router = useRouter();
|
|
const [rowSelection, setRowSelection] = React.useState({});
|
|
const [columnVisibility, setColumnVisibility] =
|
|
React.useState<VisibilityState>({});
|
|
const [columnFilters, setColumnFilters] = React.useState<ColumnFiltersState>(
|
|
[]
|
|
);
|
|
const [sorting, setSorting] = React.useState<SortingState>([]);
|
|
const [pagination, setPagination] = React.useState({
|
|
pageIndex: 0,
|
|
pageSize: 10,
|
|
});
|
|
const [isLoading, setIsLoading] = React.useState(false);
|
|
|
|
const handleServiceAction = async (
|
|
action: () => Promise<{ success: boolean; message: string }>,
|
|
actionName: string
|
|
) => {
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await action();
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
router.refresh();
|
|
} else {
|
|
toast.error(result.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error(`Failed to ${actionName}`);
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleBulkAction = async (
|
|
action: (ids: string[]) => Promise<{ success: boolean; message: string }>,
|
|
actionName: string
|
|
) => {
|
|
const selectedRows = table.getFilteredSelectedRowModel().rows;
|
|
const ids = selectedRows.map((row) => row.original.id);
|
|
|
|
if (ids.length === 0) {
|
|
toast.error("No services selected");
|
|
return;
|
|
}
|
|
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await action(ids);
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
setRowSelection({});
|
|
router.refresh();
|
|
} else {
|
|
toast.error(result.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error(`Failed to ${actionName}`);
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const actionsColumn: ColumnDef<Service> = {
|
|
id: "actions",
|
|
cell: ({ row }) => (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
className="data-[state=open]:bg-muted text-muted-foreground flex size-8"
|
|
size="icon"
|
|
disabled={isLoading}
|
|
>
|
|
<IconDotsVertical />
|
|
<span className="sr-only">Open menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-40">
|
|
<DropdownMenuItem
|
|
onClick={() => toast.info("Edit feature coming soon")}
|
|
>
|
|
Edit Service
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
onClick={() =>
|
|
handleServiceAction(
|
|
() => duplicateService(row.original.id),
|
|
"duplicate service"
|
|
)
|
|
}
|
|
>
|
|
Duplicate
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem
|
|
onClick={() =>
|
|
handleServiceAction(
|
|
() =>
|
|
updateServiceStatus(
|
|
[row.original.id],
|
|
!row.original.isActive
|
|
),
|
|
"toggle service status"
|
|
)
|
|
}
|
|
>
|
|
{row.original.isActive ? "Deactivate" : "Activate"}
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem
|
|
variant="destructive"
|
|
onClick={() =>
|
|
handleServiceAction(
|
|
() => deleteService(row.original.id),
|
|
"delete service"
|
|
)
|
|
}
|
|
>
|
|
Delete
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
),
|
|
};
|
|
|
|
const columnsWithActions = [...columns, actionsColumn];
|
|
|
|
const table = useReactTable({
|
|
data: services,
|
|
columns: columnsWithActions,
|
|
state: {
|
|
sorting,
|
|
columnVisibility,
|
|
rowSelection,
|
|
columnFilters,
|
|
pagination,
|
|
},
|
|
enableRowSelection: true,
|
|
onRowSelectionChange: setRowSelection,
|
|
onSortingChange: setSorting,
|
|
onColumnFiltersChange: setColumnFilters,
|
|
onColumnVisibilityChange: setColumnVisibility,
|
|
onPaginationChange: setPagination,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
getSortedRowModel: getSortedRowModel(),
|
|
getFacetedRowModel: getFacetedRowModel(),
|
|
getFacetedUniqueValues: getFacetedUniqueValues(),
|
|
});
|
|
|
|
return (
|
|
<div className="flex flex-col gap-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="relative w-full max-w-sm">
|
|
<IconSearch className="absolute left-2 top-2.5 size-4 text-muted-foreground" />
|
|
<Input
|
|
placeholder="Search services..."
|
|
value={(table.getColumn("name")?.getFilterValue() as string) ?? ""}
|
|
onChange={(event) =>
|
|
table.getColumn("name")?.setFilterValue(event.target.value)
|
|
}
|
|
className="pl-8"
|
|
/>
|
|
</div>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline" size="sm">
|
|
<IconLayoutColumns />
|
|
<span className="hidden lg:inline">Columns</span>
|
|
<IconChevronDown />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-56">
|
|
{table
|
|
.getAllColumns()
|
|
.filter(
|
|
(column) =>
|
|
typeof column.accessorFn !== "undefined" &&
|
|
column.getCanHide()
|
|
)
|
|
.map((column) => {
|
|
return (
|
|
<DropdownMenuCheckboxItem
|
|
key={column.id}
|
|
className="capitalize"
|
|
checked={column.getIsVisible()}
|
|
onCheckedChange={(value) =>
|
|
column.toggleVisibility(!!value)
|
|
}
|
|
>
|
|
{column.id}
|
|
</DropdownMenuCheckboxItem>
|
|
);
|
|
})}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
|
|
{/* Bulk Actions Toolbar */}
|
|
{table.getFilteredSelectedRowModel().rows.length > 0 && (
|
|
<div className="flex items-center gap-2 rounded-lg border bg-muted/50 p-2">
|
|
<span className="text-sm font-medium">
|
|
{table.getFilteredSelectedRowModel().rows.length} selected
|
|
</span>
|
|
<div className="ml-auto flex items-center gap-2">
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
disabled={isLoading}
|
|
onClick={() =>
|
|
handleBulkAction(
|
|
(ids) => updateServiceStatus(ids, true),
|
|
"activate services"
|
|
)
|
|
}
|
|
>
|
|
Activate Selected
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
disabled={isLoading}
|
|
onClick={() =>
|
|
handleBulkAction(
|
|
(ids) => updateServiceStatus(ids, false),
|
|
"deactivate services"
|
|
)
|
|
}
|
|
>
|
|
Deactivate Selected
|
|
</Button>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline" size="sm" disabled={isLoading}>
|
|
More Actions
|
|
<IconChevronDown />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem
|
|
onClick={() => toast.info("Duplicate feature coming soon")}
|
|
>
|
|
Duplicate Selected
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
onClick={() =>
|
|
toast.info("Update prices feature coming soon")
|
|
}
|
|
>
|
|
Update Prices
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
onClick={() => toast.info("Export feature coming soon")}
|
|
>
|
|
Export Selected
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem
|
|
variant="destructive"
|
|
onClick={() =>
|
|
handleBulkAction(deleteServices, "delete services")
|
|
}
|
|
>
|
|
Delete Selected
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className="overflow-hidden rounded-lg border">
|
|
<Table>
|
|
<TableHeader className="bg-muted">
|
|
{table.getHeaderGroups().map((headerGroup) => (
|
|
<TableRow key={headerGroup.id}>
|
|
{headerGroup.headers.map((header) => {
|
|
return (
|
|
<TableHead key={header.id} colSpan={header.colSpan}>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(
|
|
header.column.columnDef.header,
|
|
header.getContext()
|
|
)}
|
|
</TableHead>
|
|
);
|
|
})}
|
|
</TableRow>
|
|
))}
|
|
</TableHeader>
|
|
<TableBody>
|
|
{table.getRowModel().rows?.length ? (
|
|
table.getRowModel().rows.map((row) => (
|
|
<TableRow
|
|
key={row.id}
|
|
data-state={row.getIsSelected() && "selected"}
|
|
>
|
|
{row.getVisibleCells().map((cell) => (
|
|
<TableCell key={cell.id}>
|
|
{flexRender(
|
|
cell.column.columnDef.cell,
|
|
cell.getContext()
|
|
)}
|
|
</TableCell>
|
|
))}
|
|
</TableRow>
|
|
))
|
|
) : (
|
|
<TableRow>
|
|
<TableCell
|
|
colSpan={columns.length}
|
|
className="h-24 text-center"
|
|
>
|
|
No services found.
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between">
|
|
<div className="text-muted-foreground hidden flex-1 text-sm lg:flex">
|
|
{table.getFilteredSelectedRowModel().rows.length} of{" "}
|
|
{table.getFilteredRowModel().rows.length} row(s) selected.
|
|
</div>
|
|
<div className="flex w-full items-center gap-8 lg:w-fit">
|
|
<div className="hidden items-center gap-2 lg:flex">
|
|
<Label htmlFor="rows-per-page" className="text-sm font-medium">
|
|
Rows per page
|
|
</Label>
|
|
<Select
|
|
value={`${table.getState().pagination.pageSize}`}
|
|
onValueChange={(value) => {
|
|
table.setPageSize(Number(value));
|
|
}}
|
|
>
|
|
<SelectTrigger size="sm" className="w-20" id="rows-per-page">
|
|
<SelectValue
|
|
placeholder={table.getState().pagination.pageSize}
|
|
/>
|
|
</SelectTrigger>
|
|
<SelectContent side="top">
|
|
{[10, 20, 30, 40, 50].map((pageSize) => (
|
|
<SelectItem key={pageSize} value={`${pageSize}`}>
|
|
{pageSize}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
<div className="flex w-fit items-center justify-center text-sm font-medium">
|
|
Page {table.getState().pagination.pageIndex + 1} of{" "}
|
|
{table.getPageCount()}
|
|
</div>
|
|
<div className="ml-auto flex items-center gap-2 lg:ml-0">
|
|
<Button
|
|
variant="outline"
|
|
className="hidden h-8 w-8 p-0 lg:flex"
|
|
onClick={() => table.setPageIndex(0)}
|
|
disabled={!table.getCanPreviousPage()}
|
|
>
|
|
<span className="sr-only">Go to first page</span>
|
|
<IconChevronsLeft />
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
className="size-8"
|
|
size="icon"
|
|
onClick={() => table.previousPage()}
|
|
disabled={!table.getCanPreviousPage()}
|
|
>
|
|
<span className="sr-only">Go to previous page</span>
|
|
<IconChevronLeft />
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
className="size-8"
|
|
size="icon"
|
|
onClick={() => table.nextPage()}
|
|
disabled={!table.getCanNextPage()}
|
|
>
|
|
<span className="sr-only">Go to next page</span>
|
|
<IconChevronRight />
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
className="hidden size-8 lg:flex"
|
|
size="icon"
|
|
onClick={() => table.setPageIndex(table.getPageCount() - 1)}
|
|
disabled={!table.getCanNextPage()}
|
|
>
|
|
<span className="sr-only">Go to last page</span>
|
|
<IconChevronsRight />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|