2022-06-10 20:38:06 +00:00
|
|
|
import { CalendarIcon, XIcon, RefreshIcon } from "@heroicons/react/solid";
|
|
|
|
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@radix-ui/react-collapsible";
|
2021-08-10 08:46:02 +00:00
|
|
|
import dayjs from "dayjs";
|
2021-12-13 23:10:10 +00:00
|
|
|
import { GetServerSidePropsContext } from "next";
|
2021-08-10 08:46:02 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { useState } from "react";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2022-06-10 20:38:06 +00:00
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
import { parseRecurringEvent } from "@calcom/lib/isRecurringEvent";
|
|
|
|
import { getEveryFreqFor } from "@calcom/lib/recurringStrings";
|
2022-05-18 21:05:49 +00:00
|
|
|
import prisma, { bookingMinimalSelect } from "@calcom/prisma";
|
2022-03-16 23:36:43 +00:00
|
|
|
import { Button } from "@calcom/ui/Button";
|
|
|
|
import { TextField } from "@calcom/ui/form/fields";
|
|
|
|
|
2021-12-13 23:10:10 +00:00
|
|
|
import { asStringOrUndefined } from "@lib/asStringOrNull";
|
|
|
|
import { getSession } from "@lib/auth";
|
2021-08-27 12:35:20 +00:00
|
|
|
import { collectPageParameters, telemetryEventTypes, useTelemetry } from "@lib/telemetry";
|
2022-02-23 12:37:15 +00:00
|
|
|
import { detectBrowserTimeFormat } from "@lib/timeFormat";
|
2021-12-13 23:10:10 +00:00
|
|
|
import { inferSSRProps } from "@lib/types/inferSSRProps";
|
2021-06-06 00:36:40 +00:00
|
|
|
|
2021-11-16 08:51:46 +00:00
|
|
|
import CustomBranding from "@components/CustomBranding";
|
2021-09-22 19:52:38 +00:00
|
|
|
import { HeadSeo } from "@components/seo/head-seo";
|
|
|
|
|
2021-12-14 12:31:54 +00:00
|
|
|
import { ssrInit } from "@server/lib/ssr";
|
|
|
|
|
2021-12-13 23:10:10 +00:00
|
|
|
export default function Type(props: inferSSRProps<typeof getServerSideProps>) {
|
2021-10-13 10:49:15 +00:00
|
|
|
const { t } = useLocale();
|
2021-08-08 19:21:33 +00:00
|
|
|
// Get router variables
|
|
|
|
const router = useRouter();
|
|
|
|
const { uid } = router.query;
|
|
|
|
const [loading, setLoading] = useState(false);
|
2021-12-13 23:10:10 +00:00
|
|
|
const [error, setError] = useState<string | null>(props.booking ? null : t("booking_already_cancelled"));
|
2022-01-28 17:40:29 +00:00
|
|
|
const [cancellationReason, setCancellationReason] = useState<string>("");
|
2022-06-10 20:38:06 +00:00
|
|
|
const [moreEventsVisible, setMoreEventsVisible] = useState(false);
|
2021-08-08 19:21:33 +00:00
|
|
|
const telemetry = useTelemetry();
|
|
|
|
return (
|
|
|
|
<div>
|
2021-08-27 12:35:20 +00:00
|
|
|
<HeadSeo
|
2021-12-13 23:10:10 +00:00
|
|
|
title={`${t("cancel")} ${props.booking && props.booking.title} | ${props.profile?.name}`}
|
|
|
|
description={`${t("cancel")} ${props.booking && props.booking.title} | ${props.profile?.name}`}
|
2021-08-27 12:35:20 +00:00
|
|
|
/>
|
2022-03-05 15:37:46 +00:00
|
|
|
<CustomBranding lightVal={props.profile?.brandColor} darkVal={props.profile?.darkBrandColor} />
|
2022-02-09 00:05:13 +00:00
|
|
|
<main className="mx-auto my-24 max-w-3xl">
|
2022-03-18 09:55:02 +00:00
|
|
|
<div className="fixed inset-0 z-50 overflow-y-auto">
|
|
|
|
<div className="flex min-h-screen items-end justify-center px-4 pt-4 pb-20 text-center sm:block sm:p-0">
|
|
|
|
<div className="fixed inset-0 my-4 transition-opacity sm:my-0" aria-hidden="true">
|
|
|
|
<span className="hidden sm:inline-block sm:h-screen sm:align-middle" aria-hidden="true">
|
|
|
|
​
|
|
|
|
</span>
|
|
|
|
<div
|
|
|
|
className="inline-block transform overflow-hidden rounded-lg bg-white px-4 pt-5 pb-4 text-left align-bottom shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-sm sm:p-6 sm:align-middle"
|
|
|
|
role="dialog"
|
|
|
|
aria-modal="true"
|
|
|
|
aria-labelledby="modal-headline">
|
|
|
|
{error && (
|
|
|
|
<div>
|
|
|
|
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-full bg-red-100">
|
|
|
|
<XIcon className="h-6 w-6 text-red-600" />
|
2021-08-08 19:21:33 +00:00
|
|
|
</div>
|
2022-03-18 09:55:02 +00:00
|
|
|
<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>
|
2021-06-06 00:36:40 +00:00
|
|
|
</div>
|
2021-08-08 19:21:33 +00:00
|
|
|
</div>
|
2022-03-18 09:55:02 +00:00
|
|
|
)}
|
|
|
|
{!error && (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-full bg-red-100">
|
|
|
|
<XIcon className="h-6 w-6 text-red-600" />
|
|
|
|
</div>
|
2022-06-10 20:38:06 +00:00
|
|
|
<div className="mt-3 sm:mt-5">
|
|
|
|
<h3
|
|
|
|
className="text-center text-lg font-medium leading-6 text-gray-900"
|
|
|
|
id="modal-headline">
|
2022-03-18 09:55:02 +00:00
|
|
|
{props.cancellationAllowed
|
|
|
|
? t("really_cancel_booking")
|
|
|
|
: t("cannot_cancel_booking")}
|
|
|
|
</h3>
|
|
|
|
<div className="mt-2">
|
2022-06-10 20:38:06 +00:00
|
|
|
<p className="text-center text-sm text-gray-500">
|
|
|
|
{props.cancellationAllowed && !props.booking?.eventType.recurringEvent
|
|
|
|
? t("reschedule_instead")
|
|
|
|
: t("event_is_in_the_past")}
|
2022-03-18 09:55:02 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="mt-4 border-t border-b py-4">
|
2022-06-10 20:38:06 +00:00
|
|
|
<h2 className="font-cal mb-2 text-center text-lg font-medium text-gray-600">
|
2022-03-18 09:55:02 +00:00
|
|
|
{props.booking?.title}
|
|
|
|
</h2>
|
2022-06-10 20:38:06 +00:00
|
|
|
{props.booking?.eventType.recurringEvent &&
|
|
|
|
props.booking?.eventType.recurringEvent.freq &&
|
|
|
|
props.recurringInstances && (
|
|
|
|
<div className="text-center text-gray-500">
|
|
|
|
<RefreshIcon className="mr-3 -mt-1 ml-[2px] inline-block h-4 w-4 text-gray-400" />
|
|
|
|
<p className="mb-1 -ml-2 inline px-2 py-1">
|
|
|
|
{getEveryFreqFor({
|
|
|
|
t,
|
|
|
|
recurringEvent: props.booking.eventType.recurringEvent,
|
|
|
|
recurringCount: props.recurringInstances.length,
|
|
|
|
})}
|
|
|
|
</p>
|
|
|
|
</div>
|
2022-03-18 09:55:02 +00:00
|
|
|
)}
|
2022-06-10 20:38:06 +00:00
|
|
|
<div className="text-gray-500">
|
|
|
|
<div className="flex flex-row items-start justify-center space-x-3">
|
|
|
|
{props.booking?.eventType.recurringEvent && props.recurringInstances ? (
|
|
|
|
<>
|
|
|
|
<CalendarIcon className="mt-2 ml-1 h-4 w-4" />
|
|
|
|
<div className="mb-1 inline py-1 text-left">
|
|
|
|
<div className="">
|
|
|
|
{dayjs(props.recurringInstances[0].startTime).format(
|
|
|
|
detectBrowserTimeFormat + ", dddd DD MMMM YYYY"
|
|
|
|
)}
|
|
|
|
<Collapsible
|
|
|
|
open={moreEventsVisible}
|
|
|
|
onOpenChange={() => setMoreEventsVisible(!moreEventsVisible)}>
|
|
|
|
<CollapsibleTrigger
|
|
|
|
type="button"
|
|
|
|
className={classNames(
|
|
|
|
"-ml-4 block w-full text-center",
|
|
|
|
moreEventsVisible ? "hidden" : ""
|
|
|
|
)}>
|
|
|
|
{t("plus_more", { count: props.recurringInstances.length - 1 })}
|
|
|
|
</CollapsibleTrigger>
|
|
|
|
<CollapsibleContent>
|
|
|
|
{props.booking?.eventType.recurringEvent?.count &&
|
|
|
|
props.recurringInstances.slice(1).map((dateObj, idx) => (
|
|
|
|
<div key={idx} className="">
|
|
|
|
{dayjs(dateObj.startTime).format(
|
|
|
|
detectBrowserTimeFormat + ", dddd DD MMMM YYYY"
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</CollapsibleContent>
|
|
|
|
</Collapsible>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<CalendarIcon className="mt-1 mr-1 h-4 w-4" />
|
|
|
|
{dayjs(props.booking?.startTime).format(
|
|
|
|
detectBrowserTimeFormat + ", dddd DD MMMM YYYY"
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-03-18 09:55:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-03-17 13:20:49 +00:00
|
|
|
</div>
|
2022-03-18 09:55:02 +00:00
|
|
|
{props.cancellationAllowed && (
|
|
|
|
<div className="mt-5 sm:mt-6">
|
|
|
|
<TextField
|
|
|
|
name={t("cancellation_reason")}
|
|
|
|
placeholder={t("cancellation_reason_placeholder")}
|
|
|
|
value={cancellationReason}
|
|
|
|
onChange={(e) => setCancellationReason(e.target.value)}
|
|
|
|
className="mb-5 sm:mb-6"
|
|
|
|
/>
|
|
|
|
<div className="space-x-2 text-center rtl:space-x-reverse">
|
2022-06-10 20:38:06 +00:00
|
|
|
{!props.booking.eventType?.recurringEvent && (
|
|
|
|
<Button color="secondary" onClick={() => router.push("/reschedule/" + uid)}>
|
|
|
|
{t("reschedule_this")}
|
|
|
|
</Button>
|
|
|
|
)}
|
2022-03-18 09:55:02 +00:00
|
|
|
<Button
|
|
|
|
data-testid="cancel"
|
|
|
|
onClick={async () => {
|
|
|
|
setLoading(true);
|
|
|
|
|
|
|
|
const payload = {
|
|
|
|
uid: uid,
|
|
|
|
reason: cancellationReason,
|
|
|
|
};
|
|
|
|
|
2022-06-02 16:19:01 +00:00
|
|
|
telemetry.event(telemetryEventTypes.bookingCancelled, collectPageParameters());
|
2022-03-18 09:55:02 +00:00
|
|
|
|
|
|
|
const res = await fetch("/api/cancel", {
|
|
|
|
body: JSON.stringify(payload),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
method: "DELETE",
|
|
|
|
});
|
|
|
|
|
|
|
|
if (res.status >= 200 && res.status < 300) {
|
|
|
|
await router.push(
|
|
|
|
`/cancel/success?name=${props.profile.name}&title=${
|
|
|
|
props.booking.title
|
|
|
|
}&eventPage=${props.profile.slug}&team=${
|
|
|
|
props.booking.eventType?.team ? 1 : 0
|
2022-06-10 20:38:06 +00:00
|
|
|
}&recurring=${!!props.booking.eventType?.recurringEvent}`
|
2022-03-18 09:55:02 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
setLoading(false);
|
|
|
|
setError(
|
|
|
|
`${t("error_with_status_code_occured", { status: res.status })} ${t(
|
|
|
|
"please_try_again"
|
|
|
|
)}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
loading={loading}>
|
|
|
|
{t("cancel_event")}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
2021-08-08 19:21:33 +00:00
|
|
|
)}
|
2022-03-18 09:55:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-08-08 19:21:33 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
);
|
2021-06-06 00:36:40 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 23:10:10 +00:00
|
|
|
export const getServerSideProps = async (context: GetServerSidePropsContext) => {
|
2021-12-14 12:31:54 +00:00
|
|
|
const ssr = await ssrInit(context);
|
2021-09-28 17:23:50 +00:00
|
|
|
const session = await getSession(context);
|
2021-09-14 08:45:28 +00:00
|
|
|
const booking = await prisma.booking.findUnique({
|
2021-08-08 19:21:33 +00:00
|
|
|
where: {
|
2021-12-13 23:10:10 +00:00
|
|
|
uid: asStringOrUndefined(context.query.uid),
|
2021-08-08 19:21:33 +00:00
|
|
|
},
|
|
|
|
select: {
|
2022-05-18 21:05:49 +00:00
|
|
|
...bookingMinimalSelect,
|
2022-06-10 20:38:06 +00:00
|
|
|
recurringEventId: true,
|
2021-08-08 19:21:33 +00:00
|
|
|
user: {
|
2021-06-06 00:36:40 +00:00
|
|
|
select: {
|
2021-10-07 15:14:47 +00:00
|
|
|
id: true,
|
2021-08-08 19:21:33 +00:00
|
|
|
username: true,
|
|
|
|
name: true,
|
2021-11-16 08:51:46 +00:00
|
|
|
brandColor: true,
|
2022-03-05 15:37:46 +00:00
|
|
|
darkBrandColor: true,
|
2021-08-08 19:21:33 +00:00
|
|
|
},
|
|
|
|
},
|
2021-09-14 08:45:28 +00:00
|
|
|
eventType: {
|
|
|
|
select: {
|
2022-06-10 20:38:06 +00:00
|
|
|
length: true,
|
|
|
|
recurringEvent: true,
|
2021-09-14 08:45:28 +00:00
|
|
|
team: {
|
|
|
|
select: {
|
|
|
|
slug: true,
|
|
|
|
name: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-08-08 19:21:33 +00:00
|
|
|
},
|
|
|
|
});
|
2021-06-06 00:36:40 +00:00
|
|
|
|
2021-08-10 08:46:02 +00:00
|
|
|
if (!booking) {
|
2021-09-14 08:45:28 +00:00
|
|
|
// TODO: Booking is already cancelled
|
2021-08-10 08:46:02 +00:00
|
|
|
return {
|
|
|
|
props: { booking: null },
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
const bookingObj = Object.assign({}, booking, {
|
|
|
|
startTime: booking.startTime.toString(),
|
|
|
|
endTime: booking.endTime.toString(),
|
2022-06-10 20:38:06 +00:00
|
|
|
eventType: {
|
|
|
|
...booking.eventType,
|
|
|
|
recurringEvent: parseRecurringEvent(booking.eventType?.recurringEvent),
|
|
|
|
},
|
2021-08-08 19:21:33 +00:00
|
|
|
});
|
2021-06-06 00:36:40 +00:00
|
|
|
|
2022-06-10 20:38:06 +00:00
|
|
|
let recurringInstances = null;
|
|
|
|
if (booking.eventType?.recurringEvent) {
|
|
|
|
recurringInstances = await prisma.booking.findMany({
|
|
|
|
where: {
|
|
|
|
recurringEventId: booking.recurringEventId,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
startTime: true,
|
|
|
|
endTime: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
recurringInstances = recurringInstances.map((recurr) => ({
|
|
|
|
...recurr,
|
|
|
|
startTime: recurr.startTime.toString(),
|
|
|
|
endTime: recurr.endTime.toString(),
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2021-12-13 23:10:10 +00:00
|
|
|
const profile = {
|
|
|
|
name: booking.eventType?.team?.name || booking.user?.name || null,
|
|
|
|
slug: booking.eventType?.team?.slug || booking.user?.username || null,
|
|
|
|
brandColor: booking.user?.brandColor || null,
|
2022-03-05 15:37:46 +00:00
|
|
|
darkBrandColor: booking.user?.darkBrandColor || null,
|
2021-12-13 23:10:10 +00:00
|
|
|
};
|
2021-09-14 08:45:28 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
return {
|
|
|
|
props: {
|
2021-09-14 08:45:28 +00:00
|
|
|
profile,
|
2021-08-08 19:21:33 +00:00
|
|
|
booking: bookingObj,
|
2022-06-10 20:38:06 +00:00
|
|
|
recurringInstances,
|
2021-09-28 17:23:50 +00:00
|
|
|
cancellationAllowed:
|
2021-12-13 23:10:10 +00:00
|
|
|
(!!session?.user && session.user?.id === booking.user?.id) || booking.startTime >= new Date(),
|
2021-12-14 12:31:54 +00:00
|
|
|
trpcState: ssr.dehydrate(),
|
2021-08-08 19:21:33 +00:00
|
|
|
},
|
|
|
|
};
|
2021-12-13 23:10:10 +00:00
|
|
|
};
|