cal.pub0.org/pages/availability/troubleshoot.tsx

120 lines
3.9 KiB
TypeScript
Raw Normal View History

import Head from "next/head";
import Shell from "../../components/Shell";
import { getSession, useSession } from "next-auth/client";
import { useState } from "react";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
import { GetServerSideProps } from "next";
import prisma from "@lib/prisma";
dayjs.extend(utc);
export default function Troubleshoot({ user }) {
const [session, loading] = useSession();
const [availability, setAvailability] = useState([]);
const [selectedDate, setSelectedDate] = useState(dayjs());
if (loading) {
return <div className="loader"><span className="loader-inner"></span></div>;
}
function convertMinsToHrsMins(mins) {
let h = Math.floor(mins / 60);
let m = mins % 60;
h = h < 10 ? "0" + h : h;
m = m < 10 ? "0" + m : m;
return `${h}:${m}`;
}
const fetchAvailability = (date) => {
fetch(
`/api/availability/${session.user.username}?dateFrom=${date
.startOf("day")
.utc()
.startOf("day")
.format()}&dateTo=${date.endOf("day").utc().endOf("day").format()}`
)
.then((res) => {
return res.json();
})
.then((apires) => setAvailability(apires))
.catch((e) => {
console.error(e);
});
};
fetchAvailability(selectedDate);
return (
<div>
<Head>
<title>Troubleshoot | Calendso</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<Shell heading="Troubleshoot">
2021-07-30 23:05:38 +00:00
<div className="flex mb-8">
<p className="text-sm text-neutral-500">
Understand why certain times are available and others are blocked.
</p>
</div>
<div className="bg-white max-w-md overflow-hidden shadow rounded-sm">
<div className="px-4 py-5 sm:p-6">
Here is an overview of your day on {selectedDate.format("D MMMM YYYY")}:
<small className="block text-neutral-400">
Tip: Hover over the bold times for a full timestamp
</small>
<div className="mt-4 space-y-4">
<div className="bg-black overflow-hidden rounded-sm">
<div className="px-4 sm:px-6 py-2 text-white">
Your day starts at {convertMinsToHrsMins(user.startTime)}
</div>
</div>
{availability.map((slot) => (
2021-07-30 23:05:38 +00:00
<div key={slot.start} className="bg-neutral-100 overflow-hidden rounded-sm">
<div className="px-4 py-5 sm:p-6 text-black">
Your calendar shows you as busy between{" "}
<span className="font-medium text-neutral-800" title={slot.start}>
{dayjs(slot.start).format("HH:mm")}
</span>{" "}
and{" "}
<span className="font-medium text-neutral-800" title={slot.end}>
{dayjs(slot.end).format("HH:mm")}
</span>{" "}
on {dayjs(slot.start).format("D MMMM YYYY")}
</div>
</div>
))}
{availability.length === 0 && <div className="loader"><span className="loader-inner"></span></div>}
<div className="bg-black overflow-hidden rounded-sm">
<div className="px-4 sm:px-6 py-2 text-white">
Your day ends at {convertMinsToHrsMins(user.endTime)}
</div>
</div>
</div>
</div>
</div>
</Shell>
</div>
);
}
export const getServerSideProps: GetServerSideProps = async (context) => {
const session = await getSession(context);
if (!session) {
return { redirect: { permanent: false, destination: "/auth/login" } };
}
const user = await prisma.user.findFirst({
where: {
username: session.user.username,
},
select: {
startTime: true,
endTime: true,
},
});
return {
props: { user },
};
};