* feat: setup usePublicEvent with orgSlug and duration * feat: setup useAvailableSlots with eventTypeSlug and orgSlug * fix & feat: fix TS issues and allow passing multiple users to Booker * refactor: dont show [15min] [30min] [60min] [1h30min] picker * fix: pass orgSlug to handleNewBooking -> loadUsers -> findUsersByUsername to not return empty users[] * refactor: display attendees in booking confirmation screen * fix: getting slots get orgSlug from props not event * revert: Booker username use props instead of hardcoded values * refactor: setup BookerStore org and use it for selectedTime + isDynamic logic * refactor: hide 'what is this meeting about' input in final booking step * fix: TS error * revert: what is the meeting about field hiding * revert: make org as org? in booker store * revert: createNewBooking -> loadUsers -> get forced orgSlug from header not body * refactor: useHandleBookEvent get orgSlug from booker store not props * fix: if entity undefined dont access orgSlug * refactor: add isDynamic prop as queryKey for usePublicEvent * refactor: remove unused prop * re-add docs * fix: typescript error * fix: force platform orgSlug in handleNewBooking.ts * fix: remove duplicate setSelectedDuration declaration * refactor: destructure properies from body instead of req.body * fix: entity optional and hide event members --------- Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: Morgan Vernay <morgan@cal.com>
100 lines
3.8 KiB
TypeScript
100 lines
3.8 KiB
TypeScript
import type { UseBookingFormReturnType } from "@calcom/features/bookings/Booker/components/hooks/useBookingForm";
|
|
import { useBookerStore } from "@calcom/features/bookings/Booker/store";
|
|
import type { useEventReturnType } from "@calcom/features/bookings/Booker/utils/event";
|
|
import {
|
|
useTimePreferences,
|
|
mapBookingToMutationInput,
|
|
mapRecurringBookingToMutationInput,
|
|
} from "@calcom/features/bookings/lib";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import type { BookingCreateBody } from "@calcom/prisma/zod-utils";
|
|
|
|
import type { UseCreateBookingInput } from "./useCreateBooking";
|
|
|
|
type UseHandleBookingProps = {
|
|
bookingForm: UseBookingFormReturnType["bookingForm"];
|
|
event: useEventReturnType;
|
|
metadata: Record<string, string>;
|
|
hashedLink?: string | null;
|
|
handleBooking: (input: UseCreateBookingInput) => void;
|
|
handleInstantBooking: (input: BookingCreateBody) => void;
|
|
handleRecBooking: (input: BookingCreateBody[]) => void;
|
|
locationUrl?: string;
|
|
};
|
|
|
|
export const useHandleBookEvent = ({
|
|
bookingForm,
|
|
event,
|
|
metadata,
|
|
hashedLink,
|
|
handleBooking,
|
|
handleInstantBooking,
|
|
handleRecBooking,
|
|
locationUrl,
|
|
}: UseHandleBookingProps) => {
|
|
const setFormValues = useBookerStore((state) => state.setFormValues);
|
|
const timeslot = useBookerStore((state) => state.selectedTimeslot);
|
|
const duration = useBookerStore((state) => state.selectedDuration);
|
|
const { timezone } = useTimePreferences();
|
|
const rescheduleUid = useBookerStore((state) => state.rescheduleUid);
|
|
const { t, i18n } = useLocale();
|
|
const username = useBookerStore((state) => state.username);
|
|
const recurringEventCount = useBookerStore((state) => state.recurringEventCount);
|
|
const bookingData = useBookerStore((state) => state.bookingData);
|
|
const seatedEventData = useBookerStore((state) => state.seatedEventData);
|
|
const isInstantMeeting = useBookerStore((state) => state.isInstantMeeting);
|
|
const orgSlug = useBookerStore((state) => state.org);
|
|
|
|
const handleBookEvent = () => {
|
|
const values = bookingForm.getValues();
|
|
if (timeslot) {
|
|
// Clears form values stored in store, so old values won't stick around.
|
|
setFormValues({});
|
|
bookingForm.clearErrors();
|
|
|
|
// It shouldn't be possible that this method is fired without having event data,
|
|
// but since in theory (looking at the types) it is possible, we still handle that case.
|
|
if (!event?.data) {
|
|
bookingForm.setError("globalError", { message: t("error_booking_event") });
|
|
return;
|
|
}
|
|
|
|
// Ensures that duration is an allowed value, if not it defaults to the
|
|
// default event duration.
|
|
const validDuration = event.data.isDynamic
|
|
? duration || event.data.length
|
|
: duration && event.data.metadata?.multipleDuration?.includes(duration)
|
|
? duration
|
|
: event.data.length;
|
|
|
|
const bookingInput = {
|
|
values,
|
|
duration: validDuration,
|
|
event: event.data,
|
|
date: timeslot,
|
|
timeZone: timezone,
|
|
language: i18n.language,
|
|
rescheduleUid: rescheduleUid || undefined,
|
|
bookingUid: (bookingData && bookingData.uid) || seatedEventData?.bookingUid || undefined,
|
|
username: username || "",
|
|
metadata: metadata,
|
|
hashedLink,
|
|
orgSlug: orgSlug ? orgSlug : undefined,
|
|
};
|
|
|
|
if (isInstantMeeting) {
|
|
handleInstantBooking(mapBookingToMutationInput(bookingInput));
|
|
} else if (event.data?.recurringEvent?.freq && recurringEventCount && !rescheduleUid) {
|
|
handleRecBooking(mapRecurringBookingToMutationInput(bookingInput, recurringEventCount));
|
|
} else {
|
|
handleBooking({ ...mapBookingToMutationInput(bookingInput), locationUrl });
|
|
}
|
|
// Clears form values stored in store, so old values won't stick around.
|
|
setFormValues({});
|
|
bookingForm.clearErrors();
|
|
}
|
|
};
|
|
|
|
return handleBookEvent;
|
|
};
|