"use client"; import { ColumnDef } from "@tanstack/react-table"; import { OrgApiKeysDataTable } from "@app/components/OrgApiKeysDataTable"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "@app/components/ui/dropdown-menu"; import { Button } from "@app/components/ui/button"; import { ArrowRight, ArrowUpDown, MoreHorizontal } from "lucide-react"; import Link from "next/link"; import { useRouter } from "next/navigation"; import { useState } 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 moment from "moment"; import { useTranslations } from "next-intl"; export type OrgApiKeyRow = { id: string; key: string; name: string; createdAt: string; }; type OrgApiKeyTableProps = { apiKeys: OrgApiKeyRow[]; orgId: string; }; export default function OrgApiKeysTable({ apiKeys, orgId }: OrgApiKeyTableProps) { const router = useRouter(); const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false); const [selected, setSelected] = useState(null); const [rows, setRows] = useState(apiKeys); const api = createApiClient(useEnvContext()); const t = useTranslations(); const deleteSite = (apiKeyId: string) => { api.delete(`/org/${orgId}/api-key/${apiKeyId}`) .catch((e) => { console.error(t("apiKeysErrorDelete"), e); toast({ variant: "destructive", title: t("apiKeysErrorDelete"), description: formatAxiosError( e, t("apiKeysErrorDeleteMessage") ) }); }) .then(() => { router.refresh(); setIsDeleteModalOpen(false); const newRows = rows.filter((row) => row.id !== apiKeyId); setRows(newRows); }); }; const columns: ColumnDef[] = [ { accessorKey: "name", header: ({ column }) => { return ( ); } }, { accessorKey: "key", header: t("key"), cell: ({ row }) => { const r = row.original; return {r.key}; } }, { accessorKey: "createdAt", header: t("createdAt"), cell: ({ row }) => { const r = row.original; return {moment(r.createdAt).format("lll")}; } }, { id: "actions", cell: ({ row }) => { const r = row.original; return (
{ setSelected(r); }} > {t("viewSettings")} { setSelected(r); setIsDeleteModalOpen(true); }} > {t("delete")}
); } } ]; return ( <> {selected && ( { setIsDeleteModalOpen(val); setSelected(null); }} dialog={

{t("apiKeysQuestionRemove", { selectedApiKey: selected?.name || selected?.id })}

{t("apiKeysMessageRemove")}

{t("apiKeysMessageConfirm")}

} buttonText={t("apiKeysDeleteConfirm")} onConfirm={async () => deleteSite(selected!.id)} string={selected.name} title={t("apiKeysDelete")} /> )} { router.push(`/${orgId}/settings/api-keys/create`); }} /> ); }