2022-05-18 21:05:49 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { useState } from "react";
|
|
|
|
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-07-28 19:58:26 +00:00
|
|
|
import useTheme from "@calcom/lib/hooks/useTheme";
|
|
|
|
import { collectPageParameters, telemetryEventTypes, useTelemetry } from "@calcom/lib/telemetry";
|
|
|
|
import type { RecurringEvent } from "@calcom/types/Calendar";
|
2023-01-23 23:08:01 +00:00
|
|
|
import { Button, TextArea } from "@calcom/ui";
|
|
|
|
import { FiX } from "@calcom/ui/components/icon";
|
2022-05-18 21:05:49 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
booking: {
|
|
|
|
title?: string;
|
|
|
|
uid?: string;
|
2022-10-20 23:28:02 +00:00
|
|
|
id?: number;
|
2022-05-18 21:05:49 +00:00
|
|
|
};
|
|
|
|
profile: {
|
|
|
|
name: string | null;
|
|
|
|
slug: string | null;
|
|
|
|
};
|
2022-06-10 20:38:06 +00:00
|
|
|
recurringEvent: RecurringEvent | null;
|
2022-05-18 21:05:49 +00:00
|
|
|
team?: string | null;
|
|
|
|
setIsCancellationMode: (value: boolean) => void;
|
|
|
|
theme: string | null;
|
2022-11-16 19:48:17 +00:00
|
|
|
allRemainingBookings: boolean;
|
2022-05-18 21:05:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function CancelBooking(props: Props) {
|
|
|
|
const [cancellationReason, setCancellationReason] = useState<string>("");
|
|
|
|
const { t } = useLocale();
|
|
|
|
const router = useRouter();
|
2023-01-31 22:29:24 +00:00
|
|
|
const { booking, allRemainingBookings } = props;
|
2022-05-18 21:05:49 +00:00
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const telemetry = useTelemetry();
|
|
|
|
const [error, setError] = useState<string | null>(booking ? null : t("booking_already_cancelled"));
|
2022-07-26 08:27:57 +00:00
|
|
|
useTheme(props.theme);
|
2022-05-18 21:05:49 +00:00
|
|
|
|
2022-07-26 08:27:57 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{error && (
|
2022-11-25 14:49:59 +00:00
|
|
|
<div className="mt-8">
|
2022-07-26 08:27:57 +00:00
|
|
|
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-full bg-red-100">
|
2023-01-23 23:08:01 +00:00
|
|
|
<FiX className="h-6 w-6 text-red-600" />
|
2022-07-26 08:27:57 +00:00
|
|
|
</div>
|
|
|
|
<div className="mt-3 text-center sm:mt-5">
|
|
|
|
<h3 className="text-lg font-medium leading-6 text-gray-900" id="modal-title">
|
|
|
|
{error}
|
|
|
|
</h3>
|
2022-05-18 21:05:49 +00:00
|
|
|
</div>
|
2022-07-26 08:27:57 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{!error && (
|
|
|
|
<div className="mt-5 sm:mt-6">
|
|
|
|
<label className="text-bookingdark font-medium dark:text-white">{t("cancellation_reason")}</label>
|
2022-11-16 19:48:17 +00:00
|
|
|
<TextArea
|
2022-07-26 08:27:57 +00:00
|
|
|
placeholder={t("cancellation_reason_placeholder")}
|
|
|
|
value={cancellationReason}
|
|
|
|
onChange={(e) => setCancellationReason(e.target.value)}
|
2023-01-14 15:49:15 +00:00
|
|
|
className="dark:bg-darkgray-100 dark:border-darkgray-400 mt-2 mb-4 w-full dark:text-white "
|
2022-07-26 08:27:57 +00:00
|
|
|
rows={3}
|
|
|
|
/>
|
2022-11-16 19:48:17 +00:00
|
|
|
<div className="flex flex-col-reverse rtl:space-x-reverse ">
|
|
|
|
<div className="ml-auto flex w-full space-x-4 ">
|
|
|
|
<Button
|
|
|
|
className="ml-auto"
|
|
|
|
color="secondary"
|
|
|
|
onClick={() => props.setIsCancellationMode(false)}>
|
2022-07-26 08:27:57 +00:00
|
|
|
{t("nevermind")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
2022-11-16 19:48:17 +00:00
|
|
|
className="flex justify-center"
|
2022-07-26 08:27:57 +00:00
|
|
|
data-testid="cancel"
|
|
|
|
onClick={async () => {
|
|
|
|
setLoading(true);
|
2022-05-18 21:05:49 +00:00
|
|
|
|
2022-07-26 08:27:57 +00:00
|
|
|
const payload = {
|
2022-10-20 23:28:02 +00:00
|
|
|
id: booking?.id,
|
2022-10-18 19:02:04 +00:00
|
|
|
cancellationReason: cancellationReason,
|
2022-11-16 19:48:17 +00:00
|
|
|
allRemainingBookings,
|
2022-07-26 08:27:57 +00:00
|
|
|
};
|
2022-05-18 21:05:49 +00:00
|
|
|
|
2022-07-26 08:27:57 +00:00
|
|
|
telemetry.event(telemetryEventTypes.bookingCancelled, collectPageParameters());
|
2022-05-18 21:05:49 +00:00
|
|
|
|
2022-07-26 08:27:57 +00:00
|
|
|
const res = await fetch("/api/cancel", {
|
|
|
|
body: JSON.stringify(payload),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
method: "DELETE",
|
|
|
|
});
|
2022-05-18 21:05:49 +00:00
|
|
|
|
2022-07-26 08:27:57 +00:00
|
|
|
if (res.status >= 200 && res.status < 300) {
|
2022-11-25 14:49:59 +00:00
|
|
|
await router.replace(router.asPath);
|
2022-07-26 08:27:57 +00:00
|
|
|
} else {
|
|
|
|
setLoading(false);
|
|
|
|
setError(
|
|
|
|
`${t("error_with_status_code_occured", { status: res.status })} ${t(
|
|
|
|
"please_try_again"
|
|
|
|
)}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
loading={loading}>
|
2022-11-16 19:48:17 +00:00
|
|
|
{props.allRemainingBookings ? t("cancel_all_remaining") : t("cancel_event")}
|
2022-07-26 08:27:57 +00:00
|
|
|
</Button>
|
2022-05-18 21:05:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-26 08:27:57 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
2022-05-18 21:05:49 +00:00
|
|
|
}
|