2021-08-12 10:23:10 +00:00
|
|
|
import { CalendarIcon, XIcon } from "@heroicons/react/solid";
|
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-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-10-13 10:49:15 +00:00
|
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
2021-08-27 12:35:20 +00:00
|
|
|
import prisma from "@lib/prisma";
|
|
|
|
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>("");
|
2021-08-08 19:21:33 +00:00
|
|
|
const telemetry = useTelemetry();
|
2021-06-06 01:12:55 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
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>
|
|
|
|
<div className="mt-3 text-center sm:mt-5">
|
|
|
|
<h3 className="text-lg font-medium leading-6 text-gray-900" id="modal-headline">
|
|
|
|
{props.cancellationAllowed
|
|
|
|
? t("really_cancel_booking")
|
|
|
|
: t("cannot_cancel_booking")}
|
|
|
|
</h3>
|
|
|
|
<div className="mt-2">
|
|
|
|
<p className="text-sm text-gray-500">
|
|
|
|
{props.cancellationAllowed ? t("reschedule_instead") : t("event_is_in_the_past")}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="mt-4 border-t border-b py-4">
|
|
|
|
<h2 className="font-cal mb-2 text-lg font-medium text-gray-600">
|
|
|
|
{props.booking?.title}
|
|
|
|
</h2>
|
|
|
|
<p className="text-gray-500">
|
|
|
|
<CalendarIcon className="mr-1 -mt-1 inline-block h-4 w-4" />
|
|
|
|
{dayjs(props.booking?.startTime).format(
|
|
|
|
detectBrowserTimeFormat + ", dddd DD MMMM YYYY"
|
|
|
|
)}
|
|
|
|
</p>
|
|
|
|
</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-04-28 15:05:29 +00:00
|
|
|
<Button color="secondary" onClick={() => router.push("/reschedule/" + uid)}>
|
|
|
|
{t("reschedule_this")}
|
2022-03-18 09:55:02 +00:00
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
data-testid="cancel"
|
|
|
|
onClick={async () => {
|
|
|
|
setLoading(true);
|
|
|
|
|
|
|
|
const payload = {
|
|
|
|
uid: uid,
|
|
|
|
reason: cancellationReason,
|
|
|
|
};
|
|
|
|
|
|
|
|
telemetry.withJitsu((jitsu) =>
|
|
|
|
jitsu.track(telemetryEventTypes.bookingCancelled, collectPageParameters())
|
|
|
|
);
|
|
|
|
|
|
|
|
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
|
|
|
|
}`
|
|
|
|
);
|
|
|
|
} 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: {
|
|
|
|
id: true,
|
|
|
|
title: true,
|
|
|
|
description: true,
|
|
|
|
startTime: true,
|
|
|
|
endTime: true,
|
|
|
|
attendees: true,
|
|
|
|
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: {
|
|
|
|
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(),
|
|
|
|
});
|
2021-06-06 00:36:40 +00:00
|
|
|
|
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,
|
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
|
|
|
};
|