* add user pages to config.matcher in middleware * add app router user booking pages * remove HeadSeo from users-public-view component * remove pages router user booking pages * fix type check * fix embed * fix test * chore: remove BookerSEO from users-type-public-view * fix * migrate all /user embed pages to app router * remove /future routes * fix prefill not working with preload * move to (booking-page-wrapper) route group --------- Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
193 lines
6.0 KiB
TypeScript
193 lines
6.0 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { z } from "zod";
|
|
|
|
import { useBookerStore } from "@calcom/features/bookings/Booker/store";
|
|
import type getBookingResponsesSchema from "@calcom/features/bookings/lib/getBookingResponsesSchema";
|
|
import { getBookingResponsesPartialSchema } from "@calcom/features/bookings/lib/getBookingResponsesSchema";
|
|
import type { BookerEvent } from "@calcom/features/bookings/types";
|
|
|
|
export type useInitialFormValuesReturnType = ReturnType<typeof useInitialFormValues>;
|
|
|
|
type UseInitialFormValuesProps = {
|
|
eventType?: Pick<BookerEvent, "bookingFields"> | null;
|
|
rescheduleUid: string | null;
|
|
isRescheduling: boolean;
|
|
email?: string | null;
|
|
name?: string | null;
|
|
username?: string | null;
|
|
hasSession: boolean;
|
|
extraOptions: Record<string, string | string[]>;
|
|
prefillFormParams: {
|
|
guests: string[];
|
|
name: string | null;
|
|
};
|
|
lastBookingResponse?: Record<string, string>;
|
|
};
|
|
|
|
// Add this stable hash function
|
|
function getStableHash(obj: Record<string, string | string[]>) {
|
|
return Object.entries(obj)
|
|
.sort(([keyA], [keyB]) => keyA.localeCompare(keyB))
|
|
.map(([key, value]) => {
|
|
if (Array.isArray(value)) {
|
|
return `${key}:${value.sort().join(",")}`;
|
|
}
|
|
return `${key}:${value}`;
|
|
})
|
|
.join("|");
|
|
}
|
|
|
|
const buildKey = ({
|
|
values,
|
|
hasSession,
|
|
stableHashExtraOptions,
|
|
}: {
|
|
values: Record<string, any>;
|
|
hasSession: boolean;
|
|
stableHashExtraOptions: string;
|
|
}) => {
|
|
// We could think about removing specific items like values.length, hasSession and bookingId and instead use a stableHash maybe .
|
|
return `${Object.keys(values).length}_${hasSession ? 1 : 0}_${
|
|
values.bookingId ?? 0
|
|
}_${stableHashExtraOptions}`;
|
|
};
|
|
|
|
export function useInitialFormValues({
|
|
eventType,
|
|
rescheduleUid,
|
|
isRescheduling,
|
|
email,
|
|
name,
|
|
username,
|
|
hasSession,
|
|
extraOptions,
|
|
prefillFormParams,
|
|
lastBookingResponse,
|
|
}: UseInitialFormValuesProps) {
|
|
const stableHashExtraOptions = getStableHash(extraOptions);
|
|
|
|
const [initialValuesState, setInitialValuesState] = useState<{
|
|
values: {
|
|
responses?: Partial<z.infer<ReturnType<typeof getBookingResponsesSchema>>>;
|
|
bookingId?: number;
|
|
};
|
|
key: string;
|
|
}>({
|
|
values: {},
|
|
key: "",
|
|
});
|
|
const bookingData = useBookerStore((state) => state.bookingData);
|
|
const formValues = useBookerStore((state) => state.formValues);
|
|
useEffect(() => {
|
|
(async function () {
|
|
if (Object.keys(formValues).length) {
|
|
setInitialValuesState({
|
|
values: formValues,
|
|
key: buildKey({ values: formValues, hasSession, stableHashExtraOptions }),
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (!eventType?.bookingFields) {
|
|
return {};
|
|
}
|
|
const querySchema = getBookingResponsesPartialSchema({
|
|
bookingFields: eventType.bookingFields,
|
|
view: rescheduleUid ? "reschedule" : "booking",
|
|
});
|
|
|
|
const parsedQuery = await querySchema.parseAsync({
|
|
...extraOptions,
|
|
name: prefillFormParams.name,
|
|
// `guest` because we need to support legacy URL with `guest` query param support
|
|
// `guests` because the `name` of the corresponding bookingField is `guests`
|
|
guests: prefillFormParams.guests,
|
|
});
|
|
const parsedLastBookingResponse = z.record(z.any()).nullish().parse(lastBookingResponse);
|
|
|
|
const defaultUserValues = {
|
|
email:
|
|
rescheduleUid && bookingData && bookingData.attendees.length > 0
|
|
? bookingData?.attendees[0].email
|
|
: !!parsedQuery["email"]
|
|
? parsedQuery["email"]
|
|
: email ?? parsedLastBookingResponse?.email ?? "",
|
|
name:
|
|
rescheduleUid && bookingData && bookingData.attendees.length > 0
|
|
? bookingData?.attendees[0].name
|
|
: !!parsedQuery["name"]
|
|
? parsedQuery["name"]
|
|
: name ?? username ?? parsedLastBookingResponse?.name ?? "",
|
|
};
|
|
|
|
if (!isRescheduling) {
|
|
const defaults = {
|
|
responses: {} as Partial<z.infer<ReturnType<typeof getBookingResponsesSchema>>>,
|
|
};
|
|
|
|
const responses = eventType.bookingFields.reduce((responses, field) => {
|
|
return {
|
|
...responses,
|
|
[field.name]: parsedQuery[field.name] || undefined,
|
|
};
|
|
}, {});
|
|
|
|
defaults.responses = {
|
|
...responses,
|
|
name: defaultUserValues.name,
|
|
email: defaultUserValues.email ?? "",
|
|
};
|
|
|
|
setInitialValuesState({
|
|
values: defaults,
|
|
key: buildKey({ values: defaults, hasSession, stableHashExtraOptions }),
|
|
});
|
|
}
|
|
|
|
if (!rescheduleUid && !bookingData) {
|
|
return {};
|
|
}
|
|
|
|
// We should allow current session user as default values for booking form
|
|
|
|
const defaults = {
|
|
responses: {} as Partial<z.infer<ReturnType<typeof getBookingResponsesSchema>>>,
|
|
bookingId: bookingData?.id,
|
|
};
|
|
|
|
const responses = eventType.bookingFields.reduce((responses, field) => {
|
|
return {
|
|
...responses,
|
|
[field.name]: bookingData?.responses[field.name],
|
|
};
|
|
}, {});
|
|
defaults.responses = {
|
|
...responses,
|
|
name: defaultUserValues.name,
|
|
email: defaultUserValues.email ?? "",
|
|
};
|
|
setInitialValuesState({
|
|
values: defaults,
|
|
key: buildKey({ values: defaults, hasSession, stableHashExtraOptions }),
|
|
});
|
|
})();
|
|
// TODO: Remove it. It was initially added so that we don't add extraOptions in deps but that is handled using stableHashExtraOptions now.
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [
|
|
eventType?.bookingFields,
|
|
formValues,
|
|
isRescheduling,
|
|
bookingData,
|
|
bookingData?.id,
|
|
rescheduleUid,
|
|
email,
|
|
name,
|
|
username,
|
|
prefillFormParams,
|
|
// We need to have extraOptions as a dep so that any change in query params can update the form values, but extraOptions itself isn't stable and changes reference on every render
|
|
stableHashExtraOptions,
|
|
]);
|
|
|
|
return initialValuesState;
|
|
}
|