|
| 1 | +'use client' |
| 2 | + |
| 3 | +import { z } from 'zod' |
| 4 | +import Link from 'next/link' |
| 5 | +import { toast } from 'sonner' |
| 6 | +import { SubmitHandler, useForm } from 'react-hook-form' |
| 7 | +import { zodResolver } from '@hookform/resolvers/zod' |
| 8 | +import ReCAPTCHA from 'react-google-recaptcha' |
| 9 | +import { NewsletterFormSchema } from '@/lib/schemas' |
| 10 | +import { Button } from '@/components/ui/button' |
| 11 | +import { Input } from '@/components/ui/input' |
| 12 | +import { useRef, useState } from 'react' |
| 13 | +import { Card, CardContent } from '@/components/ui/card' |
| 14 | +import { subscribe } from '@/lib/actions' |
| 15 | + |
| 16 | +type Inputs = z.infer<typeof NewsletterFormSchema> |
| 17 | + |
| 18 | +export default function NewsletterForm() { |
| 19 | + const captchaRef = useRef<ReCAPTCHA>(null) |
| 20 | + const [captchaEnabled, setCaptchaEnabled] = useState(false) |
| 21 | + |
| 22 | + const { |
| 23 | + watch, |
| 24 | + register, |
| 25 | + handleSubmit, |
| 26 | + reset, |
| 27 | + formState: { errors, isSubmitting } |
| 28 | + } = useForm<Inputs>({ |
| 29 | + resolver: zodResolver(NewsletterFormSchema), |
| 30 | + defaultValues: { |
| 31 | + email: '', |
| 32 | + captcha: '' |
| 33 | + } |
| 34 | + }) |
| 35 | + |
| 36 | + const [email] = watch(['email']) |
| 37 | + |
| 38 | + if (email && !captchaEnabled) { |
| 39 | + setCaptchaEnabled(true) |
| 40 | + } |
| 41 | + |
| 42 | + const processForm: SubmitHandler<Inputs> = async data => { |
| 43 | + const result = await subscribe(data) |
| 44 | + |
| 45 | + if (result?.error) { |
| 46 | + toast.error('An error occurred! Please try again.') |
| 47 | + return |
| 48 | + } |
| 49 | + |
| 50 | + toast.success('Subscribed successfully!') |
| 51 | + reset() |
| 52 | + } |
| 53 | + |
| 54 | + return ( |
| 55 | + <section> |
| 56 | + <Card className='rounded-lg border-0 dark:border'> |
| 57 | + <CardContent className='flex flex-col gap-8 pt-6 md:flex-row md:justify-between md:pt-8'> |
| 58 | + <div> |
| 59 | + <h2 className='text-2xl font-bold'>Subscribe to my newsletter</h2> |
| 60 | + <p className='text-muted-foreground'> |
| 61 | + Get updates on my work and projects. |
| 62 | + </p> |
| 63 | + </div> |
| 64 | + |
| 65 | + <form |
| 66 | + onSubmit={handleSubmit(processForm)} |
| 67 | + className='flex flex-col items-start gap-3' |
| 68 | + > |
| 69 | + <div className='w-full'> |
| 70 | + <Input |
| 71 | + type='email' |
| 72 | + id='email' |
| 73 | + autoComplete='email' |
| 74 | + placeholder='Email' |
| 75 | + className='w-full' |
| 76 | + {...register('email')} |
| 77 | + /> |
| 78 | + |
| 79 | + {errors.email?.message && ( |
| 80 | + <p className='ml-1 mt-2 text-sm text-rose-400'> |
| 81 | + {errors.email.message} |
| 82 | + </p> |
| 83 | + )} |
| 84 | + </div> |
| 85 | + |
| 86 | + <div className='w-full'> |
| 87 | + <Button |
| 88 | + type='submit' |
| 89 | + disabled={isSubmitting} |
| 90 | + className='w-full disabled:opacity-50' |
| 91 | + > |
| 92 | + {isSubmitting ? 'Submitting...' : 'Subscribe'} |
| 93 | + </Button> |
| 94 | + </div> |
| 95 | + |
| 96 | + <div> |
| 97 | + <p className='text-xs text-muted-foreground'> |
| 98 | + We care about your data. Read our{' '} |
| 99 | + <Link href='/privacy' className='font-bold'> |
| 100 | + privacy policy. |
| 101 | + </Link> |
| 102 | + </p> |
| 103 | + </div> |
| 104 | + |
| 105 | + {captchaEnabled && ( |
| 106 | + <ReCAPTCHA |
| 107 | + ref={captchaRef} |
| 108 | + size='invisible' |
| 109 | + sitekey={process.env.NEXT_PUBLIC_CAPTCHA!} |
| 110 | + /> |
| 111 | + )} |
| 112 | + </form> |
| 113 | + </CardContent> |
| 114 | + </Card> |
| 115 | + </section> |
| 116 | + ) |
| 117 | +} |
0 commit comments