feat: implement subscription limit check in NewSitePage; update HomePage to conditionally display site addition link or upgrade prompt based on subscription status

This commit is contained in:
Usman Baig
2026-01-31 22:45:11 +01:00
parent d8abd392ec
commit 472061113b
2 changed files with 37 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
'use client'
import { useState } from 'react'
import { useState, useEffect } from 'react'
import { useRouter } from 'next/navigation'
import { createSite } from '@/lib/api/sites'
import { createSite, listSites } from '@/lib/api/sites'
import { getSubscription } from '@/lib/api/billing'
import { toast } from '@ciphera-net/ui'
import { Button, Input } from '@ciphera-net/ui'
@@ -14,6 +15,28 @@ export default function NewSitePage() {
domain: '',
})
// * Check for plan limits on mount
useEffect(() => {
const checkLimits = async () => {
try {
const [sites, subscription] = await Promise.all([
listSites(),
getSubscription()
])
if (subscription?.plan_id === 'solo' && sites.length >= 1) {
toast.error('Solo plan limit reached (1 site). Please upgrade to add more sites.')
router.replace('/')
}
} catch (error) {
// Ignore errors here, let the backend handle the hard check on submit
console.error('Failed to check limits', error)
}
}
checkLimits()
}, [router])
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setLoading(true)