* fix * move event types components to web * update import paths * mv apps components * migrate form builder * fix * mv sso * fix * mv * update import paths * update import paths * mv * mv * mv * fix * update Booker * fix * fix * fix * fix * mv video * mv embed components to web * update import paths * mv calendar weekly view components * update import paths * fix * fixp * fix * fix * fix * fix: update FormBuilder imports to use @calcom/features/form-builder Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update broken import paths after file migrations Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: correct import paths for platform atoms and moved components Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: apply CSS type fixes and add missing atoms exports Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: resolve type errors in test files after component migrations Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: resolve remaining type errors in test files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix * migrate * fix: resolve type errors in test and mock files - Add missing bookingForm, bookerFormErrorRef, instantConnectCooldownMs to Booker.test.tsx bookings prop - Add all required BookerEvent properties to event.mock.ts - Add vi import from vitest to all mock files - Fix date parameter types in packages/dayjs/__mocks__/index.ts - Add verificationCode and setVerificationCode to test-utils.tsx mock store - Remove children.type access in Section.tsx mock to fix type error - Fix lint issues: remove unused React imports, use import type where needed, add return types - Add biome-ignore comments for pre-existing lint warnings in test files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * migrate * migrate * migrate * update import paths * update import paths * update import paths * fix * migrate data table * migrate data table * fix * fix * fix * migrate insights components * migrate insights components * fix * mv * update import paths * fix * fix * fix * fix * fix * fix: resolve type errors in test mocks - Booker.test.tsx: Add all required UseFormReturn methods to bookingForm mock - event.mock.ts: Fix entity, subsetOfHosts, instantMeetingParameters, fieldTranslations, image types - dayjs/__mocks__/index.ts: Use Object.assign for proper typing of mock properties - Section.tsx: Change 'class' to 'className' in JSX with biome-ignore comment Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing hasDataErrors and dataErrors to bookings.errors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing loadingStates properties to bookings mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing slots properties (setTentativeSelectedTimeslots, tentativeSelectedTimeslots, slotReservationId) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update quickAvailabilityChecks to include utcEndIso and use valid status type Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing bookerForm properties (formName, beforeVerifyEmail, formErrors) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing UseFormReturn properties to bookerForm.bookingForm mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add hasFormErrors and formErrors to bookerForm.formErrors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add hasFormErrors and formErrors to bookerForm.errors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing isError property to mockEvent Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use complete BookerEvent mock in Booker.test.tsx Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use branded bookingFields type in event mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing schedule mock properties (isError, isSuccess, isLoading, dataUpdatedAt) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * revert * fix * fix * fix * fix build * fix * fix * fix * fix: correct AddMembersWithSwitch test wrapper to use initial assignAllTeamMembers value - Fixed test wrapper to initialize useState with componentProps.assignAllTeamMembers instead of hardcoded false, allowing tests to properly test different states - Updated test expectations for ALL_TEAM_MEMBERS_ENABLED_AND_SEGMENT_NOT_APPLICABLE state to match actual component behavior (toggle should be present and checked) - Fixed 'should show Segment when toggled on' test to start with assignAllTeamMembers: false to properly test the flow of enabling it - Added explicit types to satisfy biome lint requirements Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use JSX.Element instead of React.JSX.Element for type compatibility Co-Authored-By: benny@cal.com <sldisek783@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
619 lines
24 KiB
TypeScript
619 lines
24 KiB
TypeScript
import { AnimatePresence, LazyMotion, m } from "framer-motion";
|
|
import { useEffect, useMemo, useRef } from "react";
|
|
import StickyBox from "react-sticky-box";
|
|
import { Toaster } from "sonner";
|
|
import { shallow } from "zustand/shallow";
|
|
|
|
import BookingPageTagManager from "@calcom/app-store/BookingPageTagManager";
|
|
import { useIsPlatformBookerEmbed } from "@calcom/atoms/hooks/useIsPlatformBookerEmbed";
|
|
import dayjs from "@calcom/dayjs";
|
|
import PoweredBy from "@calcom/web/modules/ee/common/components/PoweredBy";
|
|
import { useEmbedUiConfig } from "@calcom/embed-core/embed-iframe";
|
|
import { updateEmbedBookerState } from "@calcom/embed-core/src/embed-iframe";
|
|
import TurnstileCaptcha from "@calcom/features/auth/Turnstile";
|
|
import { useBookerStoreContext } from "@calcom/features/bookings/Booker/BookerStoreProvider";
|
|
import useSkipConfirmStep from "@calcom/features/bookings/Booker/components/hooks/useSkipConfirmStep";
|
|
import { getQueryParam } from "@calcom/features/bookings/Booker/utils/query-param";
|
|
import { useNonEmptyScheduleDays } from "@calcom/features/schedules/lib/use-schedule/useNonEmptyScheduleDays";
|
|
import { scrollIntoViewSmooth } from "@calcom/lib/browser/browser.utils";
|
|
import { PUBLIC_INVALIDATE_AVAILABLE_SLOTS_ON_BOOKING_FORM } from "@calcom/lib/constants";
|
|
import { CLOUDFLARE_SITE_ID, CLOUDFLARE_USE_TURNSTILE_IN_BOOKER } from "@calcom/lib/constants";
|
|
import { useCompatSearchParams } from "@calcom/lib/hooks/useCompatSearchParams";
|
|
import { BookerLayouts } from "@calcom/prisma/zod-utils";
|
|
import classNames from "@calcom/ui/classNames";
|
|
import { UnpublishedEntity } from "@calcom/ui/components/unpublished-entity";
|
|
|
|
import { VerifyCodeDialog } from "./VerifyCodeDialog";
|
|
import { AvailableTimeSlots } from "./AvailableTimeSlots";
|
|
import { BookEventForm } from "./BookEventForm";
|
|
import { BookFormAsModal } from "./BookEventForm/BookFormAsModal";
|
|
import { DatePicker } from "./DatePicker";
|
|
import { DryRunMessage } from "./DryRunMessage";
|
|
import { EventMeta } from "./EventMeta";
|
|
import { HavingTroubleFindingTime } from "./HavingTroubleFindingTime";
|
|
import { Header } from "./Header";
|
|
import { InstantBooking } from "./InstantBooking";
|
|
import { LargeCalendar } from "./LargeCalendar";
|
|
import { OverlayCalendar } from "./OverlayCalendar/OverlayCalendar";
|
|
import { RedirectToInstantMeetingModal } from "./RedirectToInstantMeetingModal";
|
|
import { BookerSection } from "./Section";
|
|
import { NotFound } from "./Unavailable";
|
|
import { useIsQuickAvailabilityCheckFeatureEnabled } from "@calcom/features/bookings/Booker/components/hooks/useIsQuickAvailabilityCheckFeatureEnabled";
|
|
import { fadeInLeft, getBookerSizeClassNames, useBookerResizeAnimation } from "@calcom/features/bookings/Booker/config";
|
|
import framerFeatures from "@calcom/features/bookings/Booker/framer-features";
|
|
import type { BookerProps, WrappedBookerProps } from "@calcom/features/bookings/Booker/types";
|
|
import { isBookingDryRun } from "@calcom/features/bookings/Booker/utils/isBookingDryRun";
|
|
import { isTimeSlotAvailable } from "@calcom/features/bookings/Booker/utils/isTimeslotAvailable";
|
|
|
|
const BookerComponent = ({
|
|
username,
|
|
eventSlug,
|
|
hideBranding = false,
|
|
entity,
|
|
isInstantMeeting = false,
|
|
onGoBackInstantMeeting,
|
|
onConnectNowInstantMeeting,
|
|
onOverlayClickNoCalendar,
|
|
onClickOverlayContinue,
|
|
onOverlaySwitchStateChange,
|
|
sessionUsername,
|
|
rescheduleUid,
|
|
hasSession,
|
|
extraOptions,
|
|
bookings,
|
|
verifyEmail,
|
|
slots,
|
|
calendars,
|
|
bookerForm,
|
|
event,
|
|
bookerLayout,
|
|
schedule,
|
|
verifyCode,
|
|
isPlatform,
|
|
orgBannerUrl,
|
|
customClassNames,
|
|
areInstantMeetingParametersSet = false,
|
|
userLocale,
|
|
hasValidLicense,
|
|
isBookingDryRun: isBookingDryRunProp,
|
|
renderCaptcha,
|
|
hashedLink,
|
|
confirmButtonDisabled,
|
|
timeZones,
|
|
eventMetaChildren,
|
|
roundRobinHideOrgAndTeam,
|
|
showNoAvailabilityDialog,
|
|
}: BookerProps & WrappedBookerProps) => {
|
|
const searchParams = useCompatSearchParams();
|
|
const isPlatformBookerEmbed = useIsPlatformBookerEmbed();
|
|
const [bookerState, setBookerState] = useBookerStoreContext(
|
|
(state) => [state.state, state.setState],
|
|
shallow
|
|
);
|
|
|
|
const selectedDate = useBookerStoreContext((state) => state.selectedDate);
|
|
|
|
const {
|
|
shouldShowFormInDialog,
|
|
hasDarkBackground,
|
|
extraDays,
|
|
columnViewExtraDays,
|
|
isMobile,
|
|
layout,
|
|
hideEventTypeDetails,
|
|
isEmbed,
|
|
bookerLayouts,
|
|
} = bookerLayout;
|
|
|
|
const [seatedEventData, setSeatedEventData] = useBookerStoreContext(
|
|
(state) => [state.seatedEventData, state.setSeatedEventData],
|
|
shallow
|
|
);
|
|
const { selectedTimeslot, setSelectedTimeslot, allSelectedTimeslots } = slots;
|
|
const [dayCount, setDayCount] = useBookerStoreContext(
|
|
(state) => [state.dayCount, state.setDayCount],
|
|
shallow
|
|
);
|
|
|
|
const nonEmptyScheduleDays = useNonEmptyScheduleDays(schedule?.data?.slots).filter(
|
|
(slot) => dayjs(selectedDate).diff(slot, "day") <= 0
|
|
);
|
|
|
|
const totalWeekDays = 7;
|
|
const addonDays =
|
|
nonEmptyScheduleDays.length < extraDays
|
|
? (extraDays - nonEmptyScheduleDays.length + 1) * totalWeekDays
|
|
: 0;
|
|
// Taking one more available slot(extraDays + 1) to calculate the no of days in between, that next and prev button need to shift.
|
|
const availableSlots = nonEmptyScheduleDays.slice(0, extraDays + 1);
|
|
if (nonEmptyScheduleDays.length !== 0) {
|
|
const slotIndex =
|
|
availableSlots.length === extraDays + 1 ? availableSlots.length - 2 : availableSlots.length - 1;
|
|
columnViewExtraDays.current =
|
|
Math.abs(dayjs(selectedDate).diff(availableSlots[slotIndex], "day")) + addonDays;
|
|
}
|
|
|
|
const nextSlots =
|
|
Math.abs(dayjs(selectedDate).diff(availableSlots[availableSlots.length - 1], "day")) + addonDays;
|
|
|
|
const animationScope = useBookerResizeAnimation(layout, bookerState);
|
|
|
|
const timeslotsRef = useRef<HTMLDivElement>(null);
|
|
const isQuickAvailabilityCheckFeatureEnabled = useIsQuickAvailabilityCheckFeatureEnabled();
|
|
|
|
const StickyOnDesktop = isMobile ? "div" : StickyBox;
|
|
|
|
const { bookerFormErrorRef, key, formEmail, bookingForm, errors: formErrors } = bookerForm;
|
|
|
|
const {
|
|
handleBookEvent,
|
|
errors,
|
|
loadingStates,
|
|
expiryTime,
|
|
instantVideoMeetingUrl,
|
|
instantConnectCooldownMs,
|
|
} = bookings;
|
|
|
|
const watchedCfToken = bookingForm.watch("cfToken");
|
|
|
|
const {
|
|
isEmailVerificationModalVisible,
|
|
setEmailVerificationModalVisible,
|
|
handleVerifyEmail,
|
|
renderConfirmNotVerifyEmailButtonCond,
|
|
isVerificationCodeSending,
|
|
} = verifyEmail;
|
|
|
|
const {
|
|
overlayBusyDates,
|
|
isOverlayCalendarEnabled,
|
|
connectedCalendars,
|
|
loadingConnectedCalendar,
|
|
onToggleCalendar,
|
|
} = calendars;
|
|
|
|
const scrolledToTimeslotsOnce = useRef(false);
|
|
const embedUiConfig = useEmbedUiConfig();
|
|
const scrollToTimeSlots = () => {
|
|
if (
|
|
isMobile &&
|
|
!scrolledToTimeslotsOnce.current &&
|
|
timeslotsRef.current &&
|
|
!embedUiConfig.disableAutoScroll
|
|
) {
|
|
// eslint-disable-next-line @calcom/eslint/no-scroll-into-view-embed -- We are allowing it here because scrollToTimeSlots is called on explicit user action where it makes sense to scroll, remember that the goal is to not do auto-scroll on embed load because that ends up scrolling the embedding webpage too
|
|
scrollIntoViewSmooth(timeslotsRef.current, isEmbed);
|
|
scrolledToTimeslotsOnce.current = true;
|
|
}
|
|
};
|
|
|
|
const skipConfirmStep = useSkipConfirmStep(
|
|
bookingForm,
|
|
bookerState,
|
|
isInstantMeeting,
|
|
layout == BookerLayouts.WEEK_VIEW,
|
|
event?.data?.bookingFields,
|
|
event?.data?.locations
|
|
);
|
|
|
|
// Cloudflare Turnstile Captcha
|
|
const shouldRenderCaptcha = !!(
|
|
!process.env.NEXT_PUBLIC_IS_E2E &&
|
|
renderCaptcha &&
|
|
CLOUDFLARE_SITE_ID &&
|
|
CLOUDFLARE_USE_TURNSTILE_IN_BOOKER === "1" &&
|
|
(bookerState === "booking" || (bookerState === "selecting_time" && skipConfirmStep))
|
|
);
|
|
|
|
const onAvailableTimeSlotSelect = (time: string) => {
|
|
setSelectedTimeslot(time);
|
|
};
|
|
|
|
updateEmbedBookerState({ bookerState, slotsQuery: schedule });
|
|
|
|
useEffect(() => {
|
|
if (event.isPending) return setBookerState("loading");
|
|
if (!selectedDate) return setBookerState("selecting_date");
|
|
if (!selectedTimeslot) return setBookerState("selecting_time");
|
|
const isSkipConfirmStepSupported = !isInstantMeeting && layout !== BookerLayouts.WEEK_VIEW;
|
|
if (selectedTimeslot && skipConfirmStep && isSkipConfirmStepSupported)
|
|
return setBookerState("selecting_time");
|
|
return setBookerState("booking");
|
|
}, [event, selectedDate, selectedTimeslot, setBookerState, skipConfirmStep, layout, isInstantMeeting]);
|
|
|
|
const unavailableTimeSlots = isQuickAvailabilityCheckFeatureEnabled
|
|
? allSelectedTimeslots.filter((slot) => {
|
|
return !isTimeSlotAvailable({
|
|
scheduleData: schedule?.data ?? null,
|
|
slotToCheckInIso: slot,
|
|
quickAvailabilityChecks: slots.quickAvailabilityChecks,
|
|
});
|
|
})
|
|
: [];
|
|
|
|
const slot = getQueryParam("slot");
|
|
|
|
useEffect(() => {
|
|
setSelectedTimeslot(slot || null);
|
|
}, [slot, setSelectedTimeslot]);
|
|
|
|
const onSubmit = (timeSlot?: string) =>
|
|
renderConfirmNotVerifyEmailButtonCond ? handleBookEvent(timeSlot) : handleVerifyEmail();
|
|
|
|
const EventBooker = useMemo(() => {
|
|
return bookerState === "booking" ? (
|
|
<BookEventForm
|
|
key={key}
|
|
timeslot={selectedTimeslot}
|
|
shouldRenderCaptcha={shouldRenderCaptcha}
|
|
onCancel={() => {
|
|
setSelectedTimeslot(null);
|
|
// Temporarily allow disabling it, till we are sure that it doesn't cause any significant load on the system
|
|
if (PUBLIC_INVALIDATE_AVAILABLE_SLOTS_ON_BOOKING_FORM) {
|
|
// Ensures that user has latest available slots when they want to re-choose from the slots
|
|
schedule?.invalidate();
|
|
}
|
|
if (seatedEventData.bookingUid) {
|
|
setSeatedEventData({ ...seatedEventData, bookingUid: undefined, attendees: undefined });
|
|
}
|
|
}}
|
|
onSubmit={() => (renderConfirmNotVerifyEmailButtonCond ? handleBookEvent() : handleVerifyEmail())}
|
|
errorRef={bookerFormErrorRef}
|
|
errors={{ ...formErrors, ...errors }}
|
|
isTimeslotUnavailable={!isInstantMeeting && unavailableTimeSlots.includes(selectedTimeslot || "")}
|
|
loadingStates={loadingStates}
|
|
renderConfirmNotVerifyEmailButtonCond={renderConfirmNotVerifyEmailButtonCond}
|
|
bookingForm={bookingForm}
|
|
eventQuery={event}
|
|
extraOptions={extraOptions}
|
|
isVerificationCodeSending={isVerificationCodeSending}
|
|
confirmButtonDisabled={confirmButtonDisabled}
|
|
classNames={{
|
|
confirmButton: customClassNames?.confirmStep?.confirmButton,
|
|
backButton: customClassNames?.confirmStep?.backButton,
|
|
}}
|
|
isPlatform={isPlatform}>
|
|
<>
|
|
{!isPlatform && (
|
|
<RedirectToInstantMeetingModal
|
|
expiryTime={expiryTime}
|
|
bookingId={parseInt(getQueryParam("bookingId") || "0")}
|
|
instantVideoMeetingUrl={instantVideoMeetingUrl}
|
|
onGoBack={() => {
|
|
onGoBackInstantMeeting();
|
|
}}
|
|
orgName={event.data?.entity?.name}
|
|
/>
|
|
)}
|
|
</>
|
|
</BookEventForm>
|
|
) : (
|
|
<></>
|
|
);
|
|
}, [
|
|
bookerFormErrorRef,
|
|
instantVideoMeetingUrl,
|
|
bookerState,
|
|
bookingForm,
|
|
errors,
|
|
event,
|
|
expiryTime,
|
|
extraOptions,
|
|
formErrors,
|
|
handleBookEvent,
|
|
handleVerifyEmail,
|
|
key,
|
|
loadingStates,
|
|
onGoBackInstantMeeting,
|
|
renderConfirmNotVerifyEmailButtonCond,
|
|
seatedEventData,
|
|
setSeatedEventData,
|
|
setSelectedTimeslot,
|
|
isPlatform,
|
|
shouldRenderCaptcha,
|
|
isVerificationCodeSending,
|
|
unavailableTimeSlots,
|
|
]);
|
|
|
|
/**
|
|
* Unpublished organization handling - Below
|
|
* - Reschedule links in email are of the organization event for an unpublished org, so we need to allow rescheduling unpublished event
|
|
* - Ideally, we should allow rescheduling only for the event that has an old link(non-org link) but that's a bit complex and we are fine showing all reschedule links on unpublished organization
|
|
*/
|
|
const considerUnpublished = entity.considerUnpublished && !rescheduleUid;
|
|
|
|
if (considerUnpublished) {
|
|
return <UnpublishedEntity {...entity} />;
|
|
}
|
|
|
|
if (event.isSuccess && !event.data) {
|
|
return <NotFound />;
|
|
}
|
|
|
|
if (bookerState === "loading") {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{event.data && !isPlatform ? <BookingPageTagManager eventType={event.data} /> : <></>}
|
|
{(isBookingDryRunProp || isBookingDryRun(searchParams)) && <DryRunMessage isEmbed={isEmbed} />}
|
|
<div
|
|
className={classNames(
|
|
// In a popup embed, if someone clicks outside the main(having main class or main tag), it closes the embed
|
|
"main",
|
|
"text-default flex min-h-full w-full flex-col items-center",
|
|
layout === BookerLayouts.MONTH_VIEW && !isEmbed && "my-20 ",
|
|
layout === BookerLayouts.MONTH_VIEW ? "overflow-visible" : "overflow-clip",
|
|
`${customClassNames?.bookerWrapper}`
|
|
)}>
|
|
<div
|
|
ref={animationScope}
|
|
data-testid="booker-container"
|
|
className={classNames(
|
|
...getBookerSizeClassNames(layout, bookerState, hideEventTypeDetails),
|
|
`bg-default dark:bg-cal-muted grid max-w-full items-start dark:scheme-dark sm:transition-[width] sm:duration-300 sm:motion-reduce:transition-none md:flex-row`,
|
|
// We remove border only when the content covers entire viewport. Because in embed, it can almost never be the case that it covers entire viewport, we show the border there
|
|
(layout === BookerLayouts.MONTH_VIEW || isEmbed) && "border-subtle rounded-md",
|
|
!isEmbed && "sm:transition-[width] sm:duration-300",
|
|
isEmbed && layout === BookerLayouts.MONTH_VIEW && "border-booker sm:border-booker-width",
|
|
!isEmbed && layout === BookerLayouts.MONTH_VIEW && `border-subtle border`,
|
|
`${customClassNames?.bookerContainer}`
|
|
)}>
|
|
<AnimatePresence>
|
|
{!isInstantMeeting && (
|
|
<BookerSection
|
|
area="header"
|
|
className={classNames(
|
|
layout === BookerLayouts.MONTH_VIEW && "fixed top-4 z-10 ltr:right-4 rtl:left-4",
|
|
(layout === BookerLayouts.COLUMN_VIEW || layout === BookerLayouts.WEEK_VIEW) &&
|
|
"bg-default dark:bg-cal-muted sticky top-0 z-10"
|
|
)}>
|
|
{isPlatform && layout === BookerLayouts.MONTH_VIEW ? (
|
|
<></>
|
|
) : (
|
|
<Header
|
|
isMyLink={Boolean(username === sessionUsername)}
|
|
eventSlug={eventSlug}
|
|
enabledLayouts={bookerLayouts.enabledLayouts}
|
|
extraDays={layout === BookerLayouts.COLUMN_VIEW ? columnViewExtraDays.current : extraDays}
|
|
isMobile={isMobile}
|
|
nextSlots={nextSlots}
|
|
renderOverlay={() =>
|
|
isEmbed ? (
|
|
<></>
|
|
) : (
|
|
<>
|
|
<OverlayCalendar
|
|
isOverlayCalendarEnabled={isOverlayCalendarEnabled}
|
|
connectedCalendars={connectedCalendars}
|
|
loadingConnectedCalendar={loadingConnectedCalendar}
|
|
overlayBusyDates={overlayBusyDates}
|
|
onToggleCalendar={onToggleCalendar}
|
|
hasSession={hasSession}
|
|
handleClickContinue={onClickOverlayContinue}
|
|
handleSwitchStateChange={onOverlaySwitchStateChange}
|
|
handleClickNoCalendar={() => {
|
|
onOverlayClickNoCalendar();
|
|
}}
|
|
/>
|
|
</>
|
|
)
|
|
}
|
|
/>
|
|
)}
|
|
</BookerSection>
|
|
)}
|
|
<StickyOnDesktop key="meta" className={classNames("relative z-10 flex [grid-area:meta]")}>
|
|
<BookerSection
|
|
area="meta"
|
|
className="max-w-screen flex w-full flex-col md:w-(--booker-meta-width)">
|
|
{!hideEventTypeDetails && orgBannerUrl && (
|
|
<img
|
|
loading="eager"
|
|
className="-mb-9 h-auto w-full object-contain object-top ltr:rounded-tl-md rtl:rounded-tr-md sm:h-16 sm:object-cover"
|
|
alt="org banner"
|
|
src={orgBannerUrl}
|
|
/>
|
|
)}
|
|
{!hideEventTypeDetails && (
|
|
<EventMeta
|
|
selectedTimeslot={selectedTimeslot}
|
|
classNames={{
|
|
eventMetaContainer: customClassNames?.eventMetaCustomClassNames?.eventMetaContainer,
|
|
eventMetaTitle: customClassNames?.eventMetaCustomClassNames?.eventMetaTitle,
|
|
eventMetaTimezoneSelect:
|
|
customClassNames?.eventMetaCustomClassNames?.eventMetaTimezoneSelect,
|
|
}}
|
|
event={event.data}
|
|
isPending={event.isPending}
|
|
isPlatform={isPlatform}
|
|
isPrivateLink={!!hashedLink}
|
|
locale={userLocale}
|
|
timeZones={timeZones}
|
|
roundRobinHideOrgAndTeam={roundRobinHideOrgAndTeam}
|
|
hideEventTypeDetails={hideEventTypeDetails}>
|
|
{eventMetaChildren}
|
|
</EventMeta>
|
|
)}
|
|
{layout !== BookerLayouts.MONTH_VIEW &&
|
|
!(layout === "mobile" && bookerState === "booking") && (
|
|
<div className="mt-auto px-5 py-3">
|
|
<DatePicker
|
|
classNames={customClassNames?.datePickerCustomClassNames}
|
|
event={event}
|
|
slots={schedule?.data?.slots}
|
|
isLoading={schedule.isPending}
|
|
scrollToTimeSlots={scrollToTimeSlots}
|
|
showNoAvailabilityDialog={showNoAvailabilityDialog}
|
|
/>
|
|
</div>
|
|
)}
|
|
</BookerSection>
|
|
</StickyOnDesktop>
|
|
|
|
<BookerSection
|
|
key="book-event-form"
|
|
area="main"
|
|
className="sticky top-0 -ml-px h-full p-6 md:w-(--booker-main-width) md:border-l"
|
|
{...fadeInLeft}
|
|
visible={bookerState === "booking" && !shouldShowFormInDialog}>
|
|
{EventBooker}
|
|
</BookerSection>
|
|
|
|
<BookerSection
|
|
key="datepicker"
|
|
area="main"
|
|
visible={bookerState !== "booking" && layout === BookerLayouts.MONTH_VIEW}
|
|
{...fadeInLeft}
|
|
initial="visible"
|
|
className="md:border-subtle -ml-px h-full shrink px-5 py-3 md:border-l lg:w-(--booker-main-width)">
|
|
<DatePicker
|
|
classNames={customClassNames?.datePickerCustomClassNames}
|
|
event={event}
|
|
slots={schedule?.data?.slots}
|
|
isLoading={schedule.isPending}
|
|
scrollToTimeSlots={scrollToTimeSlots}
|
|
showNoAvailabilityDialog={showNoAvailabilityDialog}
|
|
/>
|
|
</BookerSection>
|
|
|
|
<BookerSection
|
|
key="large-calendar"
|
|
area="main"
|
|
visible={layout === BookerLayouts.WEEK_VIEW}
|
|
className="border-subtle sticky top-0 -ml-px h-full md:border-l"
|
|
{...fadeInLeft}>
|
|
<LargeCalendar
|
|
extraDays={extraDays}
|
|
schedule={schedule.data}
|
|
isLoading={schedule.isPending}
|
|
event={event}
|
|
/>
|
|
</BookerSection>
|
|
<BookerSection
|
|
key="timeslots"
|
|
area={{ default: "main", month_view: "timeslots" }}
|
|
visible={
|
|
(layout !== BookerLayouts.WEEK_VIEW && bookerState === "selecting_time") ||
|
|
layout === BookerLayouts.COLUMN_VIEW
|
|
}
|
|
className={classNames(
|
|
"border-subtle rtl:border-default flex h-full w-full flex-col overflow-x-auto px-5 py-3 pb-0 rtl:border-r ltr:md:border-l",
|
|
layout === BookerLayouts.MONTH_VIEW &&
|
|
"h-full overflow-hidden md:w-(--booker-timeslots-width)",
|
|
layout !== BookerLayouts.MONTH_VIEW && "sticky top-0"
|
|
)}
|
|
ref={timeslotsRef}
|
|
{...fadeInLeft}>
|
|
<AvailableTimeSlots
|
|
onAvailableTimeSlotSelect={onAvailableTimeSlotSelect}
|
|
customClassNames={customClassNames?.availableTimeSlotsCustomClassNames}
|
|
extraDays={extraDays}
|
|
limitHeight={layout === BookerLayouts.MONTH_VIEW}
|
|
schedule={schedule}
|
|
isLoading={schedule.isPending}
|
|
seatsPerTimeSlot={event.data?.seatsPerTimeSlot}
|
|
unavailableTimeSlots={unavailableTimeSlots}
|
|
showAvailableSeatsCount={event.data?.seatsShowAvailabilityCount}
|
|
event={event}
|
|
loadingStates={loadingStates}
|
|
renderConfirmNotVerifyEmailButtonCond={renderConfirmNotVerifyEmailButtonCond}
|
|
isVerificationCodeSending={isVerificationCodeSending}
|
|
onSubmit={onSubmit}
|
|
skipConfirmStep={skipConfirmStep}
|
|
shouldRenderCaptcha={shouldRenderCaptcha}
|
|
watchedCfToken={watchedCfToken}
|
|
confirmButtonDisabled={confirmButtonDisabled}
|
|
confirmStepClassNames={customClassNames?.confirmStep}
|
|
/>
|
|
</BookerSection>
|
|
</AnimatePresence>
|
|
</div>
|
|
<HavingTroubleFindingTime
|
|
visible={bookerState !== "booking" && layout === BookerLayouts.MONTH_VIEW && !isMobile}
|
|
dayCount={dayCount}
|
|
isScheduleLoading={schedule.isLoading}
|
|
onButtonClick={() => {
|
|
setDayCount(null);
|
|
}}
|
|
/>
|
|
|
|
{bookerState !== "booking" &&
|
|
event.data?.showInstantEventConnectNowModal &&
|
|
areInstantMeetingParametersSet && (
|
|
<div
|
|
className={classNames(
|
|
"animate-fade-in-up z-40 my-2 opacity-0",
|
|
layout === BookerLayouts.MONTH_VIEW && isEmbed ? "" : "fixed bottom-2"
|
|
)}
|
|
style={{ animationDelay: "1s" }}>
|
|
<InstantBooking
|
|
event={event.data}
|
|
cooldownMs={instantConnectCooldownMs}
|
|
onConnectNow={() => {
|
|
onConnectNowInstantMeeting();
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{shouldRenderCaptcha && (
|
|
<div className="mb-6 mt-auto pt-6">
|
|
<TurnstileCaptcha
|
|
appearance="interaction-only"
|
|
onVerify={(token) => {
|
|
bookingForm.setValue("cfToken", token);
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{!hideBranding && (!isPlatform || isPlatformBookerEmbed) && !shouldRenderCaptcha && (
|
|
<m.span
|
|
key="logo"
|
|
className={classNames(
|
|
"mb-6 mt-auto pt-6 [&_img]:h-[15px]",
|
|
hasDarkBackground ? "dark" : "",
|
|
layout === BookerLayouts.MONTH_VIEW ? "block" : "hidden"
|
|
)}>
|
|
<PoweredBy logoOnly hasValidLicense={hasValidLicense} />
|
|
</m.span>
|
|
)}
|
|
</div>
|
|
<>
|
|
{verifyCode && formEmail ? (
|
|
<VerifyCodeDialog
|
|
isOpenDialog={isEmailVerificationModalVisible}
|
|
setIsOpenDialog={setEmailVerificationModalVisible}
|
|
email={formEmail}
|
|
isUserSessionRequiredToVerify={false}
|
|
verifyCodeWithSessionNotRequired={verifyCode.verifyCodeWithSessionNotRequired}
|
|
verifyCodeWithSessionRequired={verifyCode.verifyCodeWithSessionRequired}
|
|
error={verifyCode.error}
|
|
resetErrors={verifyCode.resetErrors}
|
|
isPending={verifyCode.isPending}
|
|
setIsPending={verifyCode.setIsPending}
|
|
/>
|
|
) : (
|
|
<></>
|
|
)}
|
|
</>
|
|
<BookFormAsModal
|
|
onCancel={() => setSelectedTimeslot(null)}
|
|
visible={bookerState === "booking" && shouldShowFormInDialog}>
|
|
{EventBooker}
|
|
</BookFormAsModal>
|
|
<Toaster position="bottom-right" />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export const Booker = (props: BookerProps & WrappedBookerProps) => {
|
|
return (
|
|
<LazyMotion strict features={framerFeatures}>
|
|
<BookerComponent {...props} />
|
|
</LazyMotion>
|
|
);
|
|
};
|