mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-08 09:19:53 +00:00
816 lines
30 KiB
TypeScript
816 lines
30 KiB
TypeScript
"use client";
|
|
|
|
import ConfirmDeleteDialog from "@app/components/ConfirmDeleteDialog";
|
|
import CopyToClipboard from "@app/components/CopyToClipboard";
|
|
import {
|
|
ResourceSitesStatusCell,
|
|
type ResourceSiteRow
|
|
} from "@app/components/ResourceSitesStatusCell";
|
|
import { Badge } from "@app/components/ui/badge";
|
|
import { Button } from "@app/components/ui/button";
|
|
import { ExtendedColumnDef } from "@app/components/ui/data-table";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger
|
|
} from "@app/components/ui/dropdown-menu";
|
|
import { InfoPopup } from "@app/components/ui/info-popup";
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger
|
|
} from "@app/components/ui/popover";
|
|
import { Switch } from "@app/components/ui/switch";
|
|
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
import { useNavigationContext } from "@app/hooks/useNavigationContext";
|
|
import { Selectedsite, SitesSelector } from "@app/components/site-selector";
|
|
import { cn } from "@app/lib/cn";
|
|
import { dataTableFilterPopoverContentClassName } from "@app/lib/dataTableFilterPopover";
|
|
import { getNextSortOrder, getSortDirection } from "@app/lib/sortColumn";
|
|
import { toast } from "@app/hooks/useToast";
|
|
import { createApiClient, formatAxiosError } from "@app/lib/api";
|
|
import { UpdateResourceResponse } from "@server/routers/resource";
|
|
import type { PaginationState } from "@tanstack/react-table";
|
|
import { AxiosResponse } from "axios";
|
|
import {
|
|
ArrowDown01Icon,
|
|
ArrowRight,
|
|
ArrowUp10Icon,
|
|
CheckCircle2,
|
|
ChevronDown,
|
|
ChevronsUpDownIcon,
|
|
Clock,
|
|
Funnel,
|
|
MoreHorizontal,
|
|
ShieldCheck,
|
|
ShieldOff,
|
|
XCircle
|
|
} from "lucide-react";
|
|
import { useTranslations } from "next-intl";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
import {
|
|
useEffect,
|
|
useMemo,
|
|
useOptimistic,
|
|
useRef,
|
|
useState,
|
|
useTransition,
|
|
type ComponentRef
|
|
} from "react";
|
|
import { useDebouncedCallback } from "use-debounce";
|
|
import z from "zod";
|
|
import { ColumnFilterButton } from "./ColumnFilterButton";
|
|
import { ControlledDataTable } from "./ui/controlled-data-table";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger
|
|
} from "@app/components/ui/tooltip";
|
|
import type { StatusHistoryResponse } from "@server/lib/statusHistory";
|
|
import UptimeMiniBar from "./UptimeMiniBar";
|
|
|
|
export type TargetHealth = {
|
|
targetId: number;
|
|
ip: string;
|
|
port: number;
|
|
enabled: boolean;
|
|
healthStatus: "healthy" | "unhealthy" | "unknown" | null;
|
|
siteName: string | null;
|
|
};
|
|
|
|
export type ResourceRow = {
|
|
id: number;
|
|
nice: string | null;
|
|
name: string;
|
|
orgId: string;
|
|
domain: string;
|
|
authState: string;
|
|
http: boolean;
|
|
protocol: string;
|
|
proxyPort: number | null;
|
|
enabled: boolean;
|
|
domainId?: string;
|
|
ssl: boolean;
|
|
targetHost?: string;
|
|
targetPort?: number;
|
|
targets?: TargetHealth[];
|
|
health?: "online" | "degraded" | "unhealthy" | "unknown";
|
|
sites: ResourceSiteRow[];
|
|
};
|
|
|
|
function StatusIcon({
|
|
status,
|
|
className = ""
|
|
}: {
|
|
status: string | undefined | null;
|
|
className?: string;
|
|
}) {
|
|
const iconClass = `h-4 w-4 ${className}`;
|
|
|
|
switch (status) {
|
|
case "healthy":
|
|
return <CheckCircle2 className={`${iconClass} text-green-500`} />;
|
|
case "degraded":
|
|
return <CheckCircle2 className={`${iconClass} text-yellow-500`} />;
|
|
case "unhealthy":
|
|
return <XCircle className={`${iconClass} text-destructive`} />;
|
|
case "unknown":
|
|
return <Clock className={`${iconClass} text-muted-foreground`} />;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
type ProxyResourcesTableProps = {
|
|
resources: ResourceRow[];
|
|
orgId: string;
|
|
pagination: PaginationState;
|
|
rowCount: number;
|
|
initialFilterSite?: Selectedsite | null;
|
|
};
|
|
|
|
export default function ProxyResourcesTable({
|
|
resources,
|
|
orgId,
|
|
pagination,
|
|
rowCount,
|
|
initialFilterSite = null
|
|
}: ProxyResourcesTableProps) {
|
|
const router = useRouter();
|
|
const {
|
|
navigate: filter,
|
|
isNavigating: isFiltering,
|
|
searchParams
|
|
} = useNavigationContext();
|
|
const t = useTranslations();
|
|
|
|
const { env } = useEnvContext();
|
|
|
|
const api = createApiClient({ env });
|
|
|
|
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
|
|
const [selectedResource, setSelectedResource] =
|
|
useState<ResourceRow | null>();
|
|
|
|
const [isRefreshing, startTransition] = useTransition();
|
|
const [isNavigatingToAddPage, startNavigation] = useTransition();
|
|
const [siteFilterOpen, setSiteFilterOpen] = useState(false);
|
|
|
|
const siteIdQ = searchParams.get("siteId");
|
|
const siteIdNum = siteIdQ ? parseInt(siteIdQ, 10) : NaN;
|
|
const selectedSite: Selectedsite | null = useMemo(() => {
|
|
if (!siteIdQ || !Number.isInteger(siteIdNum) || siteIdNum <= 0) {
|
|
return null;
|
|
}
|
|
if (initialFilterSite && initialFilterSite.siteId === siteIdNum) {
|
|
return initialFilterSite;
|
|
}
|
|
return {
|
|
siteId: siteIdNum,
|
|
name: t("standaloneHcFilterSiteIdFallback", { id: siteIdNum }),
|
|
type: "newt"
|
|
};
|
|
}, [initialFilterSite, siteIdQ, siteIdNum, t]);
|
|
|
|
useEffect(() => {
|
|
const interval = setInterval(() => {
|
|
router.refresh();
|
|
}, 10_000);
|
|
return () => clearInterval(interval);
|
|
}, [router]);
|
|
|
|
const refreshData = () => {
|
|
startTransition(() => {
|
|
try {
|
|
router.refresh();
|
|
} catch (error) {
|
|
toast({
|
|
title: t("error"),
|
|
description: t("refreshError"),
|
|
variant: "destructive"
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
const deleteResource = (resourceId: number) => {
|
|
api.delete(`/resource/${resourceId}`)
|
|
.catch((e) => {
|
|
console.error(t("resourceErrorDelte"), e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: t("resourceErrorDelte"),
|
|
description: formatAxiosError(e, t("resourceErrorDelte"))
|
|
});
|
|
})
|
|
.then(() => {
|
|
startTransition(() => {
|
|
router.refresh();
|
|
setIsDeleteModalOpen(false);
|
|
});
|
|
});
|
|
};
|
|
|
|
async function toggleResourceEnabled(val: boolean, resourceId: number) {
|
|
try {
|
|
await api.post<AxiosResponse<UpdateResourceResponse>>(
|
|
`resource/${resourceId}`,
|
|
{
|
|
enabled: val
|
|
}
|
|
);
|
|
router.refresh();
|
|
} catch (e) {
|
|
toast({
|
|
variant: "destructive",
|
|
title: t("resourcesErrorUpdate"),
|
|
description: formatAxiosError(
|
|
e,
|
|
t("resourcesErrorUpdateDescription")
|
|
)
|
|
});
|
|
}
|
|
}
|
|
|
|
function TargetStatusCell({
|
|
targets,
|
|
healthStatus
|
|
}: {
|
|
targets?: TargetHealth[];
|
|
healthStatus?: string;
|
|
}) {
|
|
const overallStatus = healthStatus;
|
|
|
|
if (!targets || targets.length === 0) {
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<StatusIcon status="unknown" />
|
|
<span className="text-sm">
|
|
{t("resourcesTableNoTargets")}
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const monitoredTargets = targets.filter(
|
|
(t) => t.enabled && t.healthStatus && t.healthStatus !== "unknown"
|
|
);
|
|
const unknownTargets = targets.filter(
|
|
(t) => !t.enabled || !t.healthStatus || t.healthStatus === "unknown"
|
|
);
|
|
|
|
return (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
className="flex items-center gap-2 h-8 px-0 font-normal"
|
|
>
|
|
<StatusIcon status={overallStatus} />
|
|
<span className="text-sm">
|
|
{overallStatus === "online" &&
|
|
t("resourcesTableHealthy")}
|
|
{overallStatus === "degraded" &&
|
|
t("resourcesTableDegraded")}
|
|
{overallStatus === "unhealthy" &&
|
|
t("resourcesTableUnhealthy")}
|
|
{overallStatus === "unknown" &&
|
|
t("resourcesTableUnknown")}
|
|
</span>
|
|
<ChevronDown className="h-3 w-3" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start" className="min-w-70">
|
|
{monitoredTargets.length > 0 && (
|
|
<>
|
|
{monitoredTargets.map((target) => (
|
|
<DropdownMenuItem
|
|
key={target.targetId}
|
|
className="flex items-center justify-between gap-4"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<StatusIcon
|
|
status={
|
|
target.healthStatus ===
|
|
"healthy"
|
|
? "online"
|
|
: "offline"
|
|
}
|
|
className="h-3 w-3"
|
|
/>
|
|
{target.siteName
|
|
? `${target.siteName} (${target.ip}:${target.port})`
|
|
: `${target.ip}:${target.port}`}
|
|
</div>
|
|
<span
|
|
className={`capitalize ${
|
|
target.healthStatus === "healthy"
|
|
? "text-green-500"
|
|
: "text-destructive"
|
|
}`}
|
|
>
|
|
{target.healthStatus}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
))}
|
|
</>
|
|
)}
|
|
{unknownTargets.length > 0 && (
|
|
<>
|
|
{unknownTargets.map((target) => (
|
|
<DropdownMenuItem
|
|
key={target.targetId}
|
|
className="flex items-center justify-between gap-4"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<StatusIcon
|
|
status="unknown"
|
|
className="h-3 w-3"
|
|
/>
|
|
{target.siteName
|
|
? `${target.siteName} (${target.ip}:${target.port})`
|
|
: `${target.ip}:${target.port}`}
|
|
</div>
|
|
<span className="text-muted-foreground">
|
|
{!target.enabled
|
|
? t("disabled")
|
|
: t("resourcesTableNotMonitored")}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
))}
|
|
</>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
}
|
|
|
|
const proxyColumns: ExtendedColumnDef<ResourceRow>[] = [
|
|
{
|
|
accessorKey: "name",
|
|
enableHiding: false,
|
|
friendlyName: t("name"),
|
|
header: () => {
|
|
const nameOrder = getSortDirection("name", searchParams);
|
|
const Icon =
|
|
nameOrder === "asc"
|
|
? ArrowDown01Icon
|
|
: nameOrder === "desc"
|
|
? ArrowUp10Icon
|
|
: ChevronsUpDownIcon;
|
|
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
className="p-3"
|
|
onClick={() => toggleSort("name")}
|
|
>
|
|
{t("name")}
|
|
<Icon className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
id: "niceId",
|
|
accessorKey: "nice",
|
|
friendlyName: t("identifier"),
|
|
enableHiding: true,
|
|
header: () => <span className="p-3">{t("identifier")}</span>,
|
|
cell: ({ row }) => {
|
|
return <span>{row.original.nice || "-"}</span>;
|
|
}
|
|
},
|
|
{
|
|
id: "sites",
|
|
accessorFn: (row) =>
|
|
row.sites.map((s) => s.siteName).join(", "),
|
|
friendlyName: t("sites"),
|
|
header: () => (
|
|
<Popover open={siteFilterOpen} onOpenChange={setSiteFilterOpen}>
|
|
<PopoverTrigger asChild>
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
role="combobox"
|
|
className={cn(
|
|
"justify-between text-sm h-8 px-2 w-full p-3",
|
|
!selectedSite && "text-muted-foreground"
|
|
)}
|
|
>
|
|
<div className="flex items-center gap-2 min-w-0">
|
|
{t("sites")}
|
|
<Funnel className="size-4 flex-none" />
|
|
{selectedSite && (
|
|
<Badge
|
|
className="truncate max-w-[10rem]"
|
|
variant="secondary"
|
|
>
|
|
{selectedSite.name}
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent
|
|
className={dataTableFilterPopoverContentClassName}
|
|
align="start"
|
|
>
|
|
<div className="border-b p-1">
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
size="sm"
|
|
className="h-8 w-full justify-start font-normal"
|
|
onClick={clearSiteFilter}
|
|
>
|
|
{t("standaloneHcFilterAnySite")}
|
|
</Button>
|
|
</div>
|
|
<SitesSelector
|
|
orgId={orgId}
|
|
selectedSite={selectedSite}
|
|
onSelectSite={onPickSite}
|
|
/>
|
|
</PopoverContent>
|
|
</Popover>
|
|
),
|
|
cell: ({ row }) => (
|
|
<ResourceSitesStatusCell
|
|
orgId={row.original.orgId}
|
|
resourceSites={row.original.sites}
|
|
/>
|
|
)
|
|
},
|
|
{
|
|
accessorKey: "protocol",
|
|
friendlyName: t("protocol"),
|
|
enableHiding: true,
|
|
header: () => <span className="p-3">{t("protocol")}</span>,
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return (
|
|
<span>
|
|
{resourceRow.http
|
|
? resourceRow.ssl
|
|
? "HTTPS"
|
|
: "HTTP"
|
|
: resourceRow.protocol.toUpperCase()}
|
|
</span>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
id: "status",
|
|
accessorKey: "status",
|
|
friendlyName: t("status"),
|
|
header: () => (
|
|
<ColumnFilterButton
|
|
options={[
|
|
{ value: "healthy", label: t("resourcesTableHealthy") },
|
|
{
|
|
value: "degraded",
|
|
label: t("resourcesTableDegraded")
|
|
},
|
|
{
|
|
value: "unhealty",
|
|
label: t("resourcesTableUnhealthy")
|
|
},
|
|
{ value: "unknown", label: t("resourcesTableUnknown") }
|
|
]}
|
|
selectedValue={
|
|
searchParams.get("healthStatus") ?? undefined
|
|
}
|
|
onValueChange={(value) =>
|
|
handleFilterChange("healthStatus", value)
|
|
}
|
|
searchPlaceholder={t("searchPlaceholder")}
|
|
emptyMessage={t("emptySearchOptions")}
|
|
label={t("status")}
|
|
className="p-3"
|
|
/>
|
|
),
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return <TargetStatusCell targets={resourceRow.targets} />;
|
|
},
|
|
sortingFn: (rowA, rowB) => {
|
|
const statusA = rowA.original.health;
|
|
const statusB = rowB.original.health;
|
|
if (!statusA && !statusB) return 0;
|
|
if (!statusA) return 1;
|
|
if (!statusB) return -1;
|
|
const statusOrder = {
|
|
online: 3,
|
|
degraded: 2,
|
|
unhealthy: 1,
|
|
unknown: 0
|
|
};
|
|
return statusOrder[statusA] - statusOrder[statusB];
|
|
}
|
|
},
|
|
{
|
|
id: "statusHistory",
|
|
friendlyName: t("uptime30d"),
|
|
header: () => <span className="p-3">{t("uptime30d")}</span>,
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return <UptimeMiniBar resourceId={resourceRow.id} days={30} />;
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "domain",
|
|
friendlyName: t("access"),
|
|
header: () => <span className="p-3">{t("access")}</span>,
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return (
|
|
<div className="flex items-center space-x-2">
|
|
{!resourceRow.http ? (
|
|
<CopyToClipboard
|
|
text={resourceRow.proxyPort?.toString() || ""}
|
|
isLink={false}
|
|
/>
|
|
) : !resourceRow.domainId ? (
|
|
<InfoPopup
|
|
info={t("domainNotFoundDescription")}
|
|
text={t("domainNotFound")}
|
|
/>
|
|
) : (
|
|
<CopyToClipboard
|
|
text={resourceRow.domain}
|
|
isLink={true}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "authState",
|
|
friendlyName: t("authentication"),
|
|
header: () => (
|
|
<ColumnFilterButton
|
|
options={[
|
|
{ value: "protected", label: t("protected") },
|
|
{ value: "not_protected", label: t("notProtected") },
|
|
{ value: "none", label: t("none") }
|
|
]}
|
|
selectedValue={searchParams.get("authState") ?? undefined}
|
|
onValueChange={(value) =>
|
|
handleFilterChange("authState", value)
|
|
}
|
|
searchPlaceholder={t("searchPlaceholder")}
|
|
emptyMessage={t("emptySearchOptions")}
|
|
label={t("authentication")}
|
|
className="p-3"
|
|
/>
|
|
),
|
|
cell: ({ row }) => {
|
|
const resourceRow = row.original;
|
|
return (
|
|
<div>
|
|
{resourceRow.authState === "protected" ? (
|
|
<span className="flex items-center space-x-2">
|
|
<ShieldCheck className="w-4 h-4 text-green-500" />
|
|
<span>{t("protected")}</span>
|
|
</span>
|
|
) : resourceRow.authState === "not_protected" ? (
|
|
<span className="flex items-center space-x-2">
|
|
<ShieldOff className="w-4 h-4 text-yellow-500" />
|
|
<span>{t("notProtected")}</span>
|
|
</span>
|
|
) : (
|
|
<span>-</span>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
accessorKey: "enabled",
|
|
friendlyName: t("enabled"),
|
|
header: () => (
|
|
<ColumnFilterButton
|
|
options={[
|
|
{ value: "true", label: t("enabled") },
|
|
{ value: "false", label: t("disabled") }
|
|
]}
|
|
selectedValue={booleanSearchFilterSchema.parse(
|
|
searchParams.get("enabled")
|
|
)}
|
|
onValueChange={(value) =>
|
|
handleFilterChange("enabled", value)
|
|
}
|
|
searchPlaceholder={t("searchPlaceholder")}
|
|
emptyMessage={t("emptySearchOptions")}
|
|
label={t("enabled")}
|
|
className="p-3"
|
|
/>
|
|
),
|
|
cell: ({ row }) => (
|
|
<ResourceEnabledForm
|
|
resource={row.original}
|
|
onToggleResourceEnabled={toggleResourceEnabled}
|
|
/>
|
|
)
|
|
},
|
|
{
|
|
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">
|
|
<Link
|
|
className="block w-full"
|
|
href={`/${resourceRow.orgId}/settings/resources/proxy/${resourceRow.nice}`}
|
|
>
|
|
<DropdownMenuItem>
|
|
{t("viewSettings")}
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
<DropdownMenuItem
|
|
onClick={() => {
|
|
setSelectedResource(resourceRow);
|
|
setIsDeleteModalOpen(true);
|
|
}}
|
|
>
|
|
<span className="text-red-500">
|
|
{t("delete")}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
<Link
|
|
href={`/${resourceRow.orgId}/settings/resources/proxy/${resourceRow.nice}`}
|
|
>
|
|
<Button variant={"outline"}>
|
|
{t("edit")}
|
|
<ArrowRight className="ml-2 w-4 h-4" />
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
];
|
|
|
|
const booleanSearchFilterSchema = z
|
|
.enum(["true", "false"])
|
|
.optional()
|
|
.catch(undefined);
|
|
|
|
function handleFilterChange(
|
|
column: string,
|
|
value: string | undefined | null
|
|
) {
|
|
searchParams.delete(column);
|
|
searchParams.delete("page");
|
|
|
|
if (value) {
|
|
searchParams.set(column, value);
|
|
}
|
|
filter({
|
|
searchParams
|
|
});
|
|
}
|
|
|
|
const clearSiteFilter = () => {
|
|
handleFilterChange("siteId", undefined);
|
|
setSiteFilterOpen(false);
|
|
};
|
|
|
|
const onPickSite = (site: Selectedsite) => {
|
|
handleFilterChange("siteId", String(site.siteId));
|
|
setSiteFilterOpen(false);
|
|
};
|
|
|
|
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 (
|
|
<>
|
|
{selectedResource && (
|
|
<ConfirmDeleteDialog
|
|
open={isDeleteModalOpen}
|
|
setOpen={(val) => {
|
|
setIsDeleteModalOpen(val);
|
|
setSelectedResource(null);
|
|
}}
|
|
dialog={
|
|
<div className="space-y-2">
|
|
<p>{t("resourceQuestionRemove")}</p>
|
|
<p>{t("resourceMessageRemove")}</p>
|
|
</div>
|
|
}
|
|
buttonText={t("resourceDeleteConfirm")}
|
|
onConfirm={async () => deleteResource(selectedResource!.id)}
|
|
string={selectedResource.name}
|
|
title={t("resourceDelete")}
|
|
/>
|
|
)}
|
|
|
|
<ControlledDataTable
|
|
columns={proxyColumns}
|
|
rows={resources}
|
|
tableId="proxy-resources"
|
|
searchPlaceholder={t("resourcesSearch")}
|
|
pagination={pagination}
|
|
rowCount={rowCount}
|
|
onSearch={handleSearchChange}
|
|
onPaginationChange={handlePaginationChange}
|
|
onAdd={() =>
|
|
startNavigation(() =>
|
|
router.push(`/${orgId}/settings/resources/proxy/create`)
|
|
)
|
|
}
|
|
addButtonText={t("resourceAdd")}
|
|
onRefresh={refreshData}
|
|
isRefreshing={isRefreshing || isFiltering}
|
|
isNavigatingToAddPage={isNavigatingToAddPage}
|
|
enableColumnVisibility
|
|
columnVisibility={{ niceId: false, protocol: false }}
|
|
stickyLeftColumn="name"
|
|
stickyRightColumn="actions"
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
type ResourceEnabledFormProps = {
|
|
resource: ResourceRow;
|
|
onToggleResourceEnabled: (
|
|
val: boolean,
|
|
resourceId: number
|
|
) => Promise<void>;
|
|
};
|
|
|
|
function ResourceEnabledForm({
|
|
resource,
|
|
onToggleResourceEnabled
|
|
}: ResourceEnabledFormProps) {
|
|
const enabled = resource.http
|
|
? !!resource.domainId && resource.enabled
|
|
: resource.enabled;
|
|
const [optimisticEnabled, setOptimisticEnabled] = useOptimistic(enabled);
|
|
|
|
const formRef = useRef<ComponentRef<"form">>(null);
|
|
|
|
async function submitAction(formData: FormData) {
|
|
const newEnabled = !(formData.get("enabled") === "on");
|
|
setOptimisticEnabled(newEnabled);
|
|
await onToggleResourceEnabled(newEnabled, resource.id);
|
|
}
|
|
|
|
return (
|
|
<form action={submitAction} ref={formRef}>
|
|
<Switch
|
|
checked={optimisticEnabled}
|
|
disabled={
|
|
(resource.http && !resource.domainId) ||
|
|
optimisticEnabled !== enabled
|
|
}
|
|
name="enabled"
|
|
onCheckedChange={() => formRef.current?.requestSubmit()}
|
|
/>
|
|
</form>
|
|
);
|
|
}
|