Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | 3x 4x 4x 4x 2x 2x 1x 1x 1x 4x 8x | 'use client'
import Image from 'next/image'
import { useRouter } from 'next/navigation'
import { useState } from 'react'
import { PaymentPlans } from '../../../../../../content/paymentPlans'
import image from '../../../../../assets/images/layout/testamentPreview.jpg'
import { Alert } from '../../../../../components/Alert/Alert'
import isAuth from '../../../../../components/Auth/isAuth'
import { Route } from '../../../../../components/ButtonsAndLinks/Route/Route'
import { Headline } from '../../../../../components/Headline/Headline'
import { Icon } from '../../../../../components/Icon/Icon'
import { PaymentPlan, PaymentPlanType } from '../../../../../components/PaymentPlan/PaymentPlan'
import { createCheckoutSession } from '../../../../../services/api/payment/payment'
import { routes } from '../../../../../services/routes/routes'
/**
* Paywall Page
*/
const Buy = () => {
const router = useRouter()
const [error, setError] = useState<boolean>(false)
const handlePlanSubmit = async (plan: PaymentPlanType) => {
/* istanbul ignore next */ // fallback for typescript should not happen
if (plan === 'free') return
const response = await createCheckoutSession(plan)
if (response === 'ERROR') {
setError(true)
return
}
router.push(response)
}
return (
<div className="container mt-5 flex flex-col gap-8 p-8 md:px-40 lg:flex-row lg:gap-4 lg:p-8 xl:p-20">
<div className="order-2 flex h-full flex-col justify-center lg:order-1 lg:w-1/2 lg:p-4">
<div className="mb-12">
<Headline>Ihr Testament ist bereit, um abgeschrieben zu werden</Headline>
<p className="text-base md:text-xl">Schalten Sie es jetzt frei</p>
</div>
{/* Price Plans */}
<div className="mb-4 flex w-full flex-col justify-center gap-4 sm:flex-row lg:justify-start">
{PaymentPlans.map((plan) => (
<PaymentPlan key={plan.type} {...plan} handleSubmit={() => handlePlanSubmit(plan.type)} />
))}
</div>
{/* Error */}
{error && (
<div className="mb-4">
<Alert
headline="Fehler"
description="Es ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut."
/>
</div>
)}
<div className="flex w-full justify-end">
<Route icon="arrow_forward" href={routes.profile.myLastWills}>
Später entscheiden
</Route>
</div>
</div>
{/* Image */}
<div className="order-1 flex w-full items-center justify-center lg:order-2 lg:w-1/2">
<div className="h-full max-h-[480px] w-40 rounded-xl border-2 p-4 lg:w-auto lg:rounded-3xl">
<Image
priority
className="h-full w-auto object-cover object-top blur-[2px]"
src={image}
alt="Testament Preview"
/>
</div>
<Icon icon="lock" className="absolute text-[80px] lg:text-[200px]" />
</div>
</div>
)
}
export default isAuth(Buy, 'protected')
|