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";
|
|
|
|
import utc from "dayjs/plugin/utc";
|
2021-09-28 19:12:48 +00:00
|
|
|
import { getSession } from "next-auth/client";
|
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
|
|
|
|
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";
|
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";
|
|
|
|
import { Button } from "@components/ui/Button";
|
|
|
|
|
2021-06-06 00:36:40 +00:00
|
|
|
dayjs.extend(utc);
|
|
|
|
|
|
|
|
export default function Type(props) {
|
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;
|
2021-06-06 00:36:40 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
const [is24h, setIs24h] = useState(false);
|
|
|
|
const [loading, setLoading] = useState(false);
|
2021-10-13 10:49:15 +00:00
|
|
|
const [error, setError] = useState(props.booking ? null : t("booking_already_cancelled"));
|
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
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
const cancellationHandler = async (event) => {
|
|
|
|
setLoading(true);
|
2021-06-06 01:12:55 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
const payload = {
|
|
|
|
uid: uid,
|
|
|
|
};
|
2021-06-06 01:12:55 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
telemetry.withJitsu((jitsu) =>
|
|
|
|
jitsu.track(telemetryEventTypes.bookingCancelled, collectPageParameters())
|
|
|
|
);
|
2021-09-14 08:45:28 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
const res = await fetch("/api/cancel", {
|
|
|
|
body: JSON.stringify(payload),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
2021-09-14 08:45:28 +00:00
|
|
|
method: "DELETE",
|
2021-08-08 19:21:33 +00:00
|
|
|
});
|
2021-06-06 01:12:55 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
if (res.status >= 200 && res.status < 300) {
|
2021-09-14 08:45:28 +00:00
|
|
|
await router.push(
|
|
|
|
`/cancel/success?name=${props.profile.name}&title=${props.booking.title}&eventPage=${
|
|
|
|
props.profile.slug
|
|
|
|
}&team=${props.booking.eventType.team ? 1 : 0}`
|
|
|
|
);
|
2021-08-08 19:21:33 +00:00
|
|
|
} else {
|
|
|
|
setLoading(false);
|
2021-10-13 10:49:15 +00:00
|
|
|
setError(`${t("error_with_status_code_occured", { status: res.status })} ${t("please_try_again")}`);
|
2021-06-06 01:12:55 +00:00
|
|
|
}
|
2021-08-08 19:21:33 +00:00
|
|
|
};
|
2021-06-06 00:36:40 +00:00
|
|
|
|
2021-08-08 19:21:33 +00:00
|
|
|
return (
|
|
|
|
<div>
|
2021-08-27 12:35:20 +00:00
|
|
|
<HeadSeo
|
2021-10-13 10:49:15 +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
|
|
|
/>
|
2021-11-16 08:51:46 +00:00
|
|
|
<CustomBranding val={props.profile.brandColor} />
|
2021-08-08 19:21:33 +00:00
|
|
|
<main className="max-w-3xl mx-auto my-24">
|
2021-10-07 15:14:47 +00:00
|
|
|
<div className="fixed inset-0 z-50 overflow-y-auto">
|
|
|
|
<div className="flex items-end justify-center min-h-screen 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">
|
2021-08-08 19:21:33 +00:00
|
|
|
<span className="hidden sm:inline-block sm:align-middle sm:h-screen" aria-hidden="true">
|
|
|
|
​
|
|
|
|
</span>
|
|
|
|
<div
|
2021-10-07 15:14:47 +00:00
|
|
|
className="inline-block px-4 pt-5 pb-4 overflow-hidden text-left align-bottom transition-all transform bg-white rounded-lg shadow-xl sm:my-8 sm:align-middle sm:max-w-sm sm:w-full sm:p-6"
|
2021-08-08 19:21:33 +00:00
|
|
|
role="dialog"
|
|
|
|
aria-modal="true"
|
|
|
|
aria-labelledby="modal-headline">
|
|
|
|
{error && (
|
|
|
|
<div>
|
2021-10-07 15:14:47 +00:00
|
|
|
<div className="flex items-center justify-center w-12 h-12 mx-auto bg-red-100 rounded-full">
|
|
|
|
<XIcon className="w-6 h-6 text-red-600" />
|
2021-08-08 19:21:33 +00:00
|
|
|
</div>
|
|
|
|
<div className="mt-3 text-center sm:mt-5">
|
2021-10-07 15:14:47 +00:00
|
|
|
<h3 className="text-lg font-medium leading-6 text-gray-900" id="modal-title">
|
2021-08-08 19:21:33 +00:00
|
|
|
{error}
|
|
|
|
</h3>
|
2021-06-06 00:36:40 +00:00
|
|
|
</div>
|
2021-08-08 19:21:33 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{!error && (
|
2021-08-10 08:46:02 +00:00
|
|
|
<>
|
|
|
|
<div>
|
2021-10-07 15:14:47 +00:00
|
|
|
<div className="flex items-center justify-center w-12 h-12 mx-auto bg-red-100 rounded-full">
|
|
|
|
<XIcon className="w-6 h-6 text-red-600" />
|
2021-08-08 19:21:33 +00:00
|
|
|
</div>
|
2021-08-10 08:46:02 +00:00
|
|
|
<div className="mt-3 text-center sm:mt-5">
|
2021-10-07 15:14:47 +00:00
|
|
|
<h3 className="text-lg font-medium leading-6 text-gray-900" id="modal-headline">
|
2021-09-28 17:23:50 +00:00
|
|
|
{props.cancellationAllowed
|
2021-10-13 10:49:15 +00:00
|
|
|
? t("really_cancel_booking")
|
|
|
|
: t("cannot_cancel_booking")}
|
2021-08-10 08:46:02 +00:00
|
|
|
</h3>
|
|
|
|
<div className="mt-2">
|
2021-09-28 17:23:50 +00:00
|
|
|
<p className="text-sm text-gray-500">
|
2021-10-13 10:49:15 +00:00
|
|
|
{props.cancellationAllowed ? t("reschedule_instead") : t("event_is_in_the_past")}
|
2021-09-28 17:23:50 +00:00
|
|
|
</p>
|
2021-08-10 08:46:02 +00:00
|
|
|
</div>
|
2021-10-07 15:14:47 +00:00
|
|
|
<div className="py-4 mt-4 border-t border-b">
|
|
|
|
<h2 className="mb-2 text-lg font-medium text-gray-600 font-cal">
|
2021-09-22 21:23:19 +00:00
|
|
|
{props.booking.title}
|
|
|
|
</h2>
|
2021-08-10 08:46:02 +00:00
|
|
|
<p className="text-gray-500">
|
|
|
|
<CalendarIcon className="inline-block w-4 h-4 mr-1 -mt-1" />
|
2021-09-14 08:45:28 +00:00
|
|
|
{dayjs(props.booking.startTime).format(
|
|
|
|
(is24h ? "H:mm" : "h:mma") + ", dddd DD MMMM YYYY"
|
|
|
|
)}
|
2021-08-10 08:46:02 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2021-08-08 19:21:33 +00:00
|
|
|
</div>
|
2021-06-06 00:36:40 +00:00
|
|
|
</div>
|
2021-09-28 17:23:50 +00:00
|
|
|
{props.cancellationAllowed && (
|
2021-10-07 15:14:47 +00:00
|
|
|
<div className="mt-5 space-x-2 text-center sm:mt-6">
|
2021-09-28 17:23:50 +00:00
|
|
|
<Button
|
|
|
|
color="secondary"
|
|
|
|
data-testid="cancel"
|
|
|
|
onClick={cancellationHandler}
|
|
|
|
loading={loading}>
|
2021-10-13 10:49:15 +00:00
|
|
|
{t("cancel")}
|
2021-09-28 17:23:50 +00:00
|
|
|
</Button>
|
2021-10-13 10:49:15 +00:00
|
|
|
<Button onClick={() => router.push("/reschedule/" + uid)}>{t("reschedule")}</Button>
|
2021-09-28 17:23:50 +00:00
|
|
|
</div>
|
|
|
|
)}
|
2021-08-10 08:46:02 +00:00
|
|
|
</>
|
2021-08-08 19:21:33 +00:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-06-06 00:36:40 +00:00
|
|
|
</div>
|
2021-08-08 19:21:33 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
);
|
2021-06-06 00:36:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getServerSideProps(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: {
|
|
|
|
uid: context.query.uid,
|
|
|
|
},
|
|
|
|
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,
|
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-09-14 08:45:28 +00:00
|
|
|
const profile = booking.eventType.team
|
|
|
|
? {
|
|
|
|
name: booking.eventType.team.name,
|
|
|
|
slug: booking.eventType.team.slug,
|
|
|
|
}
|
|
|
|
: booking.user;
|
|
|
|
|
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:
|
|
|
|
(!!session?.user && session.user.id == booking.user?.id) || booking.startTime >= new Date(),
|
2021-08-08 19:21:33 +00:00
|
|
|
},
|
|
|
|
};
|
2021-06-06 00:36:40 +00:00
|
|
|
}
|