mirror of
https://github.com/karakeep-app/karakeep.git
synced 2026-02-28 18:25:55 +01:00
152 lines
4.0 KiB
TypeScript
152 lines
4.0 KiB
TypeScript
"use client";
|
|
|
|
import type { SubmitErrorHandler } from "react-hook-form";
|
|
import { useState } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import { ActionButton } from "@/components/ui/action-button";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { toast } from "@/components/ui/sonner";
|
|
import { useTranslation } from "@/lib/i18n/client";
|
|
import { api } from "@/lib/trpc";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { PlusCircle } from "lucide-react";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
|
|
import ApiKeySuccess from "./ApiKeySuccess";
|
|
|
|
function AddApiKeyForm({ onSuccess }: { onSuccess: (key: string) => void }) {
|
|
const { t } = useTranslation();
|
|
const formSchema = z.object({
|
|
name: z.string(),
|
|
});
|
|
const router = useRouter();
|
|
const mutator = api.apiKeys.create.useMutation({
|
|
onSuccess: (resp) => {
|
|
onSuccess(resp.key);
|
|
router.refresh();
|
|
},
|
|
onError: () => {
|
|
toast({
|
|
description: t("common.something_went_wrong"),
|
|
variant: "destructive",
|
|
});
|
|
},
|
|
});
|
|
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
});
|
|
|
|
async function onSubmit(value: z.infer<typeof formSchema>) {
|
|
mutator.mutate({ name: value.name });
|
|
}
|
|
|
|
const onError: SubmitErrorHandler<z.infer<typeof formSchema>> = (errors) => {
|
|
toast({
|
|
description: Object.values(errors)
|
|
.map((v) => v.message)
|
|
.join("\n"),
|
|
variant: "destructive",
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit, onError)}
|
|
className="flex w-full space-x-3 space-y-8 pt-4"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem className="flex-1">
|
|
<FormLabel>{t("common.name")}</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="text"
|
|
placeholder={t("common.name")}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>
|
|
{t("settings.api_keys.new_api_key_desc")}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
<ActionButton type="submit" loading={mutator.isPending}>
|
|
{t("actions.create")}
|
|
</ActionButton>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
export default function AddApiKey() {
|
|
const { t } = useTranslation();
|
|
const [key, setKey] = useState<string | undefined>(undefined);
|
|
const [dialogOpen, setDialogOpen] = useState<boolean>(false);
|
|
return (
|
|
<Dialog open={dialogOpen} onOpenChange={setDialogOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button>
|
|
<PlusCircle className="mr-2 h-4 w-4" />
|
|
{t("settings.api_keys.new_api_key")}
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>
|
|
{key
|
|
? t("settings.api_keys.key_success")
|
|
: t("settings.api_keys.new_api_key")}
|
|
</DialogTitle>
|
|
</DialogHeader>
|
|
{key ? (
|
|
<ApiKeySuccess
|
|
apiKey={key}
|
|
message={t("settings.api_keys.key_success")}
|
|
/>
|
|
) : (
|
|
<AddApiKeyForm onSuccess={setKey} />
|
|
)}
|
|
<DialogFooter className="sm:justify-end">
|
|
<DialogClose asChild>
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
onClick={() => setKey(undefined)}
|
|
>
|
|
{t("actions.close")}
|
|
</Button>
|
|
</DialogClose>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|