2022-06-13 22:12:27 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { useState } from "react";
|
|
|
|
import { useForm } from "react-hook-form";
|
|
|
|
import { Toaster } from "react-hot-toast";
|
|
|
|
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-11-23 02:55:25 +00:00
|
|
|
import { Alert, Button, Form, TextField } from "@calcom/ui";
|
2022-06-13 22:12:27 +00:00
|
|
|
|
|
|
|
export default function Exchange2013CalendarSetup() {
|
|
|
|
const { t } = useLocale();
|
|
|
|
const router = useRouter();
|
|
|
|
const form = useForm({
|
|
|
|
defaultValues: {
|
|
|
|
username: "",
|
|
|
|
password: "",
|
|
|
|
url: process.env.EXCHANGE_DEFAULT_EWS_URL || "",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const [errorMessage, setErrorMessage] = useState("");
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="flex h-screen bg-gray-200">
|
|
|
|
<div className="m-auto rounded bg-white p-5 md:w-[560px] md:p-10">
|
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
src="/api/app-store/exchange2013calendar/icon.svg"
|
|
|
|
alt="Exchange 2013 Calendar"
|
|
|
|
className="h-12 w-12 max-w-2xl"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="flex w-10/12 flex-col">
|
|
|
|
<h1 className="text-gray-600">{t("add_exchange2013")}</h1>
|
|
|
|
<div className="mt-1 text-sm">{t("credentials_stored_encrypted")}</div>
|
|
|
|
<div className="my-2 mt-3">
|
|
|
|
<Form
|
|
|
|
form={form}
|
|
|
|
handleSubmit={async (values) => {
|
|
|
|
setErrorMessage("");
|
|
|
|
const res = await fetch("/api/integrations/exchange2013calendar/add", {
|
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify(values),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
const json = await res.json();
|
|
|
|
if (!res.ok) {
|
|
|
|
setErrorMessage(json?.message || t("something_went_wrong"));
|
|
|
|
} else {
|
|
|
|
router.push(json.url);
|
|
|
|
}
|
|
|
|
}}>
|
|
|
|
<fieldset className="space-y-2" disabled={form.formState.isSubmitting}>
|
|
|
|
<TextField
|
|
|
|
required
|
|
|
|
type="text"
|
|
|
|
{...form.register("url")}
|
|
|
|
label={t("calendar_url")}
|
|
|
|
placeholder="https://example.com/Ews/Exchange.asmx"
|
|
|
|
/>
|
|
|
|
<TextField
|
|
|
|
required
|
|
|
|
type="text"
|
|
|
|
{...form.register("username")}
|
|
|
|
label="E-Mail"
|
|
|
|
placeholder="rickroll@example.com"
|
|
|
|
/>
|
|
|
|
<TextField
|
|
|
|
required
|
|
|
|
type="password"
|
|
|
|
{...form.register("password")}
|
|
|
|
label="Password"
|
|
|
|
placeholder="•••••••••••••"
|
|
|
|
autoComplete="password"
|
|
|
|
/>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
{errorMessage && <Alert severity="error" title={errorMessage} className="my-4" />}
|
2023-01-04 07:38:45 +00:00
|
|
|
<div className="mt-5 justify-end space-x-2 rtl:space-x-reverse sm:mt-4 sm:flex">
|
2022-06-13 22:12:27 +00:00
|
|
|
<Button type="button" color="secondary" onClick={() => router.back()}>
|
|
|
|
{t("cancel")}
|
|
|
|
</Button>
|
|
|
|
<Button type="submit" loading={form.formState.isSubmitting}>
|
|
|
|
{t("save")}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</Form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<Toaster position="bottom-right" />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|