mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-02 16:19:08 +00:00
958 lines
41 KiB
TypeScript
958 lines
41 KiB
TypeScript
"use client";
|
|
|
|
import {
|
|
ColumnDef,
|
|
flexRender,
|
|
getCoreRowModel,
|
|
useReactTable,
|
|
getPaginationRowModel,
|
|
SortingState,
|
|
getSortedRowModel,
|
|
ColumnFiltersState,
|
|
getFilteredRowModel,
|
|
VisibilityState
|
|
} from "@tanstack/react-table";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
DropdownMenuCheckboxItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator
|
|
} from "@app/components/ui/dropdown-menu";
|
|
import { Button } from "@app/components/ui/button";
|
|
import {
|
|
ArrowRight,
|
|
ArrowUpDown,
|
|
ArrowUpRight,
|
|
Check,
|
|
MoreHorizontal,
|
|
X,
|
|
RefreshCw,
|
|
Columns,
|
|
Search,
|
|
Plus
|
|
} from "lucide-react";
|
|
import Link from "next/link";
|
|
import { useRouter, useSearchParams } from "next/navigation";
|
|
import { useState, useEffect } from "react";
|
|
import ConfirmDeleteDialog from "@app/components/ConfirmDeleteDialog";
|
|
import { toast } from "@app/hooks/useToast";
|
|
import { formatAxiosError } from "@app/lib/api";
|
|
import { createApiClient } from "@app/lib/api";
|
|
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
import { useTranslations } from "next-intl";
|
|
import { Badge } from "./ui/badge";
|
|
import { InfoPopup } from "./ui/info-popup";
|
|
import { Input } from "@app/components/ui/input";
|
|
import { DataTablePagination } from "@app/components/DataTablePagination";
|
|
import { Card, CardContent, CardHeader } from "@app/components/ui/card";
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow
|
|
} from "@app/components/ui/table";
|
|
import {
|
|
Tabs,
|
|
TabsContent,
|
|
TabsList,
|
|
TabsTrigger
|
|
} from "@app/components/ui/tabs";
|
|
import { Alert, AlertDescription } from "@app/components/ui/alert";
|
|
|
|
export type ClientRow = {
|
|
id: number;
|
|
name: string;
|
|
subnet: string;
|
|
// siteIds: string;
|
|
mbIn: string;
|
|
mbOut: string;
|
|
orgId: string;
|
|
online: boolean;
|
|
olmVersion?: string;
|
|
olmUpdateAvailable: boolean;
|
|
userId: string | null;
|
|
username: string | null;
|
|
userEmail: string | null;
|
|
};
|
|
|
|
type ClientTableProps = {
|
|
userClients: ClientRow[];
|
|
machineClients: ClientRow[];
|
|
orgId: string;
|
|
defaultView?: "user" | "machine";
|
|
};
|
|
|
|
const STORAGE_KEYS = {
|
|
PAGE_SIZE: "datatable-page-size",
|
|
COLUMN_VISIBILITY: "datatable-column-visibility",
|
|
getTablePageSize: (tableId?: string) =>
|
|
tableId ? `datatable-${tableId}-page-size` : STORAGE_KEYS.PAGE_SIZE,
|
|
getTableColumnVisibility: (tableId?: string) =>
|
|
tableId
|
|
? `datatable-${tableId}-column-visibility`
|
|
: STORAGE_KEYS.COLUMN_VISIBILITY
|
|
};
|
|
|
|
const getStoredPageSize = (tableId?: string, defaultSize = 20): number => {
|
|
if (typeof window === "undefined") return defaultSize;
|
|
|
|
try {
|
|
const key = STORAGE_KEYS.getTablePageSize(tableId);
|
|
const stored = localStorage.getItem(key);
|
|
if (stored) {
|
|
const parsed = parseInt(stored, 10);
|
|
if (parsed > 0 && parsed <= 1000) {
|
|
return parsed;
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.warn("Failed to read page size from localStorage:", error);
|
|
}
|
|
return defaultSize;
|
|
};
|
|
|
|
const setStoredPageSize = (pageSize: number, tableId?: string): void => {
|
|
if (typeof window === "undefined") return;
|
|
|
|
try {
|
|
const key = STORAGE_KEYS.getTablePageSize(tableId);
|
|
localStorage.setItem(key, pageSize.toString());
|
|
} catch (error) {
|
|
console.warn("Failed to save page size to localStorage:", error);
|
|
}
|
|
};
|
|
|
|
const getStoredColumnVisibility = (
|
|
tableId?: string,
|
|
defaultVisibility?: Record<string, boolean>
|
|
): Record<string, boolean> => {
|
|
if (typeof window === "undefined") return defaultVisibility || {};
|
|
|
|
try {
|
|
const key = STORAGE_KEYS.getTableColumnVisibility(tableId);
|
|
const stored = localStorage.getItem(key);
|
|
if (stored) {
|
|
const parsed = JSON.parse(stored);
|
|
// Validate that it's an object
|
|
if (typeof parsed === "object" && parsed !== null) {
|
|
return parsed;
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.warn(
|
|
"Failed to read column visibility from localStorage:",
|
|
error
|
|
);
|
|
}
|
|
return defaultVisibility || {};
|
|
};
|
|
|
|
const setStoredColumnVisibility = (
|
|
visibility: Record<string, boolean>,
|
|
tableId?: string
|
|
): void => {
|
|
if (typeof window === "undefined") return;
|
|
|
|
try {
|
|
const key = STORAGE_KEYS.getTableColumnVisibility(tableId);
|
|
localStorage.setItem(key, JSON.stringify(visibility));
|
|
} catch (error) {
|
|
console.warn(
|
|
"Failed to save column visibility to localStorage:",
|
|
error
|
|
);
|
|
}
|
|
};
|
|
|
|
export default function ClientsTable({
|
|
userClients,
|
|
machineClients,
|
|
orgId,
|
|
defaultView = "user"
|
|
}: ClientTableProps) {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const t = useTranslations();
|
|
|
|
const [userPageSize, setUserPageSize] = useState<number>(() =>
|
|
getStoredPageSize("user-clients", 20)
|
|
);
|
|
const [machinePageSize, setMachinePageSize] = useState<number>(() =>
|
|
getStoredPageSize("machine-clients", 20)
|
|
);
|
|
|
|
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
|
|
const [selectedClient, setSelectedClient] = useState<ClientRow | null>(
|
|
null
|
|
);
|
|
|
|
const api = createApiClient(useEnvContext());
|
|
const [isRefreshing, setIsRefreshing] = useState(false);
|
|
|
|
const [userSorting, setUserSorting] = useState<SortingState>([]);
|
|
const [userColumnFilters, setUserColumnFilters] =
|
|
useState<ColumnFiltersState>([]);
|
|
const [userGlobalFilter, setUserGlobalFilter] = useState<any>([]);
|
|
|
|
const [machineSorting, setMachineSorting] = useState<SortingState>([]);
|
|
const [machineColumnFilters, setMachineColumnFilters] =
|
|
useState<ColumnFiltersState>([]);
|
|
const [machineGlobalFilter, setMachineGlobalFilter] = useState<any>([]);
|
|
|
|
const defaultUserColumnVisibility = {
|
|
client: false,
|
|
subnet: false
|
|
};
|
|
const defaultMachineColumnVisibility = {
|
|
client: false,
|
|
subnet: false,
|
|
userId: false
|
|
};
|
|
|
|
const [userColumnVisibility, setUserColumnVisibility] = useState<VisibilityState>(
|
|
() => getStoredColumnVisibility("user-clients", defaultUserColumnVisibility)
|
|
);
|
|
const [machineColumnVisibility, setMachineColumnVisibility] = useState<VisibilityState>(
|
|
() => getStoredColumnVisibility("machine-clients", defaultMachineColumnVisibility)
|
|
);
|
|
|
|
const currentView = searchParams.get("view") || defaultView;
|
|
|
|
const refreshData = async () => {
|
|
console.log("Data refreshed");
|
|
setIsRefreshing(true);
|
|
try {
|
|
await new Promise((resolve) => setTimeout(resolve, 200));
|
|
router.refresh();
|
|
} catch (error) {
|
|
toast({
|
|
title: t("error"),
|
|
description: t("refreshError"),
|
|
variant: "destructive"
|
|
});
|
|
} finally {
|
|
setIsRefreshing(false);
|
|
}
|
|
};
|
|
|
|
const handleTabChange = (value: string) => {
|
|
const params = new URLSearchParams(searchParams);
|
|
if (value === "machine") {
|
|
params.set("view", "machine");
|
|
} else {
|
|
params.delete("view");
|
|
}
|
|
|
|
const newUrl = `${window.location.pathname}${params.toString() ? "?" + params.toString() : ""}`;
|
|
router.replace(newUrl, { scroll: false });
|
|
};
|
|
|
|
const deleteClient = (clientId: number) => {
|
|
api.delete(`/client/${clientId}`)
|
|
.catch((e) => {
|
|
console.error("Error deleting client", e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Error deleting client",
|
|
description: formatAxiosError(e, "Error deleting client")
|
|
});
|
|
})
|
|
.then(() => {
|
|
router.refresh();
|
|
setIsDeleteModalOpen(false);
|
|
});
|
|
};
|
|
|
|
const getSearchInput = () => {
|
|
if (currentView === "machine") {
|
|
return (
|
|
<div className="relative w-full sm:max-w-sm">
|
|
<Input
|
|
placeholder={t("resourcesSearch")}
|
|
value={machineGlobalFilter ?? ""}
|
|
onChange={(e) =>
|
|
machineTable.setGlobalFilter(
|
|
String(e.target.value)
|
|
)
|
|
}
|
|
className="w-full pl-8"
|
|
/>
|
|
<Search className="h-4 w-4 absolute left-2 top-1/2 transform -translate-y-1/2 text-muted-foreground" />
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className="relative w-full sm:max-w-sm">
|
|
<Input
|
|
placeholder={t("resourcesSearch")}
|
|
value={userGlobalFilter ?? ""}
|
|
onChange={(e) =>
|
|
userTable.setGlobalFilter(String(e.target.value))
|
|
}
|
|
className="w-full pl-8"
|
|
/>
|
|
<Search className="h-4 w-4 absolute left-2 top-1/2 transform -translate-y-1/2 text-muted-foreground" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const getActionButton = () => {
|
|
// Only show create button on machine clients tab
|
|
if (currentView === "machine") {
|
|
return (
|
|
<Button
|
|
onClick={() =>
|
|
router.push(`/${orgId}/settings/clients/create`)
|
|
}
|
|
>
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
{t("createClient")}
|
|
</Button>
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
|
|
const columns: ColumnDef<ClientRow>[] = [
|
|
{
|
|
accessorKey: "name",
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
Name
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "userId",
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
User
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const r = row.original;
|
|
return r.userId ? (
|
|
<Link
|
|
href={`/${r.orgId}/settings/access/users/${r.userId}`}
|
|
>
|
|
<Button variant="outline">
|
|
{r.userEmail || r.username || r.userId}
|
|
<ArrowUpRight className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
</Link>
|
|
) : (
|
|
"-"
|
|
);
|
|
}
|
|
},
|
|
// {
|
|
// accessorKey: "siteName",
|
|
// header: ({ column }) => {
|
|
// return (
|
|
// <Button
|
|
// variant="ghost"
|
|
// onClick={() =>
|
|
// column.toggleSorting(column.getIsSorted() === "asc")
|
|
// }
|
|
// >
|
|
// Site
|
|
// <ArrowUpDown className="ml-2 h-4 w-4" />
|
|
// </Button>
|
|
// );
|
|
// },
|
|
// cell: ({ row }) => {
|
|
// const r = row.original;
|
|
// return (
|
|
// <Link href={`/${r.orgId}/settings/sites/${r.siteId}`}>
|
|
// <Button variant="outline">
|
|
// {r.siteName}
|
|
// <ArrowUpRight className="ml-2 h-4 w-4" />
|
|
// </Button>
|
|
// </Link>
|
|
// );
|
|
// }
|
|
// },
|
|
{
|
|
accessorKey: "online",
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
Connectivity
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const originalRow = row.original;
|
|
if (originalRow.online) {
|
|
return (
|
|
<span className="text-green-500 flex items-center space-x-2">
|
|
<div className="w-2 h-2 bg-green-500 rounded-full"></div>
|
|
<span>Connected</span>
|
|
</span>
|
|
);
|
|
} else {
|
|
return (
|
|
<span className="text-neutral-500 flex items-center space-x-2">
|
|
<div className="w-2 h-2 bg-gray-500 rounded-full"></div>
|
|
<span>Disconnected</span>
|
|
</span>
|
|
);
|
|
}
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "mbIn",
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
Data In
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "mbOut",
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
Data Out
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "client",
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
{t("client")}
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const originalRow = row.original;
|
|
|
|
return (
|
|
<div className="flex items-center space-x-1">
|
|
<Badge variant="secondary">
|
|
<div className="flex items-center space-x-2">
|
|
<span>Olm</span>
|
|
{originalRow.olmVersion && (
|
|
<span className="text-xs text-gray-500">
|
|
v{originalRow.olmVersion}
|
|
</span>
|
|
)}
|
|
</div>
|
|
</Badge>
|
|
{originalRow.olmUpdateAvailable && (
|
|
<InfoPopup info={t("olmUpdateAvailableInfo")} />
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "subnet",
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
Address
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
id: "actions",
|
|
header: () => (<span className="p-3">{t("actions")}</span>),
|
|
cell: ({ row }) => {
|
|
const clientRow = row.original;
|
|
return (
|
|
<div className="flex items-center">
|
|
<Link
|
|
href={`/${clientRow.orgId}/settings/clients/${clientRow.id}`}
|
|
>
|
|
<Button variant={"outline"}>
|
|
Edit
|
|
<ArrowRight className="ml-2 w-4 h-4" />
|
|
</Button>
|
|
</Link>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="ghost" className="h-8 w-8 p-0">
|
|
<span className="sr-only">Open menu</span>
|
|
<MoreHorizontal className="h-4 w-4" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
{/* <Link */}
|
|
{/* className="block w-full" */}
|
|
{/* href={`/${clientRow.orgId}/settings/sites/${clientRow.nice}`} */}
|
|
{/* > */}
|
|
{/* <DropdownMenuItem> */}
|
|
{/* View settings */}
|
|
{/* </DropdownMenuItem> */}
|
|
{/* </Link> */}
|
|
<DropdownMenuItem
|
|
onClick={() => {
|
|
setSelectedClient(clientRow);
|
|
setIsDeleteModalOpen(true);
|
|
}}
|
|
>
|
|
<span className="text-red-500">Delete</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
];
|
|
|
|
const userTable = useReactTable({
|
|
data: userClients || [],
|
|
columns,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
onSortingChange: setUserSorting,
|
|
getSortedRowModel: getSortedRowModel(),
|
|
onColumnFiltersChange: setUserColumnFilters,
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
onGlobalFilterChange: setUserGlobalFilter,
|
|
onColumnVisibilityChange: setUserColumnVisibility,
|
|
initialState: {
|
|
pagination: {
|
|
pageSize: userPageSize,
|
|
pageIndex: 0
|
|
},
|
|
columnVisibility: userColumnVisibility
|
|
},
|
|
state: {
|
|
sorting: userSorting,
|
|
columnFilters: userColumnFilters,
|
|
globalFilter: userGlobalFilter,
|
|
columnVisibility: userColumnVisibility
|
|
}
|
|
});
|
|
|
|
const machineTable = useReactTable({
|
|
data: machineClients || [],
|
|
columns,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
onSortingChange: setMachineSorting,
|
|
getSortedRowModel: getSortedRowModel(),
|
|
onColumnFiltersChange: setMachineColumnFilters,
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
onGlobalFilterChange: setMachineGlobalFilter,
|
|
onColumnVisibilityChange: setMachineColumnVisibility,
|
|
initialState: {
|
|
pagination: {
|
|
pageSize: machinePageSize,
|
|
pageIndex: 0
|
|
},
|
|
columnVisibility: machineColumnVisibility
|
|
},
|
|
state: {
|
|
sorting: machineSorting,
|
|
columnFilters: machineColumnFilters,
|
|
globalFilter: machineGlobalFilter,
|
|
columnVisibility: machineColumnVisibility
|
|
}
|
|
});
|
|
|
|
const handleUserPageSizeChange = (newPageSize: number) => {
|
|
setUserPageSize(newPageSize);
|
|
setStoredPageSize(newPageSize, "user-clients");
|
|
};
|
|
|
|
const handleMachinePageSizeChange = (newPageSize: number) => {
|
|
setMachinePageSize(newPageSize);
|
|
setStoredPageSize(newPageSize, "machine-clients");
|
|
};
|
|
|
|
// Persist column visibility changes to localStorage
|
|
useEffect(() => {
|
|
setStoredColumnVisibility(userColumnVisibility, "user-clients");
|
|
}, [userColumnVisibility]);
|
|
|
|
useEffect(() => {
|
|
setStoredColumnVisibility(machineColumnVisibility, "machine-clients");
|
|
}, [machineColumnVisibility]);
|
|
|
|
return (
|
|
<>
|
|
{selectedClient && (
|
|
<ConfirmDeleteDialog
|
|
open={isDeleteModalOpen}
|
|
setOpen={(val) => {
|
|
setIsDeleteModalOpen(val);
|
|
setSelectedClient(null);
|
|
}}
|
|
dialog={
|
|
<div>
|
|
<p>{t("deleteClientQuestion")}</p>
|
|
<p>{t("clientMessageRemove")}</p>
|
|
</div>
|
|
}
|
|
buttonText="Confirm Delete Client"
|
|
onConfirm={async () => deleteClient(selectedClient!.id)}
|
|
string={selectedClient.name}
|
|
title="Delete Client"
|
|
/>
|
|
)}
|
|
|
|
<div className="container mx-auto max-w-12xl">
|
|
<Card>
|
|
<Tabs
|
|
defaultValue={defaultView}
|
|
className="w-full"
|
|
onValueChange={handleTabChange}
|
|
>
|
|
<CardHeader className="flex flex-col space-y-4 sm:flex-row sm:items-center sm:justify-between sm:space-y-0 pb-0">
|
|
<div className="flex flex-row space-y-3 w-full sm:mr-2 gap-2">
|
|
{getSearchInput()}
|
|
|
|
<TabsList className="grid grid-cols-2">
|
|
<TabsTrigger value="user">
|
|
{t("clientsTableUserClients")}
|
|
</TabsTrigger>
|
|
<TabsTrigger value="machine">
|
|
{t("clientsTableMachineClients")}
|
|
</TabsTrigger>
|
|
</TabsList>
|
|
</div>
|
|
<div className="flex items-center gap-2 sm:justify-end">
|
|
{currentView === "user" && userTable.getAllColumns().some((column) => column.getCanHide()) && (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline">
|
|
<Columns className="mr-0 sm:mr-2 h-4 w-4" />
|
|
<span className="hidden sm:inline">
|
|
{t("columns") || "Columns"}
|
|
</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-48">
|
|
<DropdownMenuLabel>
|
|
{t("toggleColumns") || "Toggle columns"}
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
{userTable
|
|
.getAllColumns()
|
|
.filter((column) => column.getCanHide())
|
|
.map((column) => {
|
|
return (
|
|
<DropdownMenuCheckboxItem
|
|
key={column.id}
|
|
className="capitalize"
|
|
checked={column.getIsVisible()}
|
|
onCheckedChange={(value) =>
|
|
column.toggleVisibility(!!value)
|
|
}
|
|
>
|
|
{typeof column.columnDef.header === "string"
|
|
? column.columnDef.header
|
|
: column.id}
|
|
</DropdownMenuCheckboxItem>
|
|
);
|
|
})}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)}
|
|
{currentView === "machine" && machineTable.getAllColumns().some((column) => column.getCanHide()) && (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline">
|
|
<Columns className="mr-0 sm:mr-2 h-4 w-4" />
|
|
<span className="hidden sm:inline">
|
|
{t("columns") || "Columns"}
|
|
</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-48">
|
|
<DropdownMenuLabel>
|
|
{t("toggleColumns") || "Toggle columns"}
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
{machineTable
|
|
.getAllColumns()
|
|
.filter((column) => column.getCanHide())
|
|
.map((column) => {
|
|
return (
|
|
<DropdownMenuCheckboxItem
|
|
key={column.id}
|
|
className="capitalize"
|
|
checked={column.getIsVisible()}
|
|
onCheckedChange={(value) =>
|
|
column.toggleVisibility(!!value)
|
|
}
|
|
>
|
|
{typeof column.columnDef.header === "string"
|
|
? column.columnDef.header
|
|
: column.id}
|
|
</DropdownMenuCheckboxItem>
|
|
);
|
|
})}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)}
|
|
<div>
|
|
<Button
|
|
variant="outline"
|
|
onClick={refreshData}
|
|
disabled={isRefreshing}
|
|
>
|
|
<RefreshCw
|
|
className={`mr-0 sm:mr-2 h-4 w-4 ${isRefreshing ? "animate-spin" : ""}`}
|
|
/>
|
|
<span className="hidden sm:inline">
|
|
{t("refresh")}
|
|
</span>
|
|
</Button>
|
|
</div>
|
|
<div>{getActionButton()}</div>
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<TabsContent value="user">
|
|
<div className="mb-4">
|
|
<Alert variant="neutral">
|
|
<AlertDescription>
|
|
{t("clientsTableUserClientsDescription")}
|
|
</AlertDescription>
|
|
</Alert>
|
|
</div>
|
|
<Table>
|
|
<TableHeader>
|
|
{userTable
|
|
.getHeaderGroups()
|
|
.map((headerGroup) => (
|
|
<TableRow key={headerGroup.id}>
|
|
{headerGroup.headers
|
|
.filter((header) => header.column.getIsVisible())
|
|
.map(
|
|
(header) => (
|
|
<TableHead
|
|
key={header.id}
|
|
>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(
|
|
header
|
|
.column
|
|
.columnDef
|
|
.header,
|
|
header.getContext()
|
|
)}
|
|
</TableHead>
|
|
)
|
|
)}
|
|
</TableRow>
|
|
))}
|
|
</TableHeader>
|
|
<TableBody>
|
|
{userTable.getRowModel().rows
|
|
?.length ? (
|
|
userTable
|
|
.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"
|
|
>
|
|
{t("noResults")}
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
<div className="mt-4">
|
|
<DataTablePagination
|
|
table={userTable}
|
|
onPageSizeChange={
|
|
handleUserPageSizeChange
|
|
}
|
|
/>
|
|
</div>
|
|
</TabsContent>
|
|
<TabsContent value="machine">
|
|
<div className="mb-4">
|
|
<Alert variant="neutral">
|
|
<AlertDescription>
|
|
{t("clientsTableMachineClientsDescription")}
|
|
</AlertDescription>
|
|
</Alert>
|
|
</div>
|
|
<Table>
|
|
<TableHeader>
|
|
{machineTable
|
|
.getHeaderGroups()
|
|
.map((headerGroup) => (
|
|
<TableRow key={headerGroup.id}>
|
|
{headerGroup.headers
|
|
.filter((header) => header.column.getIsVisible())
|
|
.map(
|
|
(header) => (
|
|
<TableHead
|
|
key={header.id}
|
|
>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(
|
|
header
|
|
.column
|
|
.columnDef
|
|
.header,
|
|
header.getContext()
|
|
)}
|
|
</TableHead>
|
|
)
|
|
)}
|
|
</TableRow>
|
|
))}
|
|
</TableHeader>
|
|
<TableBody>
|
|
{machineTable.getRowModel().rows
|
|
?.length ? (
|
|
machineTable
|
|
.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"
|
|
>
|
|
{t("noResults")}
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
<div className="mt-4">
|
|
<DataTablePagination
|
|
table={machineTable}
|
|
onPageSizeChange={
|
|
handleMachinePageSizeChange
|
|
}
|
|
/>
|
|
</div>
|
|
</TabsContent>
|
|
</CardContent>
|
|
</Tabs>
|
|
</Card>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|