mirror of
https://github.com/fosrl/pangolin.git
synced 2026-06-12 02:17:40 +00:00
308 lines
11 KiB
TypeScript
308 lines
11 KiB
TypeScript
"use client";
|
|
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
import { useNavigationContext } from "@app/hooks/useNavigationContext";
|
|
import { toast } from "@app/hooks/useToast";
|
|
import { createApiClient, formatAxiosError } from "@app/lib/api";
|
|
import type {
|
|
AttachedResource,
|
|
ListResourcePoliciesResponse
|
|
} from "@server/routers/resource/types";
|
|
import type { PaginationState } from "@tanstack/react-table";
|
|
import { ArrowRight, ChevronDown, 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 { useDebouncedCallback } from "use-debounce";
|
|
import { Button } from "./ui/button";
|
|
import { ControlledDataTable } from "./ui/controlled-data-table";
|
|
import type { ExtendedColumnDef } from "./ui/data-table";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger
|
|
} from "./ui/dropdown-menu";
|
|
import ConfirmDeleteDialog from "./ConfirmDeleteDialog";
|
|
import { PaidFeaturesAlert } from "./PaidFeaturesAlert";
|
|
import { tierMatrix, TierFeature } from "@server/lib/billing/tierMatrix";
|
|
|
|
type ResourcePolicyRow = ListResourcePoliciesResponse["policies"][number];
|
|
|
|
export type ResourcePoliciesTableProps = {
|
|
policies: Array<ResourcePolicyRow>;
|
|
orgId: string;
|
|
pagination: PaginationState;
|
|
rowCount: number;
|
|
};
|
|
|
|
export function ResourcePoliciesTable({
|
|
policies,
|
|
orgId,
|
|
pagination,
|
|
rowCount
|
|
}: ResourcePoliciesTableProps) {
|
|
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 [selectedResourcePolicy, setSelectedResourcePolicy] =
|
|
useState<ResourcePolicyRow | null>(null);
|
|
|
|
const deleteResourcePolicy = async (resourcePolicyId: number) => {
|
|
await api
|
|
.delete(`/resource-policy/${resourcePolicyId}`)
|
|
.catch((e) => {
|
|
console.error(t("resourceErrorDelte"), e);
|
|
toast({
|
|
variant: "destructive",
|
|
title: t("resourceErrorDelte"),
|
|
description: formatAxiosError(e, t("resourceErrorDelte"))
|
|
});
|
|
})
|
|
.then(() => {
|
|
router.refresh();
|
|
setIsDeleteModalOpen(false);
|
|
});
|
|
};
|
|
|
|
const [isRefreshing, startTransition] = useTransition();
|
|
const [isNavigatingToAddPage, startNavigation] = useTransition();
|
|
|
|
const refreshData = () => {
|
|
startTransition(() => {
|
|
try {
|
|
router.refresh();
|
|
} catch (error) {
|
|
toast({
|
|
title: t("error"),
|
|
description: t("refreshError"),
|
|
variant: "destructive"
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
function ResourceListCell({
|
|
orgId,
|
|
resources
|
|
}: {
|
|
orgId: string;
|
|
resources?: AttachedResource[];
|
|
}) {
|
|
if (!resources || resources.length === 0) {
|
|
return <span>-</span>;
|
|
}
|
|
|
|
const countLabel = t("resourcePoliciesAttachedResourcesCount", {
|
|
count: resources.length
|
|
});
|
|
|
|
return (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
className="flex h-8 items-center gap-2 px-0 font-normal"
|
|
>
|
|
<span className="text-sm tabular-nums">
|
|
{countLabel}
|
|
</span>
|
|
<ChevronDown className="h-3 w-3 shrink-0" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start" className="min-w-56">
|
|
{resources.map((resource) => (
|
|
<DropdownMenuItem key={resource.resourceId} asChild>
|
|
<Link
|
|
href={`/${orgId}/settings/resources/public/${resource.niceId}`}
|
|
className="flex cursor-pointer items-center justify-between gap-4"
|
|
>
|
|
<div className="flex min-w-0 items-center gap-2">
|
|
<span className="truncate">
|
|
{resource.name}
|
|
</span>
|
|
</div>
|
|
<span className="shrink-0 text-muted-foreground">
|
|
{resource.fullDomain}
|
|
</span>
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
))}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
}
|
|
|
|
const proxyColumns: ExtendedColumnDef<ResourcePolicyRow>[] = [
|
|
{
|
|
accessorKey: "name",
|
|
enableHiding: false,
|
|
friendlyName: t("name"),
|
|
header: () => <span className="p-3">{t("name")}</span>,
|
|
cell: ({ row }) => <span>{row.original.name}</span>
|
|
},
|
|
{
|
|
id: "niceId",
|
|
accessorKey: "nice",
|
|
friendlyName: t("identifier"),
|
|
enableHiding: true,
|
|
header: () => <span className="p-3">{t("identifier")}</span>,
|
|
cell: ({ row }) => {
|
|
return <span>{row.original.niceId || "-"}</span>;
|
|
}
|
|
},
|
|
{
|
|
id: "resources",
|
|
accessorKey: "resources",
|
|
friendlyName: t("resourcePoliciesAttachedResourcesColumnTitle"),
|
|
header: () => (
|
|
<span className="p-3">
|
|
{t("resourcePoliciesAttachedResourcesColumnTitle")}
|
|
</span>
|
|
),
|
|
cell: ({ row }) => {
|
|
return (
|
|
<ResourceListCell
|
|
orgId={row.original.orgId}
|
|
resources={row.original.resources}
|
|
/>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
id: "actions",
|
|
enableHiding: false,
|
|
header: () => <span className="p-3"></span>,
|
|
cell: ({ row }) => {
|
|
const policyRow = 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={`/${policyRow.orgId}/settings/policies/resources/public/${policyRow.niceId}`}
|
|
>
|
|
<DropdownMenuItem>
|
|
{t("viewSettings")}
|
|
</DropdownMenuItem>
|
|
</Link>
|
|
<DropdownMenuItem
|
|
onClick={() => {
|
|
setSelectedResourcePolicy(policyRow);
|
|
setIsDeleteModalOpen(true);
|
|
}}
|
|
>
|
|
<span className="text-red-500">
|
|
{t("delete")}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
<Link
|
|
href={`/${policyRow.orgId}/settings/policies/resources/public/${policyRow.niceId}`}
|
|
>
|
|
<Button variant={"outline"}>
|
|
{t("edit")}
|
|
<ArrowRight className="ml-2 w-4 h-4" />
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
];
|
|
|
|
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 (
|
|
<>
|
|
<PaidFeaturesAlert
|
|
tiers={tierMatrix[TierFeature.ResourcePolicies]}
|
|
/>
|
|
{selectedResourcePolicy && (
|
|
<ConfirmDeleteDialog
|
|
open={isDeleteModalOpen}
|
|
setOpen={(val) => {
|
|
setIsDeleteModalOpen(val);
|
|
setSelectedResourcePolicy(null);
|
|
}}
|
|
dialog={
|
|
<div className="space-y-2">
|
|
<p>{t("resourcePolicyQuestionRemove")}</p>
|
|
<p>{t("resourcePolicyMessageRemove")}</p>
|
|
</div>
|
|
}
|
|
buttonText={t("resourcePolicyDeleteConfirm")}
|
|
onConfirm={async () =>
|
|
deleteResourcePolicy(
|
|
selectedResourcePolicy.resourcePolicyId
|
|
)
|
|
}
|
|
string={selectedResourcePolicy.name}
|
|
title={t("resourcePolicyDelete")}
|
|
/>
|
|
)}
|
|
<ControlledDataTable
|
|
columns={proxyColumns}
|
|
rows={policies}
|
|
tableId="resource-policies"
|
|
searchPlaceholder={t("resourcePoliciesSearch")}
|
|
pagination={pagination}
|
|
rowCount={rowCount}
|
|
searchQuery={searchParams.get("query")?.toString()}
|
|
onSearch={handleSearchChange}
|
|
onPaginationChange={handlePaginationChange}
|
|
onAdd={() =>
|
|
startNavigation(() =>
|
|
router.push(
|
|
`/${orgId}/settings/policies/resources/public/create`
|
|
)
|
|
)
|
|
}
|
|
addButtonText={t("resourcePoliciesAdd")}
|
|
onRefresh={refreshData}
|
|
isRefreshing={isRefreshing || isFiltering}
|
|
isNavigatingToAddPage={isNavigatingToAddPage}
|
|
enableColumnVisibility
|
|
columnVisibility={{ niceId: false }}
|
|
stickyLeftColumn="name"
|
|
stickyRightColumn="actions"
|
|
/>
|
|
</>
|
|
);
|
|
}
|