"use client"; import { SettingsContainer, SettingsSection, SettingsSectionBody, SettingsSectionDescription, SettingsSectionForm, SettingsSectionHeader, SettingsSectionTitle } from "@app/components/Settings"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "@app/components/ui/form"; import HeaderTitle from "@app/components/SettingsSectionTitle"; import { z } from "zod"; import { useEffect, useState } from "react"; import { useForm } from "react-hook-form"; import { zodResolver } from "@hookform/resolvers/zod"; import { Input } from "@app/components/ui/input"; import { InfoIcon } from "lucide-react"; import { Button } from "@app/components/ui/button"; import { Alert, AlertDescription, AlertTitle } from "@app/components/ui/alert"; import { createApiClient, formatAxiosError } from "@app/lib/api"; import { useEnvContext } from "@app/hooks/useEnvContext"; import { toast } from "@app/hooks/useToast"; import { AxiosResponse } from "axios"; import { useRouter } from "next/navigation"; import { CreateOrgApiKeyBody, CreateOrgApiKeyResponse } from "@server/routers/apiKeys"; import { InfoSection, InfoSectionContent, InfoSections, InfoSectionTitle } from "@app/components/InfoSection"; import CopyToClipboard from "@app/components/CopyToClipboard"; import moment from "moment"; import CopyTextBox from "@app/components/CopyTextBox"; import PermissionsSelectBox from "@app/components/PermissionsSelectBox"; import { useTranslations } from "next-intl"; import { Credenza, CredenzaBody, CredenzaContent, CredenzaDescription, CredenzaFooter, CredenzaHeader, CredenzaTitle } from "@app/components/Credenza"; export default function Page() { const { env } = useEnvContext(); const api = createApiClient({ env }); const router = useRouter(); const t = useTranslations(); const [loadingPage, setLoadingPage] = useState(true); const [createLoading, setCreateLoading] = useState(false); const [apiKey, setApiKey] = useState(null); const [isApiKeyDialogOpen, setIsApiKeyDialogOpen] = useState(false); const [selectedPermissions, setSelectedPermissions] = useState< Record >({}); const createFormSchema = z.object({ name: z .string() .min(2, { message: t("nameMin", { len: 2 }) }) .max(255, { message: t("nameMax", { len: 255 }) }) }); type CreateFormValues = z.infer; const form = useForm({ resolver: zodResolver(createFormSchema), defaultValues: { name: "" } }); function goToApiKeysList() { router.push(`/admin/api-keys`); } async function onSubmit(data: CreateFormValues) { setCreateLoading(true); const payload: CreateOrgApiKeyBody = { name: data.name }; const res = await api .put>(`/api-key`, payload) .catch((e) => { toast({ variant: "destructive", title: t("apiKeysErrorCreate"), description: formatAxiosError(e) }); }); if (res && res.status === 201) { const created = res.data.data; const actionsRes = await api .post(`/api-key/${created.apiKeyId}/actions`, { actionIds: Object.keys(selectedPermissions).filter( (key) => selectedPermissions[key] ) }) .catch((e) => { console.error(t("apiKeysErrorSetPermission"), e); toast({ variant: "destructive", title: t("apiKeysErrorSetPermission"), description: formatAxiosError(e) }); }); if (actionsRes) { setApiKey(created); setIsApiKeyDialogOpen(true); } } setCreateLoading(false); } useEffect(() => { const load = async () => { setLoadingPage(false); }; load(); }, []); return ( <>
{!loadingPage && (
{t("apiKeysTitle")}
{ if (e.key === "Enter") { e.preventDefault(); } }} className="space-y-4" id="create-site-form" > ( {t("name")} )} />
{t("apiKeysGeneralSettings")} {t("apiKeysGeneralSettingsDescription")}
)} { setIsApiKeyDialogOpen(open); if (!open && apiKey) { goToApiKeysList(); } }} > {t("apiKeysList")} {t("apiKeysSaveDescription")} {apiKey && (
{t("name")} {t("created")} {moment(apiKey.createdAt).format( "lll" )} {t("apiKeysSave")} {t("apiKeysSaveDescription")}
)}
); }