mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-18 10:56:38 +00:00
575 lines
21 KiB
TypeScript
575 lines
21 KiB
TypeScript
"use client";
|
|
|
|
import ConfirmDeleteDialog from "@app/components/ConfirmDeleteDialog";
|
|
import { Button } from "@app/components/ui/button";
|
|
import { DataTable, ExtendedColumnDef } from "@app/components/ui/data-table";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger
|
|
} from "@app/components/ui/dropdown-menu";
|
|
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
import { toast } from "@app/hooks/useToast";
|
|
import { createApiClient, formatAxiosError } from "@app/lib/api";
|
|
import {
|
|
ArrowRight,
|
|
ArrowUpDown,
|
|
MoreHorizontal,
|
|
CircleSlash,
|
|
ArrowDown01Icon,
|
|
ArrowUp10Icon,
|
|
ChevronsUpDownIcon
|
|
} from "lucide-react";
|
|
import { useTranslations } from "next-intl";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
import { useMemo, useState, useTransition } from "react";
|
|
import { Badge } from "./ui/badge";
|
|
import type { PaginationState } from "@tanstack/react-table";
|
|
import { ControlledDataTable } from "./ui/controlled-data-table";
|
|
import { useNavigationContext } from "@app/hooks/useNavigationContext";
|
|
import { useDebouncedCallback } from "use-debounce";
|
|
import z from "zod";
|
|
import { getNextSortOrder, getSortDirection } from "@app/lib/sortColumn";
|
|
import { ColumnFilterButton } from "./ColumnFilterButton";
|
|
|
|
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;
|
|
niceId: string;
|
|
agent: string | null;
|
|
archived?: boolean;
|
|
blocked?: boolean;
|
|
approvalState: "approved" | "pending" | "denied";
|
|
};
|
|
|
|
type ClientTableProps = {
|
|
machineClients: ClientRow[];
|
|
orgId: string;
|
|
pagination: PaginationState;
|
|
rowCount: number;
|
|
};
|
|
|
|
export default function MachineClientsTable({
|
|
machineClients,
|
|
orgId,
|
|
pagination,
|
|
rowCount
|
|
}: ClientTableProps) {
|
|
const router = useRouter();
|
|
|
|
const {
|
|
navigate: filter,
|
|
isNavigating: isFiltering,
|
|
searchParams
|
|
} = useNavigationContext();
|
|
|
|
const t = useTranslations();
|
|
|
|
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
|
|
const [selectedClient, setSelectedClient] = useState<ClientRow | null>(
|
|
null
|
|
);
|
|
|
|
const api = createApiClient(useEnvContext());
|
|
const [isRefreshing, startTransition] = useTransition();
|
|
const [isNavigatingToAddPage, startNavigation] = useTransition();
|
|
|
|
const defaultMachineColumnVisibility = {
|
|
subnet: false,
|
|
userId: false,
|
|
niceId: false
|
|
};
|
|
|
|
const refreshData = () => {
|
|
startTransition(() => {
|
|
try {
|
|
router.refresh();
|
|
} catch (error) {
|
|
toast({
|
|
title: t("error"),
|
|
description: t("refreshError"),
|
|
variant: "destructive"
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
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(() => {
|
|
startTransition(() => {
|
|
router.refresh();
|
|
setIsDeleteModalOpen(false);
|
|
});
|
|
});
|
|
};
|
|
|
|
const archiveClient = (clientId: number) => {
|
|
api.post(`/client/${clientId}/archive`)
|
|
.catch((e) => {
|
|
console.error("Error archiving client", e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Error archiving client",
|
|
description: formatAxiosError(e, "Error archiving client")
|
|
});
|
|
})
|
|
.then(() => {
|
|
startTransition(() => {
|
|
router.refresh();
|
|
});
|
|
});
|
|
};
|
|
|
|
const unarchiveClient = (clientId: number) => {
|
|
api.post(`/client/${clientId}/unarchive`)
|
|
.catch((e) => {
|
|
console.error("Error unarchiving client", e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Error unarchiving client",
|
|
description: formatAxiosError(e, "Error unarchiving client")
|
|
});
|
|
})
|
|
.then(() => {
|
|
startTransition(() => {
|
|
router.refresh();
|
|
});
|
|
});
|
|
};
|
|
|
|
const blockClient = (clientId: number) => {
|
|
api.post(`/client/${clientId}/block`)
|
|
.catch((e) => {
|
|
console.error("Error blocking client", e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Error blocking client",
|
|
description: formatAxiosError(e, "Error blocking client")
|
|
});
|
|
})
|
|
.then(() => {
|
|
startTransition(() => {
|
|
router.refresh();
|
|
});
|
|
});
|
|
};
|
|
|
|
const unblockClient = (clientId: number) => {
|
|
api.post(`/client/${clientId}/unblock`)
|
|
.catch((e) => {
|
|
console.error("Error unblocking client", e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Error unblocking client",
|
|
description: formatAxiosError(e, "Error unblocking client")
|
|
});
|
|
})
|
|
.then(() => {
|
|
startTransition(() => {
|
|
router.refresh();
|
|
});
|
|
});
|
|
};
|
|
|
|
// Check if there are any rows without userIds in the current view's data
|
|
const hasRowsWithoutUserId = useMemo(() => {
|
|
return machineClients.some((client) => !client.userId) ?? false;
|
|
}, [machineClients]);
|
|
|
|
const columns: ExtendedColumnDef<ClientRow>[] = useMemo(() => {
|
|
const baseColumns: ExtendedColumnDef<ClientRow>[] = [
|
|
{
|
|
accessorKey: "name",
|
|
enableHiding: false,
|
|
friendlyName: t("name"),
|
|
header: () => <span className="px-3">{t("name")}</span>,
|
|
cell: ({ row }) => {
|
|
const r = row.original;
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<span>{r.name}</span>
|
|
{r.archived && (
|
|
<Badge variant="secondary">
|
|
{t("archived")}
|
|
</Badge>
|
|
)}
|
|
{r.blocked && (
|
|
<Badge
|
|
variant="destructive"
|
|
className="flex items-center gap-1"
|
|
>
|
|
<CircleSlash className="h-3 w-3" />
|
|
{t("blocked")}
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "niceId",
|
|
friendlyName: "Identifier",
|
|
header: () => <span className="px-3">{t("identifier")}</span>
|
|
},
|
|
{
|
|
accessorKey: "online",
|
|
friendlyName: t("online"),
|
|
header: () => {
|
|
return (
|
|
<ColumnFilterButton
|
|
options={[
|
|
{
|
|
value: "true",
|
|
label: t("connected")
|
|
},
|
|
{
|
|
value: "false",
|
|
label: t("disconnected")
|
|
}
|
|
]}
|
|
selectedValue={
|
|
searchParams.get("online") ?? undefined
|
|
}
|
|
onValueChange={(value) =>
|
|
handleFilterChange("online", value)
|
|
}
|
|
searchPlaceholder={t("searchPlaceholder")}
|
|
emptyMessage={t("emptySearchOptions")}
|
|
label={t("online")}
|
|
className="p-3"
|
|
/>
|
|
);
|
|
},
|
|
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>{t("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>{t("disconnected")}</span>
|
|
</span>
|
|
);
|
|
}
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "mbIn",
|
|
friendlyName: t("dataIn"),
|
|
header: () => {
|
|
const dataInOrder = getSortDirection(
|
|
"megabytesIn",
|
|
searchParams
|
|
);
|
|
|
|
const Icon =
|
|
dataInOrder === "asc"
|
|
? ArrowDown01Icon
|
|
: dataInOrder === "desc"
|
|
? ArrowUp10Icon
|
|
: ChevronsUpDownIcon;
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() => toggleSort("megabytesIn")}
|
|
>
|
|
{t("dataIn")}
|
|
<Icon className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "mbOut",
|
|
friendlyName: t("dataOut"),
|
|
header: () => {
|
|
const dataOutOrder = getSortDirection(
|
|
"megabytesOut",
|
|
searchParams
|
|
);
|
|
|
|
const Icon =
|
|
dataOutOrder === "asc"
|
|
? ArrowDown01Icon
|
|
: dataOutOrder === "desc"
|
|
? ArrowUp10Icon
|
|
: ChevronsUpDownIcon;
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() => toggleSort("megabytesOut")}
|
|
>
|
|
{t("dataOut")}
|
|
<Icon className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "client",
|
|
friendlyName: t("agent"),
|
|
header: () => <span className="px-3">{t("agent")}</span>,
|
|
cell: ({ row }) => {
|
|
const originalRow = row.original;
|
|
|
|
return (
|
|
<div className="flex items-center space-x-1">
|
|
{originalRow.agent && originalRow.olmVersion ? (
|
|
<Badge variant="secondary">
|
|
{originalRow.agent +
|
|
" v" +
|
|
originalRow.olmVersion}
|
|
</Badge>
|
|
) : (
|
|
"-"
|
|
)}
|
|
{/*originalRow.olmUpdateAvailable && (
|
|
<InfoPopup info={t("olmUpdateAvailableInfo")} />
|
|
)*/}
|
|
</div>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "subnet",
|
|
friendlyName: t("address"),
|
|
header: () => <span className="px-3">{t("address")}</span>
|
|
}
|
|
];
|
|
|
|
// Only include actions column if there are rows without userIds
|
|
if (hasRowsWithoutUserId) {
|
|
baseColumns.push({
|
|
id: "actions",
|
|
enableHiding: false,
|
|
header: () => <span className="p-3"></span>,
|
|
cell: ({ row }) => {
|
|
const clientRow = row.original;
|
|
return !clientRow.userId ? (
|
|
<div className="flex items-center gap-2 justify-end">
|
|
<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">
|
|
<DropdownMenuItem
|
|
onClick={() => {
|
|
if (clientRow.archived) {
|
|
unarchiveClient(clientRow.id);
|
|
} else {
|
|
archiveClient(clientRow.id);
|
|
}
|
|
}}
|
|
>
|
|
<span>
|
|
{clientRow.archived
|
|
? "Unarchive"
|
|
: "Archive"}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
onClick={() => {
|
|
if (clientRow.blocked) {
|
|
unblockClient(clientRow.id);
|
|
} else {
|
|
blockClient(clientRow.id);
|
|
}
|
|
}}
|
|
>
|
|
<span>
|
|
{clientRow.blocked
|
|
? "Unblock"
|
|
: "Block"}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
onClick={() => {
|
|
setSelectedClient(clientRow);
|
|
setIsDeleteModalOpen(true);
|
|
}}
|
|
>
|
|
<span className="text-red-500">
|
|
Delete
|
|
</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
<Link
|
|
href={`/${clientRow.orgId}/settings/clients/machine/${clientRow.niceId}`}
|
|
>
|
|
<Button variant={"outline"}>
|
|
{t("edit")}
|
|
<ArrowRight className="ml-2 w-4 h-4" />
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
) : null;
|
|
}
|
|
});
|
|
}
|
|
|
|
return baseColumns;
|
|
}, [hasRowsWithoutUserId, t, getSortDirection, toggleSort]);
|
|
|
|
const booleanSearchFilterSchema = z
|
|
.enum(["true", "false"])
|
|
.optional()
|
|
.catch(undefined);
|
|
|
|
function handleFilterChange(
|
|
column: string,
|
|
value: string | null | undefined | string[]
|
|
) {
|
|
searchParams.delete(column);
|
|
searchParams.delete("page");
|
|
|
|
if (typeof value === "string") {
|
|
searchParams.set(column, value);
|
|
} else if (value) {
|
|
for (const val of value) {
|
|
searchParams.append(column, val);
|
|
}
|
|
}
|
|
|
|
filter({
|
|
searchParams
|
|
});
|
|
}
|
|
|
|
function toggleSort(column: string) {
|
|
const newSearch = getNextSortOrder(column, searchParams);
|
|
|
|
filter({
|
|
searchParams: newSearch
|
|
});
|
|
}
|
|
|
|
const handlePaginationChange = (newPage: PaginationState) => {
|
|
searchParams.set("page", (newPage.pageIndex + 1).toString());
|
|
searchParams.set("pageSize", newPage.pageSize.toString());
|
|
filter({
|
|
searchParams
|
|
});
|
|
};
|
|
|
|
const handleSearchChange = useDebouncedCallback((query: string) => {
|
|
searchParams.set("query", query);
|
|
searchParams.delete("page");
|
|
filter({
|
|
searchParams
|
|
});
|
|
}, 300);
|
|
|
|
return (
|
|
<>
|
|
{selectedClient && (
|
|
<ConfirmDeleteDialog
|
|
open={isDeleteModalOpen}
|
|
setOpen={(val) => {
|
|
setIsDeleteModalOpen(val);
|
|
setSelectedClient(null);
|
|
}}
|
|
dialog={
|
|
<div className="space-y-2">
|
|
<p>{t("deleteClientQuestion")}</p>
|
|
<p>{t("clientMessageRemove")}</p>
|
|
</div>
|
|
}
|
|
buttonText="Confirm Delete Client"
|
|
onConfirm={async () => deleteClient(selectedClient!.id)}
|
|
string={selectedClient.name}
|
|
title="Delete Client"
|
|
/>
|
|
)}
|
|
<ControlledDataTable
|
|
columns={columns}
|
|
rows={machineClients}
|
|
tableId="machine-clients"
|
|
searchPlaceholder={t("resourcesSearch")}
|
|
onAdd={() =>
|
|
startNavigation(() =>
|
|
router.push(`/${orgId}/settings/clients/machine/create`)
|
|
)
|
|
}
|
|
pagination={pagination}
|
|
rowCount={rowCount}
|
|
addButtonText={t("createClient")}
|
|
onRefresh={refreshData}
|
|
isRefreshing={isRefreshing || isFiltering}
|
|
onSearch={handleSearchChange}
|
|
onPaginationChange={handlePaginationChange}
|
|
isNavigatingToAddPage={isNavigatingToAddPage}
|
|
enableColumnVisibility
|
|
columnVisibility={defaultMachineColumnVisibility}
|
|
stickyLeftColumn="name"
|
|
stickyRightColumn="actions"
|
|
filters={[
|
|
{
|
|
id: "status",
|
|
label: t("status") || "Status",
|
|
multiSelect: true,
|
|
displayMode: "calculated",
|
|
options: [
|
|
{
|
|
id: "active",
|
|
label: t("active") || "Active",
|
|
value: "active"
|
|
},
|
|
{
|
|
id: "archived",
|
|
label: t("archived") || "Archived",
|
|
value: "archived"
|
|
},
|
|
{
|
|
id: "blocked",
|
|
label: t("blocked") || "Blocked",
|
|
value: "blocked"
|
|
}
|
|
],
|
|
onValueChange(selectedValues: string[]) {
|
|
handleFilterChange("status", selectedValues);
|
|
},
|
|
values: searchParams.getAll("status")
|
|
}
|
|
]}
|
|
/>
|
|
</>
|
|
);
|
|
}
|