* Fix: Resolved double-click issue on timeSlot in Booker Atom * fix: show toast on booking error * fix: type error * Prevent the automatic change of bookerState when all fields are filled. * fix: when a user clicks on a new timeslot, any previously displayed "Confirm" button should be hidden * Update useSkipConfirmStep.ts * fix: remove 2 states for slots * Update useSlotsForDate.ts * fix types * use common types * fix: show VerifyCodeDialog and RedirectToInstantMeetingModal when skiping confirm step * fix for instant bookings --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
588 lines
20 KiB
TypeScript
588 lines
20 KiB
TypeScript
import { useQueryClient } from "@tanstack/react-query";
|
|
import { useMemo, useEffect, useCallback, useState } from "react";
|
|
import { shallow } from "zustand/shallow";
|
|
|
|
import dayjs from "@calcom/dayjs";
|
|
import type { BookerProps } from "@calcom/features/bookings/Booker";
|
|
import { Booker as BookerComponent } from "@calcom/features/bookings/Booker";
|
|
import { useBookerLayout } from "@calcom/features/bookings/Booker/components/hooks/useBookerLayout";
|
|
import { useBookingForm } from "@calcom/features/bookings/Booker/components/hooks/useBookingForm";
|
|
import { useLocalSet } from "@calcom/features/bookings/Booker/components/hooks/useLocalSet";
|
|
import { useBookerStore, useInitializeBookerStore } from "@calcom/features/bookings/Booker/store";
|
|
import { useTimePreferences } from "@calcom/features/bookings/lib";
|
|
import { useTimesForSchedule } from "@calcom/features/schedules/lib/use-schedule/useTimesForSchedule";
|
|
import { getRoutedTeamMemberIdsFromSearchParams } from "@calcom/lib/bookings/getRoutedTeamMemberIdsFromSearchParams";
|
|
import { getUsernameList } from "@calcom/lib/defaultEvents";
|
|
import { localStorage } from "@calcom/lib/webstorage";
|
|
import type { ConnectedDestinationCalendars } from "@calcom/platform-libraries";
|
|
import type { BookingResponse } from "@calcom/platform-libraries";
|
|
import type {
|
|
ApiErrorResponse,
|
|
ApiSuccessResponse,
|
|
ApiSuccessResponseWithoutData,
|
|
} from "@calcom/platform-types";
|
|
import type { RoutingFormSearchParams } from "@calcom/platform-types";
|
|
import { BookerLayouts } from "@calcom/prisma/zod-utils";
|
|
|
|
import {
|
|
transformApiEventTypeForAtom,
|
|
transformApiTeamEventTypeForAtom,
|
|
} from "../event-types/atom-api-transformers/transformApiEventTypeForAtom";
|
|
import type { UseCreateBookingInput } from "../hooks/bookings/useCreateBooking";
|
|
import { useCreateBooking } from "../hooks/bookings/useCreateBooking";
|
|
import { useCreateInstantBooking } from "../hooks/bookings/useCreateInstantBooking";
|
|
import { useCreateRecurringBooking } from "../hooks/bookings/useCreateRecurringBooking";
|
|
import {
|
|
useGetBookingForReschedule,
|
|
QUERY_KEY as BOOKING_RESCHEDULE_KEY,
|
|
} from "../hooks/bookings/useGetBookingForReschedule";
|
|
import { useHandleBookEvent } from "../hooks/bookings/useHandleBookEvent";
|
|
import { useEventType } from "../hooks/event-types/public/useEventType";
|
|
import { useTeamEventType } from "../hooks/event-types/public/useTeamEventType";
|
|
import { useAtomsContext } from "../hooks/useAtomsContext";
|
|
import { useAvailableSlots } from "../hooks/useAvailableSlots";
|
|
import { useCalendarsBusyTimes } from "../hooks/useCalendarsBusyTimes";
|
|
import { useConnectedCalendars } from "../hooks/useConnectedCalendars";
|
|
import { useMe } from "../hooks/useMe";
|
|
import { useSlots } from "../hooks/useSlots";
|
|
import { AtomsWrapper } from "../src/components/atoms-wrapper";
|
|
|
|
export type BookerPlatformWrapperAtomProps = Omit<
|
|
BookerProps,
|
|
"username" | "entity" | "isTeamEvent" | "teamId"
|
|
> & {
|
|
rescheduleUid?: string;
|
|
rescheduledBy?: string;
|
|
bookingUid?: string;
|
|
entity?: BookerProps["entity"];
|
|
// values for the booking form and booking fields
|
|
defaultFormValues?: {
|
|
firstName?: string;
|
|
lastName?: string;
|
|
guests?: string[];
|
|
name?: string;
|
|
email?: string;
|
|
notes?: string;
|
|
rescheduleReason?: string;
|
|
} & Record<string, string | string[]>;
|
|
handleCreateBooking?: (input: UseCreateBookingInput) => void;
|
|
onCreateBookingSuccess?: (data: ApiSuccessResponse<BookingResponse>) => void;
|
|
onCreateBookingError?: (data: ApiErrorResponse | Error) => void;
|
|
onCreateRecurringBookingSuccess?: (data: ApiSuccessResponse<BookingResponse[]>) => void;
|
|
onCreateRecurringBookingError?: (data: ApiErrorResponse | Error) => void;
|
|
onCreateInstantBookingSuccess?: (data: ApiSuccessResponse<BookingResponse>) => void;
|
|
onCreateInstantBookingError?: (data: ApiErrorResponse | Error) => void;
|
|
onReserveSlotSuccess?: (data: ApiSuccessResponse<string>) => void;
|
|
onReserveSlotError?: (data: ApiErrorResponse) => void;
|
|
onDeleteSlotSuccess?: (data: ApiSuccessResponseWithoutData) => void;
|
|
onDeleteSlotError?: (data: ApiErrorResponse) => void;
|
|
locationUrl?: string;
|
|
view?: VIEW_TYPE;
|
|
metadata?: Record<string, string>;
|
|
bannerUrl?: string;
|
|
onDryRunSuccess?: () => void;
|
|
hostsLimit?: number;
|
|
};
|
|
|
|
type VIEW_TYPE = keyof typeof BookerLayouts;
|
|
|
|
export type BookerPlatformWrapperAtomPropsForIndividual = BookerPlatformWrapperAtomProps & {
|
|
username: string | string[];
|
|
isTeamEvent?: false;
|
|
routingFormSearchParams?: RoutingFormSearchParams;
|
|
};
|
|
|
|
export type BookerPlatformWrapperAtomPropsForTeam = BookerPlatformWrapperAtomProps & {
|
|
username?: string | string[];
|
|
isTeamEvent: true;
|
|
teamId: number;
|
|
routingFormSearchParams?: RoutingFormSearchParams;
|
|
};
|
|
|
|
export const BookerPlatformWrapper = (
|
|
props: BookerPlatformWrapperAtomPropsForIndividual | BookerPlatformWrapperAtomPropsForTeam
|
|
) => {
|
|
const {
|
|
view = "MONTH_VIEW",
|
|
bannerUrl,
|
|
routingFormSearchParams,
|
|
teamMemberEmail,
|
|
crmAppSlug,
|
|
crmOwnerRecordType,
|
|
} = props;
|
|
const layout = BookerLayouts[view];
|
|
|
|
const { clientId } = useAtomsContext();
|
|
const teamId: number | undefined = props.isTeamEvent ? props.teamId : undefined;
|
|
const [bookerState, setBookerState] = useBookerStore((state) => [state.state, state.setState], shallow);
|
|
const setSelectedDate = useBookerStore((state) => state.setSelectedDate);
|
|
const setSelectedDuration = useBookerStore((state) => state.setSelectedDuration);
|
|
const setBookingData = useBookerStore((state) => state.setBookingData);
|
|
const setOrg = useBookerStore((state) => state.setOrg);
|
|
const bookingData = useBookerStore((state) => state.bookingData);
|
|
const setSelectedTimeslot = useBookerStore((state) => state.setSelectedTimeslot);
|
|
const setSelectedMonth = useBookerStore((state) => state.setMonth);
|
|
|
|
const [isOverlayCalendarEnabled, setIsOverlayCalendarEnabled] = useState(
|
|
Boolean(localStorage?.getItem?.("overlayCalendarSwitchDefault"))
|
|
);
|
|
|
|
useGetBookingForReschedule({
|
|
uid: props.rescheduleUid ?? props.bookingUid ?? "",
|
|
onSuccess: (data) => {
|
|
setBookingData(data);
|
|
},
|
|
});
|
|
const queryClient = useQueryClient();
|
|
const username = useMemo(() => {
|
|
if (props.username) {
|
|
return formatUsername(props.username);
|
|
}
|
|
return "";
|
|
}, [props.username]);
|
|
|
|
useEffect(() => {
|
|
setSelectedDuration(props.duration ?? null);
|
|
}, [props.duration]);
|
|
|
|
useEffect(() => {
|
|
setOrg(props.entity?.orgSlug ?? null);
|
|
}, [props.entity?.orgSlug]);
|
|
|
|
const isDynamic = useMemo(() => {
|
|
return getUsernameList(username ?? "").length > 1;
|
|
}, [username]);
|
|
|
|
const { isSuccess, isError, isPending, data } = useEventType(username, props.eventSlug, props.isTeamEvent);
|
|
const {
|
|
isSuccess: isTeamSuccess,
|
|
isError: isTeamError,
|
|
isPending: isTeamPending,
|
|
data: teamEventTypeData,
|
|
} = useTeamEventType(teamId, props.eventSlug, props.isTeamEvent, props.hostsLimit);
|
|
|
|
const event = useMemo(() => {
|
|
if (props.isTeamEvent && !isTeamPending && teamId && teamEventTypeData && teamEventTypeData.length > 0) {
|
|
return {
|
|
isSuccess: isTeamSuccess,
|
|
isError: isTeamError,
|
|
isPending: isTeamPending,
|
|
data:
|
|
teamEventTypeData && teamEventTypeData.length > 0
|
|
? transformApiTeamEventTypeForAtom(
|
|
teamEventTypeData[0],
|
|
props.entity,
|
|
props.defaultFormValues,
|
|
!!props.hostsLimit
|
|
)
|
|
: undefined,
|
|
};
|
|
}
|
|
|
|
return {
|
|
isSuccess,
|
|
isError,
|
|
isPending,
|
|
data:
|
|
data && data.length > 0
|
|
? transformApiEventTypeForAtom(data[0], props.entity, props.defaultFormValues, !!props.hostsLimit)
|
|
: undefined,
|
|
};
|
|
}, [
|
|
props.isTeamEvent,
|
|
teamId,
|
|
props.entity,
|
|
teamEventTypeData,
|
|
isSuccess,
|
|
isError,
|
|
isPending,
|
|
data,
|
|
isTeamPending,
|
|
isTeamSuccess,
|
|
isTeamError,
|
|
props.hostsLimit,
|
|
]);
|
|
|
|
if (isDynamic && props.duration && event.data) {
|
|
// note(Lauris): Mandatory - In case of "dynamic" event type default event duration returned by the API is 30,
|
|
// but we are re-using the dynamic event type as a team event, so we must set the event length to whatever the event length is.
|
|
event.data.length = props.duration;
|
|
}
|
|
|
|
const bookerLayout = useBookerLayout(event.data);
|
|
useInitializeBookerStore({
|
|
...props,
|
|
teamMemberEmail,
|
|
crmAppSlug,
|
|
crmOwnerRecordType,
|
|
eventId: event.data?.id,
|
|
rescheduleUid: props.rescheduleUid ?? null,
|
|
bookingUid: props.bookingUid ?? null,
|
|
layout: layout,
|
|
org: props.entity?.orgSlug,
|
|
username,
|
|
bookingData,
|
|
});
|
|
const [dayCount] = useBookerStore((state) => [state.dayCount, state.setDayCount], shallow);
|
|
const selectedDate = useBookerStore((state) => state.selectedDate);
|
|
|
|
const month = useBookerStore((state) => state.month);
|
|
const eventSlug = useBookerStore((state) => state.eventSlug);
|
|
|
|
const selectedDuration = useBookerStore((state) => state.selectedDuration);
|
|
|
|
const { data: session } = useMe();
|
|
const hasSession = !!session;
|
|
const { name: defaultName, guests: defaultGuests, ...restFormValues } = props.defaultFormValues ?? {};
|
|
|
|
const prefillFormParamName = useMemo(() => {
|
|
if (defaultName) {
|
|
return defaultName;
|
|
}
|
|
if (restFormValues.firstName) {
|
|
return `${restFormValues.firstName} ${restFormValues.lastName}`;
|
|
}
|
|
return null;
|
|
}, [defaultName, restFormValues]);
|
|
|
|
const prefillFormParams = useMemo(() => {
|
|
return {
|
|
name: prefillFormParamName,
|
|
guests: defaultGuests ?? [],
|
|
};
|
|
}, [defaultName, defaultGuests]);
|
|
|
|
const extraOptions = useMemo(() => {
|
|
return restFormValues;
|
|
}, [restFormValues]);
|
|
const date = dayjs(selectedDate).format("YYYY-MM-DD");
|
|
|
|
const prefetchNextMonth =
|
|
(bookerLayout.layout === BookerLayouts.WEEK_VIEW &&
|
|
!!bookerLayout.extraDays &&
|
|
dayjs(date).month() !== dayjs(date).add(bookerLayout.extraDays, "day").month()) ||
|
|
(bookerLayout.layout === BookerLayouts.COLUMN_VIEW &&
|
|
dayjs(date).month() !== dayjs(date).add(bookerLayout.columnViewExtraDays.current, "day").month());
|
|
|
|
const monthCount =
|
|
((bookerLayout.layout !== BookerLayouts.WEEK_VIEW && bookerState === "selecting_time") ||
|
|
bookerLayout.layout === BookerLayouts.COLUMN_VIEW) &&
|
|
dayjs(date).add(1, "month").month() !==
|
|
dayjs(date).add(bookerLayout.columnViewExtraDays.current, "day").month()
|
|
? 2
|
|
: undefined;
|
|
const { timezone } = useTimePreferences();
|
|
|
|
const [startTime, endTime] = useTimesForSchedule({
|
|
month,
|
|
monthCount,
|
|
dayCount,
|
|
prefetchNextMonth,
|
|
selectedDate,
|
|
});
|
|
|
|
const [routingParams, setRoutingParams] = useState<{
|
|
routedTeamMemberIds?: number[];
|
|
shouldServeCache?: boolean;
|
|
skipContactOwner?: boolean;
|
|
isBookingDryRun?: boolean;
|
|
}>({});
|
|
|
|
useEffect(() => {
|
|
const searchParams = routingFormSearchParams
|
|
? new URLSearchParams(routingFormSearchParams)
|
|
: new URLSearchParams(window.location.search);
|
|
|
|
const routedTeamMemberIds = getRoutedTeamMemberIdsFromSearchParams(searchParams);
|
|
const skipContactOwner = searchParams.get("cal.skipContactOwner") === "true";
|
|
|
|
const _cacheParam = searchParams?.get("cal.cache");
|
|
const shouldServeCache = _cacheParam ? _cacheParam === "true" : undefined;
|
|
const isBookingDryRun = searchParams?.get("cal.isBookingDryRun")?.toLowerCase() === "true";
|
|
setRoutingParams({
|
|
...(skipContactOwner ? { skipContactOwner } : {}),
|
|
...(routedTeamMemberIds ? { routedTeamMemberIds } : {}),
|
|
...(shouldServeCache ? { shouldServeCache } : {}),
|
|
...(isBookingDryRun ? { isBookingDryRun } : {}),
|
|
});
|
|
}, [routingFormSearchParams]);
|
|
const schedule = useAvailableSlots({
|
|
usernameList: getUsernameList(username),
|
|
eventTypeId: event?.data?.id ?? 0,
|
|
startTime,
|
|
endTime,
|
|
timeZone: timezone,
|
|
duration: selectedDuration ?? undefined,
|
|
rescheduleUid: props.rescheduleUid,
|
|
teamMemberEmail: teamMemberEmail ?? undefined,
|
|
...(props.isTeamEvent
|
|
? {
|
|
isTeamEvent: props.isTeamEvent,
|
|
teamId: teamId,
|
|
}
|
|
: {}),
|
|
enabled:
|
|
Boolean(teamId || username) &&
|
|
Boolean(month) &&
|
|
Boolean(timezone) &&
|
|
(props.isTeamEvent ? !isTeamPending : !isPending) &&
|
|
Boolean(event?.data?.id),
|
|
orgSlug: props.entity?.orgSlug ?? undefined,
|
|
eventTypeSlug: isDynamic ? "dynamic" : eventSlug || "",
|
|
...routingParams,
|
|
});
|
|
|
|
const bookerForm = useBookingForm({
|
|
event: event.data,
|
|
sessionEmail:
|
|
session?.data?.email && clientId
|
|
? session.data.email.replace(`+${clientId}`, "")
|
|
: session?.data?.email,
|
|
sessionUsername: session?.data?.username,
|
|
sessionName: session?.data?.username,
|
|
hasSession,
|
|
extraOptions: extraOptions ?? {},
|
|
prefillFormParams: prefillFormParams,
|
|
});
|
|
const {
|
|
mutate: createBooking,
|
|
isPending: creatingBooking,
|
|
error: createBookingError,
|
|
isError: isCreateBookingError,
|
|
} = useCreateBooking({
|
|
onSuccess: (data) => {
|
|
if (data?.data?.isDryRun) {
|
|
props?.onDryRunSuccess?.();
|
|
}
|
|
schedule.refetch();
|
|
props.onCreateBookingSuccess?.(data);
|
|
|
|
if (!!event.data?.successRedirectUrl) {
|
|
window.location.href = event.data.successRedirectUrl;
|
|
}
|
|
},
|
|
onError: props.onCreateBookingError,
|
|
});
|
|
const {
|
|
mutate: createRecBooking,
|
|
isPending: creatingRecBooking,
|
|
|
|
error: createRecBookingError,
|
|
isError: isCreateRecBookingError,
|
|
} = useCreateRecurringBooking({
|
|
onSuccess: (data) => {
|
|
if (data?.data?.[0]?.isDryRun) {
|
|
props?.onDryRunSuccess?.();
|
|
}
|
|
schedule.refetch();
|
|
props.onCreateRecurringBookingSuccess?.(data);
|
|
|
|
if (!!event.data?.successRedirectUrl) {
|
|
window.location.href = event.data.successRedirectUrl;
|
|
}
|
|
},
|
|
onError: props.onCreateRecurringBookingError,
|
|
});
|
|
const {
|
|
mutate: createInstantBooking,
|
|
isPending: creatingInstantBooking,
|
|
error: createInstantBookingError,
|
|
isError: isCreateInstantBookingError,
|
|
} = useCreateInstantBooking({
|
|
onSuccess: (data) => {
|
|
schedule.refetch();
|
|
props.onCreateInstantBookingSuccess?.(data);
|
|
},
|
|
onError: props.onCreateInstantBookingError,
|
|
});
|
|
|
|
const slots = useSlots(event, {
|
|
onReserveSlotSuccess: props.onReserveSlotSuccess,
|
|
onReserveSlotError: props.onReserveSlotError,
|
|
onDeleteSlotSuccess: props.onDeleteSlotSuccess,
|
|
onDeleteSlotError: props.onDeleteSlotError,
|
|
});
|
|
|
|
const { data: connectedCalendars, isPending: fetchingConnectedCalendars } = useConnectedCalendars({
|
|
enabled: hasSession,
|
|
});
|
|
const calendars = connectedCalendars as ConnectedDestinationCalendars;
|
|
|
|
const { set, clearSet } = useLocalSet<{
|
|
credentialId: number;
|
|
externalId: string;
|
|
}>("toggledConnectedCalendars", []);
|
|
const [latestCalendarsToLoad, setLatestCalendarsToLoad] = useState(
|
|
Array.from(set).map((item) => ({
|
|
credentialId: item.credentialId,
|
|
externalId: item.externalId,
|
|
}))
|
|
);
|
|
const { data: overlayBusyDates } = useCalendarsBusyTimes({
|
|
loggedInUsersTz: timezone,
|
|
dateFrom: selectedDate,
|
|
dateTo: selectedDate,
|
|
calendarsToLoad: latestCalendarsToLoad,
|
|
onError: () => {
|
|
clearSet();
|
|
},
|
|
enabled: Boolean(hasSession && isOverlayCalendarEnabled && latestCalendarsToLoad?.length > 0),
|
|
});
|
|
|
|
const handleBookEvent = useHandleBookEvent({
|
|
event,
|
|
bookingForm: bookerForm.bookingForm,
|
|
hashedLink: props.hashedLink,
|
|
metadata: props.metadata ?? {},
|
|
handleBooking: props?.handleCreateBooking ?? createBooking,
|
|
handleInstantBooking: createInstantBooking,
|
|
handleRecBooking: createRecBooking,
|
|
locationUrl: props.locationUrl,
|
|
routingFormSearchParams,
|
|
});
|
|
|
|
const onOverlaySwitchStateChange = useCallback(
|
|
(state: boolean) => {
|
|
setIsOverlayCalendarEnabled(state);
|
|
if (state) {
|
|
localStorage?.setItem("overlayCalendarSwitchDefault", "true");
|
|
} else {
|
|
localStorage?.removeItem("overlayCalendarSwitchDefault");
|
|
}
|
|
},
|
|
[setIsOverlayCalendarEnabled]
|
|
);
|
|
|
|
useEffect(() => {
|
|
// reset booker whenever it's unmounted
|
|
return () => {
|
|
slots.handleRemoveSlot();
|
|
setBookerState("loading");
|
|
setSelectedDate(null);
|
|
setSelectedTimeslot(null);
|
|
setSelectedDuration(null);
|
|
setOrg(null);
|
|
setSelectedMonth(null);
|
|
setSelectedDuration(null);
|
|
if (props.rescheduleUid) {
|
|
// clean booking data from cache
|
|
queryClient.removeQueries({
|
|
queryKey: [BOOKING_RESCHEDULE_KEY, props.rescheduleUid],
|
|
exact: true,
|
|
});
|
|
setBookingData(null);
|
|
}
|
|
};
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (isOverlayCalendarEnabled && view === "MONTH_VIEW") {
|
|
localStorage?.removeItem("overlayCalendarSwitchDefault");
|
|
}
|
|
setIsOverlayCalendarEnabled(Boolean(localStorage?.getItem?.("overlayCalendarSwitchDefault")));
|
|
}, [view, isOverlayCalendarEnabled]);
|
|
|
|
return (
|
|
<AtomsWrapper customClassName={props?.customClassNames?.atomsWrapper}>
|
|
<BookerComponent
|
|
teamMemberEmail={teamMemberEmail}
|
|
crmAppSlug={crmAppSlug}
|
|
crmOwnerRecordType={crmOwnerRecordType}
|
|
customClassNames={props.customClassNames}
|
|
eventSlug={props.eventSlug}
|
|
username={username}
|
|
entity={
|
|
event?.data?.entity ?? {
|
|
considerUnpublished: false,
|
|
orgSlug: undefined,
|
|
teamSlug: undefined,
|
|
name: undefined,
|
|
}
|
|
}
|
|
rescheduleUid={props.rescheduleUid ?? null}
|
|
rescheduledBy={null}
|
|
bookingUid={props.bookingUid ?? null}
|
|
isRedirect={false}
|
|
fromUserNameRedirected=""
|
|
hasSession={hasSession}
|
|
onGoBackInstantMeeting={function (): void {
|
|
throw new Error("Function not implemented.");
|
|
}}
|
|
onConnectNowInstantMeeting={function (): void {
|
|
throw new Error("Function not implemented.");
|
|
}}
|
|
onOverlayClickNoCalendar={function (): void {
|
|
throw new Error("Function not implemented.");
|
|
}}
|
|
onClickOverlayContinue={function (): void {
|
|
throw new Error("Function not implemented.");
|
|
}}
|
|
onOverlaySwitchStateChange={onOverlaySwitchStateChange}
|
|
extraOptions={extraOptions ?? {}}
|
|
bookings={{
|
|
handleBookEvent: (timeSlot?: string) => {
|
|
handleBookEvent(timeSlot);
|
|
return;
|
|
},
|
|
expiryTime: undefined,
|
|
bookingForm: bookerForm.bookingForm,
|
|
bookerFormErrorRef: bookerForm.bookerFormErrorRef,
|
|
errors: {
|
|
hasDataErrors: isCreateBookingError || isCreateRecBookingError || isCreateInstantBookingError,
|
|
dataErrors: createBookingError || createRecBookingError || createInstantBookingError,
|
|
},
|
|
loadingStates: {
|
|
creatingBooking: creatingBooking,
|
|
creatingRecurringBooking: creatingRecBooking,
|
|
creatingInstantBooking: creatingInstantBooking,
|
|
},
|
|
instantVideoMeetingUrl: undefined,
|
|
}}
|
|
slots={slots}
|
|
calendars={{
|
|
overlayBusyDates: overlayBusyDates?.data,
|
|
isOverlayCalendarEnabled: isOverlayCalendarEnabled,
|
|
connectedCalendars: calendars?.connectedCalendars || [],
|
|
loadingConnectedCalendar: fetchingConnectedCalendars,
|
|
onToggleCalendar: (data) => {
|
|
const calendarsToLoad = Array.from(data ?? []);
|
|
setLatestCalendarsToLoad(calendarsToLoad);
|
|
return;
|
|
},
|
|
}}
|
|
verifyEmail={{
|
|
isEmailVerificationModalVisible: false,
|
|
setEmailVerificationModalVisible: () => {
|
|
return;
|
|
},
|
|
setVerifiedEmail: () => {
|
|
return;
|
|
},
|
|
handleVerifyEmail: () => {
|
|
return;
|
|
},
|
|
renderConfirmNotVerifyEmailButtonCond: true,
|
|
isVerificationCodeSending: false,
|
|
}}
|
|
bookerForm={bookerForm}
|
|
event={event}
|
|
schedule={schedule}
|
|
orgBannerUrl={bannerUrl ?? event.data?.bannerUrl}
|
|
bookerLayout={bookerLayout}
|
|
verifyCode={undefined}
|
|
isPlatform
|
|
hasValidLicense={true}
|
|
isBookingDryRun={routingParams?.isBookingDryRun}
|
|
/>
|
|
</AtomsWrapper>
|
|
);
|
|
};
|
|
|
|
function formatUsername(username: string | string[]): string {
|
|
if (typeof username === "string") {
|
|
return username;
|
|
}
|
|
return username.join("+");
|
|
}
|