Merge pull request #348 from emrysal/bugfix/available-slots-timezone

Fixes #347: timeZone is not applied to AvailableTimes
pull/352/head
Bailey Pumfleet 2021-07-09 11:44:16 +01:00 committed by GitHub
commit 1fe0dc1dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 41 deletions

View File

@ -3,10 +3,25 @@ import { useRouter } from "next/router";
import Slots from "./Slots";
import { ExclamationIcon } from "@heroicons/react/solid";
const AvailableTimes = ({ date, eventLength, eventTypeId, workingHours, timeFormat, user }) => {
const AvailableTimes = ({
date,
eventLength,
eventTypeId,
workingHours,
timeFormat,
user,
organizerTimeZone,
}) => {
const router = useRouter();
const { rescheduleUid } = router.query;
const { slots, isFullyBooked, hasErrors } = Slots({ date, eventLength, workingHours });
const { slots, isFullyBooked, hasErrors } = Slots({
date,
eventLength,
workingHours,
organizerTimeZone,
});
return (
<div className="sm:pl-4 mt-8 sm:mt-0 text-center sm:w-1/3 md:max-h-97 overflow-y-auto">
<div className="text-gray-600 font-light text-xl mb-4 text-left">

View File

@ -1,10 +1,9 @@
import { useEffect, useState } from "react";
import { useState, useEffect } from "react";
import { useRouter } from "next/router";
import getSlots from "../../lib/slots";
import dayjs, { Dayjs } from "dayjs";
import isBetween from "dayjs/plugin/isBetween";
import utc from "dayjs/plugin/utc";
dayjs.extend(isBetween);
dayjs.extend(utc);
@ -12,9 +11,11 @@ type Props = {
eventLength: number;
minimumBookingNotice?: number;
date: Dayjs;
workingHours: [];
organizerTimeZone: string;
};
const Slots = ({ eventLength, minimumBookingNotice, date, workingHours, organizerUtcOffset }: Props) => {
const Slots = ({ eventLength, minimumBookingNotice, date, workingHours, organizerTimeZone }: Props) => {
minimumBookingNotice = minimumBookingNotice || 0;
const router = useRouter();
@ -48,7 +49,7 @@ const Slots = ({ eventLength, minimumBookingNotice, date, workingHours, organize
inviteeDate: date,
workingHours,
minimumBookingNotice,
organizerUtcOffset,
organizerTimeZone,
});
const timesLengthBeforeConflicts: number = times.length;

View File

@ -81,9 +81,12 @@ const organizerBoundaries = (
}
}
} else {
boundaries.push({ lowerBound, upperBound });
if (item.days.includes(startDay)) {
boundaries.push({ lowerBound, upperBound });
}
}
});
return boundaries;
};
@ -116,7 +119,7 @@ const getSlots = ({
workingHours,
organizerTimeZone,
}: GetSlots): Dayjs[] => {
const startTime = dayjs.utc().isSame(dayjs(inviteeDate), "day")
const startTime = dayjs().utcOffset(inviteeDate.utcOffset()).isSame(inviteeDate, "day")
? inviteeDate.hour() * 60 + inviteeDate.minute() + (minimumBookingNotice || 0)
: 0;

View File

@ -2,10 +2,10 @@ import { useEffect, useState } from "react";
import { GetServerSideProps } from "next";
import Head from "next/head";
import { ChevronDownIcon, ClockIcon, GlobeIcon } from "@heroicons/react/solid";
import prisma from "../../lib/prisma";
import { useRouter } from "next/router";
import { Dayjs } from "dayjs";
import prisma, { whereAndSelect } from "@lib/prisma";
import { collectPageParameters, telemetryEventTypes, useTelemetry } from "../../lib/telemetry";
import AvailableTimes from "../../components/booking/AvailableTimes";
import TimeOptions from "../../components/booking/TimeOptions";
@ -134,6 +134,7 @@ export default function Type(props): Type {
<AvailableTimes
workingHours={props.workingHours}
timeFormat={timeFormat}
organizerTimeZone={props.eventType.timeZone || props.user.timeZone}
eventLength={props.eventType.length}
eventTypeId={props.eventType.id}
date={selectedDate}
@ -149,26 +150,27 @@ export default function Type(props): Type {
}
export const getServerSideProps: GetServerSideProps = async (context) => {
const user = await prisma.user.findFirst({
where: {
const user = await whereAndSelect(
prisma.user.findFirst,
{
username: context.query.user.toLowerCase(),
},
select: {
id: true,
username: true,
name: true,
email: true,
bio: true,
avatar: true,
eventTypes: true,
startTime: true,
timeZone: true,
endTime: true,
weekStart: true,
availability: true,
hideBranding: true,
},
});
[
"id",
"username",
"name",
"email",
"bio",
"avatar",
"eventTypes",
"startTime",
"endTime",
"timeZone",
"weekStart",
"availability",
"hideBranding",
]
);
if (!user) {
return {
@ -176,22 +178,14 @@ export const getServerSideProps: GetServerSideProps = async (context) => {
};
}
const eventType = await prisma.eventType.findFirst({
where: {
const eventType = await whereAndSelect(
prisma.eventType.findFirst,
{
userId: user.id,
slug: {
equals: context.query.type,
},
slug: context.query.type,
},
select: {
id: true,
title: true,
description: true,
length: true,
availability: true,
timeZone: true,
},
});
["id", "title", "description", "length", "availability", "timeZone"]
);
if (!eventType) {
return {