2021-10-26 13:10:55 +00:00
|
|
|
import { CalendarIcon, XIcon } from "@heroicons/react/outline";
|
|
|
|
import { ArrowRightIcon } from "@heroicons/react/solid";
|
|
|
|
import dayjs from "dayjs";
|
2022-01-07 20:23:37 +00:00
|
|
|
import { NextPageContext } from "next";
|
|
|
|
import { getSession } from "next-auth/react";
|
2021-10-26 13:10:55 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { useEffect } from "react";
|
|
|
|
|
2022-03-17 13:20:49 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-03-16 23:36:43 +00:00
|
|
|
import Button from "@calcom/ui/Button";
|
2022-03-17 13:20:49 +00:00
|
|
|
import { Dialog, DialogContent, DialogFooter, DialogHeader } from "@calcom/ui/Dialog";
|
2022-03-16 23:36:43 +00:00
|
|
|
|
2021-10-26 13:10:55 +00:00
|
|
|
import prisma from "@lib/prisma";
|
2022-02-23 12:37:15 +00:00
|
|
|
import { detectBrowserTimeFormat } from "@lib/timeFormat";
|
2022-01-07 20:23:37 +00:00
|
|
|
import { inferSSRProps } from "@lib/types/inferSSRProps";
|
2021-10-26 13:10:55 +00:00
|
|
|
|
|
|
|
import { HeadSeo } from "@components/seo/head-seo";
|
|
|
|
|
2022-01-07 20:23:37 +00:00
|
|
|
export default function MeetingUnavailable(props: inferSSRProps<typeof getServerSideProps>) {
|
2021-10-26 13:10:55 +00:00
|
|
|
const router = useRouter();
|
2022-03-17 13:20:49 +00:00
|
|
|
const { t } = useLocale();
|
2022-02-23 12:37:15 +00:00
|
|
|
// if no booking redirectis to the 404 page
|
2021-10-26 13:10:55 +00:00
|
|
|
const emptyBooking = props.booking === null;
|
|
|
|
useEffect(() => {
|
|
|
|
if (emptyBooking) {
|
2022-02-15 12:46:27 +00:00
|
|
|
router.push("/video/no-meeting-found");
|
2021-10-26 13:10:55 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
if (!emptyBooking) {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<HeadSeo title={`Meeting Unavaialble`} description={`Meeting Unavailable`} />
|
2022-02-09 00:05:13 +00:00
|
|
|
<main className="mx-auto my-24 max-w-3xl">
|
2022-03-17 13:20:49 +00:00
|
|
|
<Dialog defaultOpen={true}>
|
|
|
|
<DialogContent
|
|
|
|
onInteractOutside={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
}}>
|
|
|
|
<div className="mx-auto mb-5 flex h-12 w-12 items-center justify-center rounded-full bg-red-100">
|
|
|
|
<XIcon className="h-6 w-6 text-red-600" />
|
2021-10-26 13:10:55 +00:00
|
|
|
</div>
|
2022-03-17 13:20:49 +00:00
|
|
|
<div className="mt-5 flex justify-center">
|
|
|
|
<DialogHeader title={props.booking.title} />
|
|
|
|
</div>
|
|
|
|
<h3
|
|
|
|
className="flex justify-center text-center text-lg font-medium leading-6 text-gray-900"
|
|
|
|
id="modal-headline">
|
|
|
|
This meeting is in the past.
|
|
|
|
</h3>
|
|
|
|
<p className="-mt-4 flex justify-center text-sm text-gray-500">
|
|
|
|
<CalendarIcon className="mr-1 inline-block h-4 w-4" />
|
|
|
|
{dayjs(props.booking.startTime).format(detectBrowserTimeFormat + ", dddd DD MMMM YYYY")}
|
|
|
|
</p>
|
|
|
|
<p className="flex justify-center text-center text-sm text-gray-500">
|
|
|
|
This meeting will be accessible 60 minutes in advance.
|
|
|
|
</p>
|
|
|
|
<div className="flex justify-center">
|
|
|
|
<DialogFooter>
|
|
|
|
<Button data-testid="return-home" href="/event-types" EndIcon={ArrowRightIcon}>
|
|
|
|
{t("go_back_home")}
|
|
|
|
</Button>
|
|
|
|
</DialogFooter>
|
|
|
|
</div>
|
|
|
|
</DialogContent>
|
|
|
|
</Dialog>
|
2021-10-26 13:10:55 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-01-07 20:23:37 +00:00
|
|
|
export async function getServerSideProps(context: NextPageContext) {
|
2021-10-26 13:10:55 +00:00
|
|
|
const booking = await prisma.booking.findUnique({
|
|
|
|
where: {
|
2022-01-07 20:23:37 +00:00
|
|
|
uid: context.query.uid as string,
|
2021-10-26 13:10:55 +00:00
|
|
|
},
|
|
|
|
select: {
|
|
|
|
uid: true,
|
|
|
|
id: true,
|
|
|
|
title: true,
|
|
|
|
description: true,
|
|
|
|
startTime: true,
|
|
|
|
endTime: true,
|
|
|
|
user: {
|
|
|
|
select: {
|
|
|
|
credentials: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
attendees: true,
|
|
|
|
dailyRef: {
|
|
|
|
select: {
|
|
|
|
dailyurl: true,
|
|
|
|
dailytoken: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
references: {
|
|
|
|
select: {
|
|
|
|
uid: true,
|
|
|
|
type: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!booking) {
|
|
|
|
// TODO: Booking is already cancelled
|
|
|
|
return {
|
|
|
|
props: { booking: null },
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const bookingObj = Object.assign({}, booking, {
|
|
|
|
startTime: booking.startTime.toString(),
|
|
|
|
endTime: booking.endTime.toString(),
|
|
|
|
});
|
|
|
|
const session = await getSession();
|
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
booking: bookingObj,
|
|
|
|
session: session,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|