2022-04-16 02:58:34 +00:00
|
|
|
import { useState } from "react";
|
|
|
|
import { Controller, useForm } from "react-hook-form";
|
|
|
|
|
2022-06-28 20:40:58 +00:00
|
|
|
import dayjs from "@calcom/dayjs";
|
2022-04-16 02:58:34 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
import showToast from "@calcom/lib/notification";
|
2022-07-22 17:27:06 +00:00
|
|
|
import { trpc } from "@calcom/trpc/react";
|
2022-04-16 02:58:34 +00:00
|
|
|
import Button from "@calcom/ui/Button";
|
|
|
|
import { DialogFooter } from "@calcom/ui/Dialog";
|
2022-07-27 02:24:00 +00:00
|
|
|
import { ClipboardCopyIcon } from "@calcom/ui/Icon";
|
2022-04-16 02:58:34 +00:00
|
|
|
import Switch from "@calcom/ui/Switch";
|
2022-05-05 21:16:25 +00:00
|
|
|
import { Tooltip } from "@calcom/ui/Tooltip";
|
2022-04-16 02:58:34 +00:00
|
|
|
import { Form, TextField } from "@calcom/ui/form/fields";
|
2022-08-24 20:18:42 +00:00
|
|
|
import { DatePicker } from "@calcom/ui/v2";
|
2022-04-16 02:58:34 +00:00
|
|
|
|
2022-07-28 19:58:26 +00:00
|
|
|
import LicenseRequired from "../../common/components/LicenseRequired";
|
2022-05-26 17:07:14 +00:00
|
|
|
import type { TApiKeys } from "./ApiKeyListItem";
|
2022-04-16 02:58:34 +00:00
|
|
|
|
|
|
|
export default function ApiKeyDialogForm(props: {
|
|
|
|
title: string;
|
2022-05-26 17:07:14 +00:00
|
|
|
defaultValues?: Omit<TApiKeys, "userId" | "createdAt" | "lastUsedAt"> & { neverExpires?: boolean };
|
2022-04-16 02:58:34 +00:00
|
|
|
handleClose: () => void;
|
|
|
|
}) {
|
|
|
|
const { t } = useLocale();
|
|
|
|
const utils = trpc.useContext();
|
|
|
|
|
|
|
|
const {
|
|
|
|
defaultValues = {
|
|
|
|
note: "",
|
|
|
|
neverExpires: false,
|
|
|
|
expiresAt: dayjs().add(1, "month").toDate(),
|
|
|
|
},
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
const [apiKey, setApiKey] = useState("");
|
|
|
|
const [successfulNewApiKeyModal, setSuccessfulNewApiKeyModal] = useState(false);
|
|
|
|
const [apiKeyDetails, setApiKeyDetails] = useState({
|
|
|
|
id: "",
|
|
|
|
hashedKey: "",
|
|
|
|
expiresAt: null as Date | null,
|
|
|
|
note: "" as string | null,
|
|
|
|
neverExpires: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
const form = useForm({
|
|
|
|
defaultValues,
|
|
|
|
});
|
|
|
|
const watchNeverExpires = form.watch("neverExpires");
|
|
|
|
|
|
|
|
return (
|
2022-05-26 17:07:14 +00:00
|
|
|
<LicenseRequired>
|
2022-04-16 02:58:34 +00:00
|
|
|
{successfulNewApiKeyModal ? (
|
|
|
|
<>
|
|
|
|
<div className="mb-10">
|
|
|
|
<h2 className="font-semi-bold font-cal mb-2 text-xl tracking-wide text-gray-900">
|
|
|
|
{apiKeyDetails ? t("success_api_key_edited") : t("success_api_key_created")}
|
|
|
|
</h2>
|
|
|
|
<div className="text-sm text-gray-900">
|
|
|
|
<span className="font-semibold">{t("success_api_key_created_bold_tagline")}</span>{" "}
|
|
|
|
{t("you_will_only_view_it_once")}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div className="flex">
|
|
|
|
<code className="my-2 mr-1 w-full truncate rounded-sm bg-gray-100 py-2 px-3 align-middle font-mono text-gray-800">
|
|
|
|
{apiKey}
|
|
|
|
</code>
|
2022-07-14 11:32:28 +00:00
|
|
|
<Tooltip side="top" content={t("copy_to_clipboard")}>
|
2022-04-16 02:58:34 +00:00
|
|
|
<Button
|
|
|
|
onClick={() => {
|
|
|
|
navigator.clipboard.writeText(apiKey);
|
|
|
|
showToast(t("api_key_copied"), "success");
|
|
|
|
}}
|
|
|
|
type="button"
|
|
|
|
className=" my-2 px-4 text-base">
|
|
|
|
<ClipboardCopyIcon className="mr-2 h-5 w-5 text-neutral-100" />
|
|
|
|
{t("copy")}
|
|
|
|
</Button>
|
|
|
|
</Tooltip>
|
|
|
|
</div>
|
|
|
|
<span className="text-sm text-gray-400">
|
|
|
|
{apiKeyDetails.neverExpires
|
|
|
|
? t("never_expire_key")
|
|
|
|
: `${t("expires")} ${apiKeyDetails?.expiresAt?.toLocaleDateString()}`}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
|
|
<Button type="button" color="secondary" onClick={props.handleClose} tabIndex={-1}>
|
|
|
|
{t("done")}
|
|
|
|
</Button>
|
|
|
|
</DialogFooter>
|
|
|
|
</>
|
|
|
|
) : (
|
2022-05-26 17:07:14 +00:00
|
|
|
<Form<Omit<TApiKeys, "userId" | "createdAt" | "lastUsedAt"> & { neverExpires?: boolean }>
|
2022-04-16 02:58:34 +00:00
|
|
|
form={form}
|
|
|
|
handleSubmit={async (event) => {
|
|
|
|
const apiKey = await utils.client.mutation("viewer.apiKeys.create", event);
|
|
|
|
setApiKey(apiKey);
|
2022-05-26 17:07:14 +00:00
|
|
|
setApiKeyDetails({ ...event, neverExpires: !!event.neverExpires });
|
2022-04-16 02:58:34 +00:00
|
|
|
await utils.invalidateQueries(["viewer.apiKeys.list"]);
|
|
|
|
setSuccessfulNewApiKeyModal(true);
|
|
|
|
}}
|
|
|
|
className="space-y-4">
|
2022-05-06 21:44:33 +00:00
|
|
|
<div className="mb-10 mt-1">
|
2022-04-16 02:58:34 +00:00
|
|
|
<h2 className="font-semi-bold font-cal text-xl tracking-wide text-gray-900">{props.title}</h2>
|
|
|
|
<p className="mt-1 mb-5 text-sm text-gray-500">{t("api_key_modal_subtitle")}</p>
|
|
|
|
</div>
|
2022-05-06 21:44:33 +00:00
|
|
|
<div>
|
|
|
|
<TextField
|
|
|
|
label={t("personal_note")}
|
|
|
|
placeholder={t("personal_note_placeholder")}
|
|
|
|
{...form.register("note")}
|
|
|
|
type="text"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-04-16 02:58:34 +00:00
|
|
|
<div className="flex flex-col">
|
|
|
|
<div className="flex justify-between py-2">
|
|
|
|
<span className="block text-sm font-medium text-gray-700">{t("expire_date")}</span>
|
|
|
|
<Controller
|
|
|
|
name="neverExpires"
|
|
|
|
render={({ field: { onChange, value } }) => (
|
|
|
|
<Switch label={t("never_expire_key")} onCheckedChange={onChange} checked={value} />
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<Controller
|
|
|
|
name="expiresAt"
|
|
|
|
render={({ field: { onChange, value } }) => (
|
|
|
|
<DatePicker
|
|
|
|
disabled={watchNeverExpires}
|
|
|
|
minDate={new Date()}
|
|
|
|
date={value}
|
|
|
|
onDatesChange={onChange}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
|
|
<Button type="button" color="secondary" onClick={props.handleClose} tabIndex={-1}>
|
|
|
|
{t("cancel")}
|
|
|
|
</Button>
|
|
|
|
<Button type="submit" loading={form.formState.isSubmitting}>
|
|
|
|
{apiKeyDetails ? t("save") : t("create")}
|
|
|
|
</Button>
|
|
|
|
</DialogFooter>
|
|
|
|
</Form>
|
|
|
|
)}
|
2022-05-26 17:07:14 +00:00
|
|
|
</LicenseRequired>
|
2022-04-16 02:58:34 +00:00
|
|
|
);
|
|
|
|
}
|