Browse Source

chore(api): add email verification CTA in dashboard

pull/58/head
isra el 12 months ago
parent
commit
cef2c6a2fe
  1. 7
      web/app/(app)/dashboard/(components)/dashboard-layout.tsx
  2. 86
      web/app/(app)/dashboard/(components)/verify-email-alert.tsx

7
web/app/(app)/dashboard/(components)/dashboard-layout.tsx

@ -14,6 +14,8 @@ import { useSession } from 'next-auth/react'
import { JoinCommunityModal } from '@/components/shared/join-community-modal'
import { ContributeModal } from '@/components/shared/contribute-modal'
import UpgradeToProAlert from './upgrade-to-pro-alert'
import VerifyEmailAlert from './verify-email-alert'
export default function Dashboard({
children,
}: {
@ -66,17 +68,20 @@ export default function Dashboard({
<TabsContent value='dashboard' className='space-y-4'>
<CommunityAlert />
<VerifyEmailAlert />
<UpgradeToProAlert />
<MainDashboard />
</TabsContent>
<TabsContent value='community' className='space-y-4'>
<CommunityLinks />
<VerifyEmailAlert />
<UpgradeToProAlert />
<CommunityLinks />
</TabsContent>
<TabsContent value='account' className='space-y-4'>
<CommunityAlert />
<VerifyEmailAlert />
<UpgradeToProAlert />
<AccountSettings />
</TabsContent>

86
web/app/(app)/dashboard/(components)/verify-email-alert.tsx

@ -0,0 +1,86 @@
import { Alert, AlertDescription } from '@/components/ui/alert'
import { Button } from '@/components/ui/button'
import { ApiEndpoints } from '@/config/api'
import httpBrowserClient from '@/lib/httpBrowserClient'
import { useQuery } from '@tanstack/react-query'
import Link from 'next/link'
import { useMemo } from 'react'
import { Mail, ShieldAlert } from 'lucide-react'
export default function VerifyEmailAlert() {
const {
data: userData,
isLoading: isLoadingUserData,
error: userDataError,
} = useQuery({
queryKey: ['whoAmI'],
queryFn: () =>
httpBrowserClient
.get(ApiEndpoints.auth.whoAmI())
.then((res) => res.data.data),
})
const ctaMessages = useMemo(
() => [
'Hey there! Verify your email to keep your service running smoothly.',
'Quick heads up - we need to verify your email to prevent any interruptions.',
'Just a friendly reminder to verify your email and avoid service disruptions.',
'Your account needs email verification to ensure uninterrupted service.',
'One small step to go - verify your email to keep your account active and running.',
],
[]
)
const buttonTexts = useMemo(
() => [
'Verify Email',
"Let's Do This",
'Verify Now',
'Complete Verification',
],
[]
)
const randomCta = useMemo(() => {
const randomIndex = Math.floor(Math.random() * ctaMessages.length)
return ctaMessages[randomIndex]
}, [ctaMessages])
const randomButtonText = useMemo(() => {
const randomIndex = Math.floor(Math.random() * buttonTexts.length)
return buttonTexts[randomIndex]
}, [buttonTexts])
if (isLoadingUserData || !userData || userDataError) {
return null
}
// If email is already verified, don't show the alert
if (userData.emailVerifiedAt) {
return null
}
return (
<Alert className='bg-gradient-to-r from-red-600 to-red-700 text-white'>
<AlertDescription className='flex flex-col sm:flex-row flex-wrap items-center gap-2 md:gap-4'>
<span className='w-full sm:flex-1 text-center sm:text-left text-sm md:text-base font-medium flex items-center justify-center sm:justify-start gap-2'>
<ShieldAlert className='h-5 w-5' />
{randomCta}
</span>
<div className='w-full sm:w-auto mt-2 sm:mt-0 flex justify-center sm:justify-end flex-wrap gap-1 md:gap-2'>
<Button
variant='outline'
size='sm'
asChild
className='bg-white text-indigo-700 hover:bg-gray-100 hover:text-indigo-800 border-white text-xs md:text-sm'
>
<Link href={'/verify-email'}>
<Mail className='mr-2 h-4 w-4' />
{randomButtonText}
</Link>
</Button>
</div>
</AlertDescription>
</Alert>
)
}
Loading…
Cancel
Save