mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-01 15:49:08 +00:00
346 lines
12 KiB
TypeScript
346 lines
12 KiB
TypeScript
"use client";
|
|
|
|
import ConfirmDeleteDialog from "@app/components/ConfirmDeleteDialog";
|
|
import CopyToClipboard from "@app/components/CopyToClipboard";
|
|
import { DataTable } from "@app/components/ui/data-table";
|
|
import { ExtendedColumnDef } from "@app/components/ui/data-table";
|
|
import { Button } from "@app/components/ui/button";
|
|
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 { ArrowUpDown, ArrowUpRight, MoreHorizontal } from "lucide-react";
|
|
import { useTranslations } from "next-intl";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
import { useState, useTransition } from "react";
|
|
|
|
import CreateInternalResourceDialog from "@app/components/CreateInternalResourceDialog";
|
|
import EditInternalResourceDialog from "@app/components/EditInternalResourceDialog";
|
|
import { orgQueries } from "@app/lib/queries";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
|
|
export type InternalResourceRow = {
|
|
id: number;
|
|
name: string;
|
|
orgId: string;
|
|
siteName: string;
|
|
siteAddress: string | null;
|
|
// mode: "host" | "cidr" | "port";
|
|
mode: "host" | "cidr";
|
|
// protocol: string | null;
|
|
// proxyPort: number | null;
|
|
siteId: number;
|
|
siteNiceId: string;
|
|
destination: string;
|
|
// destinationPort: number | null;
|
|
alias: string | null;
|
|
niceId: string;
|
|
};
|
|
|
|
type ClientResourcesTableProps = {
|
|
internalResources: InternalResourceRow[];
|
|
orgId: string;
|
|
defaultSort?: {
|
|
id: string;
|
|
desc: boolean;
|
|
};
|
|
};
|
|
|
|
export default function ClientResourcesTable({
|
|
internalResources,
|
|
orgId,
|
|
defaultSort
|
|
}: ClientResourcesTableProps) {
|
|
const router = useRouter();
|
|
const t = useTranslations();
|
|
|
|
const { env } = useEnvContext();
|
|
|
|
const api = createApiClient({ env });
|
|
|
|
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
|
|
|
|
const [selectedInternalResource, setSelectedInternalResource] =
|
|
useState<InternalResourceRow | null>();
|
|
const [isEditDialogOpen, setIsEditDialogOpen] = useState(false);
|
|
const [editingResource, setEditingResource] =
|
|
useState<InternalResourceRow | null>();
|
|
const [isCreateDialogOpen, setIsCreateDialogOpen] = useState(false);
|
|
|
|
const { data: sites = [] } = useQuery(orgQueries.sites({ orgId }));
|
|
|
|
const [isRefreshing, startTransition] = useTransition();
|
|
|
|
const refreshData = () => {
|
|
startTransition(() => {
|
|
try {
|
|
router.refresh();
|
|
} catch (error) {
|
|
toast({
|
|
title: t("error"),
|
|
description: t("refreshError"),
|
|
variant: "destructive"
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
const deleteInternalResource = async (
|
|
resourceId: number,
|
|
siteId: number
|
|
) => {
|
|
try {
|
|
await api
|
|
.delete(`/org/${orgId}/site/${siteId}/resource/${resourceId}`)
|
|
.then(() => {
|
|
startTransition(() => {
|
|
router.refresh();
|
|
setIsDeleteModalOpen(false);
|
|
});
|
|
});
|
|
} catch (e) {
|
|
console.error(t("resourceErrorDelete"), e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: t("resourceErrorDelte"),
|
|
description: formatAxiosError(e, t("v"))
|
|
});
|
|
}
|
|
};
|
|
|
|
const internalColumns: ExtendedColumnDef<InternalResourceRow>[] = [
|
|
{
|
|
accessorKey: "name",
|
|
enableHiding: false,
|
|
friendlyName: t("name"),
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
{t("name")}
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
id: "niceId",
|
|
accessorKey: "niceId",
|
|
friendlyName: t("identifier"),
|
|
enableHiding: true,
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === "asc")
|
|
}
|
|
>
|
|
{t("identifier")}
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
return <span>{row.original.niceId || "-"}</span>;
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "siteName",
|
|
friendlyName: t("site"),
|
|
header: () => <span className="p-3">{t("site")}</span>,
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return (
|
|
<Link
|
|
href={`/${resourceRow.orgId}/settings/sites/${resourceRow.siteNiceId}`}
|
|
>
|
|
<Button variant="outline">
|
|
{resourceRow.siteName}
|
|
<ArrowUpRight className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
</Link>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "mode",
|
|
friendlyName: t("editInternalResourceDialogMode"),
|
|
header: () => (
|
|
<span className="p-3">
|
|
{t("editInternalResourceDialogMode")}
|
|
</span>
|
|
),
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
const modeLabels: Record<"host" | "cidr" | "port", string> = {
|
|
host: t("editInternalResourceDialogModeHost"),
|
|
cidr: t("editInternalResourceDialogModeCidr"),
|
|
port: t("editInternalResourceDialogModePort")
|
|
};
|
|
return <span>{modeLabels[resourceRow.mode]}</span>;
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "destination",
|
|
friendlyName: t("resourcesTableDestination"),
|
|
header: () => (
|
|
<span className="p-3">{t("resourcesTableDestination")}</span>
|
|
),
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return (
|
|
<CopyToClipboard
|
|
text={resourceRow.destination}
|
|
isLink={false}
|
|
displayText={resourceRow.destination}
|
|
/>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "alias",
|
|
friendlyName: t("resourcesTableAlias"),
|
|
header: () => (
|
|
<span className="p-3">{t("resourcesTableAlias")}</span>
|
|
),
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return resourceRow.mode === "host" && resourceRow.alias ? (
|
|
<CopyToClipboard
|
|
text={resourceRow.alias}
|
|
isLink={false}
|
|
displayText={resourceRow.alias}
|
|
/>
|
|
) : (
|
|
<span>-</span>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
id: "actions",
|
|
enableHiding: false,
|
|
header: () => <span className="p-3"></span>,
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return (
|
|
<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">
|
|
{t("openMenu")}
|
|
</span>
|
|
<MoreHorizontal className="h-4 w-4" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem
|
|
onClick={() => {
|
|
setSelectedInternalResource(
|
|
resourceRow
|
|
);
|
|
setIsDeleteModalOpen(true);
|
|
}}
|
|
>
|
|
<span className="text-red-500">
|
|
{t("delete")}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
<Button
|
|
variant={"outline"}
|
|
onClick={() => {
|
|
setEditingResource(resourceRow);
|
|
setIsEditDialogOpen(true);
|
|
}}
|
|
>
|
|
{t("edit")}
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
];
|
|
|
|
return (
|
|
<>
|
|
{selectedInternalResource && (
|
|
<ConfirmDeleteDialog
|
|
open={isDeleteModalOpen}
|
|
setOpen={(val) => {
|
|
setIsDeleteModalOpen(val);
|
|
setSelectedInternalResource(null);
|
|
}}
|
|
dialog={
|
|
<div className="space-y-2">
|
|
<p>{t("resourceQuestionRemove")}</p>
|
|
<p>{t("resourceMessageRemove")}</p>
|
|
</div>
|
|
}
|
|
buttonText={t("resourceDeleteConfirm")}
|
|
onConfirm={async () =>
|
|
deleteInternalResource(
|
|
selectedInternalResource!.id,
|
|
selectedInternalResource!.siteId
|
|
)
|
|
}
|
|
string={selectedInternalResource.name}
|
|
title={t("resourceDelete")}
|
|
/>
|
|
)}
|
|
|
|
<DataTable
|
|
columns={internalColumns}
|
|
data={internalResources}
|
|
persistPageSize="internal-resources"
|
|
searchPlaceholder={t("resourcesSearch")}
|
|
searchColumn="name"
|
|
onAdd={() => setIsCreateDialogOpen(true)}
|
|
addButtonText={t("resourceAdd")}
|
|
onRefresh={refreshData}
|
|
isRefreshing={isRefreshing}
|
|
defaultSort={defaultSort}
|
|
enableColumnVisibility={true}
|
|
persistColumnVisibility="internal-resources"
|
|
stickyLeftColumn="name"
|
|
stickyRightColumn="actions"
|
|
/>
|
|
|
|
{editingResource && (
|
|
<EditInternalResourceDialog
|
|
open={isEditDialogOpen}
|
|
setOpen={setIsEditDialogOpen}
|
|
resource={editingResource}
|
|
orgId={orgId}
|
|
onSuccess={() => {
|
|
router.refresh();
|
|
setEditingResource(null);
|
|
}}
|
|
/>
|
|
)}
|
|
|
|
<CreateInternalResourceDialog
|
|
open={isCreateDialogOpen}
|
|
setOpen={setIsCreateDialogOpen}
|
|
orgId={orgId}
|
|
sites={sites}
|
|
onSuccess={() => {
|
|
router.refresh();
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
}
|