
* Heavy WIP * More WIP * Playing with backwards compat * Moar wip * wip * Email changes for group feature * Committing in redundant migrations for reference * Combine all WIP migrations into a single feature migration * Make backup of current version of radio area pending refactor * Improved accessibility through keyboard * Cleanup in seperate commit so I can cherrypick later * Added RadioArea component * wip * Ignore .yarn file * Kinda stable * Getting closer... * Hide header when there are only personal events * Added uid to event create, updated EventTypeDescription * Delete redundant migration * Committing new team related migrations * Optimising & implemented backwards compatibility * Removed now redundant pages * Undid prototyping to calendarClient I did not end up using * Properly typed Select & fixed lint throughout * How'd that get here, removed. * TODO: investigate why userData is not compatible with passed type * This likely matches the event type that is created for a user * Few bugfixes * Adding datepicker optimisations * Fixed new event type spacing, initial profile should always be there * Gave NEXT_PUBLIC_BASE_URL a try but I think it's not the right solution * Updated EventTypeDescription to account for long titles, added logo to team page. * Added logo to team query * Added cancel Cypress test because an upcoming merge contains changes * Fix for when the event type description is long * Turned Theme into the useTheme hook, and made it fully compatible with teams pages * Built AvatarGroup ui component + moved Avatar to ui * Give the avatar some space fom the description * Fixed timeZone selector * Disabled tooltip +1-... Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import prisma from "@lib/prisma";
|
|
import { getBusyCalendarTimes } from "@lib/calendarClient";
|
|
// import { getBusyVideoTimes } from "@lib/videoClient";
|
|
import dayjs from "dayjs";
|
|
import { asStringOrNull } from "@lib/asStringOrNull";
|
|
import { User } from "@prisma/client";
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const user = asStringOrNull(req.query.user);
|
|
const dateFrom = dayjs(asStringOrNull(req.query.dateFrom));
|
|
const dateTo = dayjs(asStringOrNull(req.query.dateTo));
|
|
|
|
if (!dateFrom.isValid() || !dateTo.isValid()) {
|
|
return res.status(400).json({ message: "Invalid time range given." });
|
|
}
|
|
|
|
const currentUser: User = await prisma.user.findUnique({
|
|
where: {
|
|
username: user,
|
|
},
|
|
select: {
|
|
credentials: true,
|
|
timeZone: true,
|
|
bufferTime: true,
|
|
availability: true,
|
|
id: true,
|
|
startTime: true,
|
|
endTime: true,
|
|
},
|
|
});
|
|
|
|
const selectedCalendars = await prisma.selectedCalendar.findMany({
|
|
where: {
|
|
userId: currentUser.id,
|
|
},
|
|
});
|
|
|
|
const busyTimes = await getBusyCalendarTimes(
|
|
currentUser.credentials,
|
|
dateFrom.format(),
|
|
dateTo.format(),
|
|
selectedCalendars
|
|
);
|
|
|
|
// busyTimes.push(...await getBusyVideoTimes(currentUser.credentials, dateFrom.format(), dateTo.format()));
|
|
|
|
const bufferedBusyTimes = busyTimes.map((a) => ({
|
|
start: dayjs(a.start).subtract(currentUser.bufferTime, "minute").toString(),
|
|
end: dayjs(a.end).add(currentUser.bufferTime, "minute").toString(),
|
|
}));
|
|
|
|
res.status(200).json({
|
|
busy: bufferedBusyTimes,
|
|
workingHours: {
|
|
daysOfWeek: [0, 1, 2, 3, 4, 5, 6],
|
|
timeZone: currentUser.timeZone,
|
|
startTime: currentUser.startTime,
|
|
endTime: currentUser.endTime,
|
|
},
|
|
});
|
|
}
|