- Served the guest PWA at /g/{token} and introduced a mobile-friendly gallery page with lazy-loaded thumbnails, themed colors, lightbox, and download links plus new gallery data client (resources/js/guest/pages/PublicGalleryPage.tsx:1, resources/js/guest/services/galleryApi.ts:1, resources/js/guest/router.tsx:1). Added i18n strings for the public gallery experience (resources/js/guest/i18n/messages.ts:1).
- Ensured checkout step changes snap back to the progress bar on mobile via smooth scroll anchoring (resources/ js/pages/marketing/checkout/CheckoutWizard.tsx:1).
- Enabled tenant admins to export all approved event photos through a new download action that streams a ZIP archive, with translations and routing in place (app/Http/Controllers/Tenant/EventPhotoArchiveController.php:1, app/Filament/Resources/EventResource.php:1, routes/web.php:1, resources/lang/de/admin.php:1, resources/lang/en/admin.php:1).
148 lines
4.7 KiB
TypeScript
148 lines
4.7 KiB
TypeScript
import React, { useMemo, useRef, useEffect } 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 { PaymentStep } from "./steps/PaymentStep";
|
|
import { ConfirmationStep } from "./steps/ConfirmationStep";
|
|
|
|
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 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 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(() => {
|
|
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]);
|
|
|
|
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" && (
|
|
<PaymentStep stripePublishableKey={stripePublishableKey} paypalClientId={paypalClientId} />
|
|
)}
|
|
{currentStep === "confirmation" && <ConfirmationStep />}
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between">
|
|
<Button variant="ghost" onClick={previousStep} disabled={currentIndex <= 0}>
|
|
{t('checkout.back')}
|
|
</Button>
|
|
<Button onClick={nextStep} 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>
|
|
);
|
|
};
|