199 lines
6.3 KiB
TypeScript
199 lines
6.3 KiB
TypeScript
import React, { useMemo, useRef, useEffect, useCallback, Suspense, lazy } from "react";
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Steps } from "@/components/ui/Steps";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Progress } from "@/components/ui/progress";
|
|
import { CheckoutWizardProvider, useCheckoutWizard } from "./WizardContext";
|
|
import type { CheckoutPackage, CheckoutStepId } from "./types";
|
|
import { PackageStep } from "./steps/PackageStep";
|
|
import { AuthStep } from "./steps/AuthStep";
|
|
import { ConfirmationStep } from "./steps/ConfirmationStep";
|
|
import { useAnalytics } from '@/hooks/useAnalytics';
|
|
|
|
const PaymentStep = lazy(() => import('./steps/PaymentStep').then((module) => ({ default: module.PaymentStep })));
|
|
|
|
interface CheckoutWizardProps {
|
|
initialPackage: CheckoutPackage;
|
|
packageOptions: CheckoutPackage[];
|
|
stripePublishableKey: string;
|
|
paypalClientId: string;
|
|
privacyHtml: string;
|
|
initialAuthUser?: {
|
|
id: number;
|
|
email: string;
|
|
name?: string;
|
|
pending_purchase?: boolean;
|
|
} | null;
|
|
initialStep?: CheckoutStepId;
|
|
}
|
|
|
|
const baseStepConfig: { id: CheckoutStepId; titleKey: string; descriptionKey: string; detailsKey: string }[] = [
|
|
{
|
|
id: "package",
|
|
titleKey: 'checkout.package_step.title',
|
|
descriptionKey: 'checkout.package_step.subtitle',
|
|
detailsKey: 'checkout.package_step.description'
|
|
},
|
|
{
|
|
id: "auth",
|
|
titleKey: 'checkout.auth_step.title',
|
|
descriptionKey: 'checkout.auth_step.subtitle',
|
|
detailsKey: 'checkout.auth_step.description'
|
|
},
|
|
{
|
|
id: "payment",
|
|
titleKey: 'checkout.payment_step.title',
|
|
descriptionKey: 'checkout.payment_step.subtitle',
|
|
detailsKey: 'checkout.payment_step.description'
|
|
},
|
|
{
|
|
id: "confirmation",
|
|
titleKey: 'checkout.confirmation_step.title',
|
|
descriptionKey: 'checkout.confirmation_step.subtitle',
|
|
detailsKey: 'checkout.confirmation_step.description'
|
|
},
|
|
];
|
|
|
|
const PaymentStepFallback: React.FC = () => (
|
|
<div className="rounded-lg border bg-card p-6 shadow-sm">
|
|
<div className="mb-4 h-4 w-52 animate-pulse rounded bg-muted" />
|
|
<div className="h-10 w-full animate-pulse rounded bg-muted" />
|
|
</div>
|
|
);
|
|
|
|
const WizardBody: React.FC<{ stripePublishableKey: string; paypalClientId: string; privacyHtml: string }> = ({ stripePublishableKey, paypalClientId, privacyHtml }) => {
|
|
const { t } = useTranslation('marketing');
|
|
const { currentStep, nextStep, previousStep } = useCheckoutWizard();
|
|
const progressRef = useRef<HTMLDivElement | null>(null);
|
|
const hasMountedRef = useRef(false);
|
|
const { trackEvent } = useAnalytics();
|
|
|
|
const stepConfig = useMemo(() =>
|
|
baseStepConfig.map(step => ({
|
|
id: step.id,
|
|
title: t(step.titleKey),
|
|
description: t(step.descriptionKey),
|
|
details: t(step.detailsKey),
|
|
})),
|
|
[t]
|
|
);
|
|
|
|
const currentIndex = useMemo(() => stepConfig.findIndex((step) => step.id === currentStep), [currentStep]);
|
|
const progress = useMemo(() => {
|
|
if (currentIndex < 0) {
|
|
return 0;
|
|
}
|
|
return (currentIndex / (stepConfig.length - 1)) * 100;
|
|
}, [currentIndex, stepConfig]);
|
|
|
|
useEffect(() => {
|
|
trackEvent({
|
|
category: 'marketing_checkout',
|
|
action: 'step_view',
|
|
name: currentStep,
|
|
});
|
|
}, [currentStep, trackEvent]);
|
|
|
|
useEffect(() => {
|
|
if (typeof window === 'undefined' || !progressRef.current) {
|
|
return;
|
|
}
|
|
|
|
if (!hasMountedRef.current) {
|
|
hasMountedRef.current = true;
|
|
return;
|
|
}
|
|
|
|
const element = progressRef.current;
|
|
const rect = element.getBoundingClientRect();
|
|
const scrollTop = window.scrollY + rect.top - 16; // slightly above the progress bar
|
|
|
|
window.scrollTo({
|
|
top: Math.max(scrollTop, 0),
|
|
behavior: 'smooth',
|
|
});
|
|
}, [currentStep]);
|
|
|
|
const handleNext = useCallback(() => {
|
|
const targetStep = stepConfig[currentIndex + 1]?.id ?? 'end';
|
|
trackEvent({
|
|
category: 'marketing_checkout',
|
|
action: 'step_next',
|
|
name: `${currentStep}->${targetStep}`,
|
|
});
|
|
nextStep();
|
|
}, [currentIndex, currentStep, nextStep, stepConfig, trackEvent]);
|
|
|
|
const handlePrevious = useCallback(() => {
|
|
const targetStep = stepConfig[currentIndex - 1]?.id ?? 'start';
|
|
trackEvent({
|
|
category: 'marketing_checkout',
|
|
action: 'step_previous',
|
|
name: `${currentStep}->${targetStep}`,
|
|
});
|
|
previousStep();
|
|
}, [currentIndex, currentStep, previousStep, stepConfig, trackEvent]);
|
|
|
|
const handleViewProfile = useCallback(() => {
|
|
window.location.href = '/settings/profile';
|
|
}, []);
|
|
|
|
const handleGoToAdmin = useCallback(() => {
|
|
window.location.href = '/event-admin';
|
|
}, []);
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
<div ref={progressRef} className="space-y-4">
|
|
<Progress value={progress} />
|
|
<Steps steps={stepConfig} currentStep={currentIndex >= 0 ? currentIndex : 0} />
|
|
</div>
|
|
|
|
<div className="space-y-6">
|
|
{currentStep === "package" && <PackageStep />}
|
|
{currentStep === "auth" && <AuthStep privacyHtml={privacyHtml} />}
|
|
{currentStep === "payment" && (
|
|
<Suspense fallback={<PaymentStepFallback />}>
|
|
<PaymentStep stripePublishableKey={stripePublishableKey} paypalClientId={paypalClientId} />
|
|
</Suspense>
|
|
)}
|
|
{currentStep === "confirmation" && (
|
|
<ConfirmationStep onViewProfile={handleViewProfile} onGoToAdmin={handleGoToAdmin} />
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between">
|
|
<Button variant="ghost" onClick={handlePrevious} disabled={currentIndex <= 0}>
|
|
{t('checkout.back')}
|
|
</Button>
|
|
<Button onClick={handleNext} disabled={currentIndex >= stepConfig.length - 1}>
|
|
{t('checkout.next')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const CheckoutWizard: React.FC<CheckoutWizardProps> = ({
|
|
initialPackage,
|
|
packageOptions,
|
|
stripePublishableKey,
|
|
paypalClientId,
|
|
privacyHtml,
|
|
initialAuthUser,
|
|
initialStep,
|
|
}) => {
|
|
|
|
return (
|
|
<CheckoutWizardProvider
|
|
initialPackage={initialPackage}
|
|
packageOptions={packageOptions}
|
|
initialStep={initialStep}
|
|
initialAuthUser={initialAuthUser ?? undefined}
|
|
initialIsAuthenticated={Boolean(initialAuthUser)}
|
|
>
|
|
<WizardBody stripePublishableKey={stripePublishableKey} paypalClientId={paypalClientId} privacyHtml={privacyHtml} />
|
|
</CheckoutWizardProvider>
|
|
);
|
|
};
|