cal.pub0.org/apps/web/components/ui/Scheduler.tsx

156 lines
5.1 KiB
TypeScript
Raw Normal View History

import { TrashIcon } from "@heroicons/react/outline";
import { Availability } from "@prisma/client";
import dayjs from "dayjs";
import timezone from "dayjs/plugin/timezone";
import utc from "dayjs/plugin/utc";
import React, { useEffect, useState } from "react";
import TimezoneSelect, { ITimezoneOption } from "react-timezone-select";
2021-10-15 10:53:42 +00:00
import { useLocale } from "@lib/hooks/useLocale";
import Button from "@components/ui/Button";
import { WeekdaySelect } from "./WeekdaySelect";
import SetTimesModal from "./modal/SetTimesModal";
2021-07-07 10:43:13 +00:00
2021-06-14 18:53:20 +00:00
dayjs.extend(utc);
dayjs.extend(timezone);
type AvailabilityInput = Pick<Availability, "days" | "startTime" | "endTime">;
type Props = {
timeZone: string;
availability: Availability[];
setTimeZone: (timeZone: string) => void;
setAvailability: (schedule: {
openingHours: AvailabilityInput[];
dateOverrides: AvailabilityInput[];
}) => void;
};
2021-06-14 18:53:20 +00:00
/**
* @deprecated
*/
export const Scheduler = ({ availability, setAvailability, timeZone, setTimeZone }: Props) => {
const { t, i18n } = useLocale();
const [editSchedule, setEditSchedule] = useState(-1);
const [openingHours, setOpeningHours] = useState<Availability[]>([]);
2021-06-14 18:53:20 +00:00
useEffect(() => {
setOpeningHours(availability.filter((item: Availability) => item.days.length !== 0));
}, []);
useEffect(() => {
setAvailability({ openingHours, dateOverrides: [] });
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [openingHours]);
2021-06-14 18:53:20 +00:00
const addNewSchedule = () => setEditSchedule(openingHours.length);
const applyEditSchedule = (changed: Availability) => {
// new entry
if (!changed.days) {
changed.days = [1, 2, 3, 4, 5]; // Mon - Fri
setOpeningHours(openingHours.concat(changed));
} else {
// update
const replaceWith = { ...openingHours[editSchedule], ...changed };
openingHours.splice(editSchedule, 1, replaceWith);
setOpeningHours([...openingHours]);
}
};
2021-06-14 18:53:20 +00:00
const removeScheduleAt = (toRemove: number) => {
openingHours.splice(toRemove, 1);
setOpeningHours([...openingHours]);
2021-06-14 18:53:20 +00:00
};
const OpeningHours = ({ idx, item }: { idx: number; item: Availability }) => (
<li className="flex justify-between border-b py-2">
2021-08-02 15:24:01 +00:00
<div className="flex flex-col space-y-4 lg:inline-flex">
<WeekdaySelect defaultValue={item.days} onSelect={(selected: number[]) => (item.days = selected)} />
2021-08-02 15:24:01 +00:00
<button
className="rounded-sm bg-neutral-100 px-3 py-2 text-sm"
2021-08-02 15:24:01 +00:00
type="button"
onClick={() => setEditSchedule(idx)}>
{item.startTime.toLocaleTimeString(i18n.language, {
hour: "numeric",
minute: "2-digit",
timeZone: "UTC",
})}
2021-10-15 10:53:42 +00:00
&nbsp;{t("until")}&nbsp;
{item.endTime.toLocaleTimeString(i18n.language, {
hour: "numeric",
minute: "2-digit",
timeZone: "UTC",
})}
</button>
</div>
<button
type="button"
onClick={() => removeScheduleAt(idx)}
className="btn-sm ml-1 bg-transparent px-2 py-1">
<TrashIcon className="-mt-1 inline h-5 w-5 text-gray-400" />
</button>
</li>
);
2021-06-14 18:53:20 +00:00
return (
<div>
2021-07-30 23:05:38 +00:00
<div className="flex">
<div className="w-full">
<div>
2021-06-14 18:53:20 +00:00
<label htmlFor="timeZone" className="block text-sm font-medium text-gray-700">
2021-10-15 10:53:42 +00:00
{t("timezone")}
2021-06-14 18:53:20 +00:00
</label>
<div className="mt-1">
<TimezoneSelect
id="timeZone"
value={timeZone}
onChange={(tz: ITimezoneOption) => setTimeZone(tz.value)}
2022-02-09 22:32:31 +00:00
className="focus:border-brand mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:ring-black sm:text-sm"
/>
2021-06-14 18:53:20 +00:00
</div>
</div>
<ul>
{openingHours.map((item, idx) => (
<OpeningHours key={idx} idx={idx} item={item} />
))}
2021-06-14 18:53:20 +00:00
</ul>
<Button type="button" onClick={addNewSchedule} className="mt-2" color="secondary" size="sm">
2021-10-15 10:53:42 +00:00
{t("add_another")}
</Button>
2021-06-14 18:53:20 +00:00
</div>
</div>
{editSchedule >= 0 && (
<SetTimesModal
startTime={
openingHours[editSchedule]
? new Date(openingHours[editSchedule].startTime).getUTCHours() * 60 +
new Date(openingHours[editSchedule].startTime).getUTCMinutes()
: 540
}
endTime={
openingHours[editSchedule]
? new Date(openingHours[editSchedule].endTime).getUTCHours() * 60 +
new Date(openingHours[editSchedule].endTime).getUTCMinutes()
: 1020
}
onChange={(times: { startTime: number; endTime: number }) =>
applyEditSchedule({
...(openingHours[editSchedule] || {}),
startTime: new Date(
new Date().setUTCHours(Math.floor(times.startTime / 60), times.startTime % 60, 0, 0)
),
endTime: new Date(
new Date().setUTCHours(Math.floor(times.endTime / 60), times.endTime % 60, 0, 0)
),
})
}
onExit={() => setEditSchedule(-1)}
/>
)}
2021-06-14 18:53:20 +00:00
</div>
);
};