60 lines
2.1 KiB
TypeScript
60 lines
2.1 KiB
TypeScript
import { useMemo } from "react";
|
|
|
|
import dayjs from "@calcom/dayjs";
|
|
import { Calendar } from "@calcom/features/calendars/weeklyview";
|
|
import type { CalendarAvailableTimeslots } from "@calcom/features/calendars/weeklyview/types/state";
|
|
|
|
import { useBookerStore } from "../store";
|
|
import { useEvent, useScheduleForEvent } from "../utils/event";
|
|
|
|
export const LargeCalendar = ({ extraDays }: { extraDays: number }) => {
|
|
const selectedDate = useBookerStore((state) => state.selectedDate);
|
|
const date = selectedDate || dayjs().format("YYYY-MM-DD");
|
|
const setSelectedTimeslot = useBookerStore((state) => state.setSelectedTimeslot);
|
|
const selectedEventDuration = useBookerStore((state) => state.selectedDuration);
|
|
const schedule = useScheduleForEvent({
|
|
prefetchNextMonth: !!extraDays && dayjs(date).month() !== dayjs(date).add(extraDays, "day").month(),
|
|
});
|
|
|
|
const event = useEvent();
|
|
const eventDuration = selectedEventDuration || event?.data?.length || 30;
|
|
|
|
const availableSlots = useMemo(() => {
|
|
const availableTimeslots: CalendarAvailableTimeslots = {};
|
|
if (!schedule.data) return availableTimeslots;
|
|
if (!schedule.data.slots) return availableTimeslots;
|
|
|
|
for (const day in schedule.data.slots) {
|
|
availableTimeslots[day] = schedule.data.slots[day].map((slot) => ({
|
|
start: dayjs(slot.time).toDate(),
|
|
end: dayjs(slot.time).add(eventDuration, "minutes").toDate(),
|
|
}));
|
|
}
|
|
|
|
return availableTimeslots;
|
|
}, [schedule, eventDuration]);
|
|
|
|
const startDate = selectedDate ? dayjs(selectedDate).toDate() : dayjs().toDate();
|
|
const endDate = dayjs(startDate)
|
|
.add(extraDays - 1, "day")
|
|
.toDate();
|
|
|
|
return (
|
|
<div className="h-full [--calendar-dates-sticky-offset:66px]">
|
|
<Calendar
|
|
isLoading={schedule.isLoading}
|
|
availableTimeslots={availableSlots}
|
|
startHour={0}
|
|
endHour={23}
|
|
events={[]}
|
|
startDate={startDate}
|
|
endDate={endDate}
|
|
onEmptyCellClick={(date) => setSelectedTimeslot(date.toISOString())}
|
|
gridCellsPerHour={60 / eventDuration}
|
|
hoverEventDuration={eventDuration}
|
|
hideHeader
|
|
/>
|
|
</div>
|
|
);
|
|
};
|