import type { Payment } from "@prisma/client"; import type { EventType } from "@prisma/client"; import { Elements, PaymentElement, useElements, useStripe } from "@stripe/react-stripe-js"; import type stripejs from "@stripe/stripe-js"; import type { StripeElementLocale } from "@stripe/stripe-js"; import { useRouter, useSearchParams } from "next/navigation"; import type { SyntheticEvent } from "react"; import { useEffect, useState } from "react"; import getStripe from "@calcom/app-store/stripepayment/lib/client"; import { getBookingRedirectExtraParams, useBookingSuccessRedirect } from "@calcom/lib/bookingSuccessRedirect"; import { CAL_URL } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Button, CheckboxField } from "@calcom/ui"; import type { PaymentPageProps } from "../pages/payment"; type Props = { payment: Omit & { data: Record; }; eventType: { id: number; successRedirectUrl: EventType["successRedirectUrl"]; }; user: { username: string | null; }; location?: string | null; clientSecret: string; booking: PaymentPageProps["booking"]; }; type States = | { status: "idle"; } | { status: "processing"; } | { status: "error"; error: Error; } | { status: "ok"; }; const getReturnUrl = (props: Props) => { if (!props.eventType.successRedirectUrl) { return `${CAL_URL}/booking/${props.booking.uid}`; } const returnUrl = new URL(props.eventType.successRedirectUrl); const queryParams = getBookingRedirectExtraParams(props.booking); Object.entries(queryParams).forEach(([key, value]) => { if (value === null || value === undefined) { return; } returnUrl.searchParams.append(key, String(value)); }); return returnUrl.toString(); }; const PaymentForm = (props: Props) => { const { t, i18n } = useLocale(); const router = useRouter(); const searchParams = useSearchParams(); const [state, setState] = useState({ status: "idle" }); const stripe = useStripe(); const elements = useElements(); const paymentOption = props.payment.paymentOption; const [holdAcknowledged, setHoldAcknowledged] = useState(paymentOption === "HOLD" ? false : true); const bookingSuccessRedirect = useBookingSuccessRedirect(); useEffect(() => { elements?.update({ locale: i18n.language as StripeElementLocale }); }, [elements, i18n.language]); const handleSubmit = async (ev: SyntheticEvent) => { ev.preventDefault(); if (!stripe || !elements) return; setState({ status: "processing" }); let payload; const params: { [k: string]: any; } = { uid: props.booking.uid, email: searchParams.get("email"), }; if (paymentOption === "HOLD" && "setupIntent" in props.payment.data) { payload = await stripe.confirmSetup({ elements, confirmParams: { return_url: getReturnUrl(props), }, }); } else if (paymentOption === "ON_BOOKING") { payload = await stripe.confirmPayment({ elements, confirmParams: { return_url: getReturnUrl(props), }, }); } if (payload?.error) { setState({ status: "error", error: new Error(`Payment failed: ${payload.error.message}`), }); } else { if (props.location) { if (props.location.includes("integration")) { params.location = t("web_conferencing_details_to_follow"); } else { params.location = props.location; } } return bookingSuccessRedirect({ successRedirectUrl: props.eventType.successRedirectUrl, query: params, booking: props.booking, }); } }; return (
setState({ status: "idle" })} />
{paymentOption === "HOLD" && (
setHoldAcknowledged(e.target.checked)} descriptionClassName="text-blue-900 font-semibold" />
)}
{state.status === "error" && (
{state.error.message}
)}
); }; const ELEMENT_STYLES: stripejs.Appearance = { theme: "none", }; const ELEMENT_STYLES_DARK: stripejs.Appearance = { theme: "night", variables: { colorText: "#d6d6d6", fontWeightNormal: "600", borderRadius: "6px", colorBackground: "#101010", colorPrimary: "#d6d6d6", }, }; export default function PaymentComponent(props: Props) { const stripePromise = getStripe(props.payment.data.stripe_publishable_key as any); const [darkMode, setDarkMode] = useState(false); useEffect(() => { setDarkMode(window.matchMedia("(prefers-color-scheme: dark)").matches); }, []); return ( ); }