43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
/**
|
||
* Shared plan and traffic tier definitions for pricing and billing (Change plan).
|
||
* Backend supports plan_id solo, team, business and limit 10k–10M; month/year interval.
|
||
*/
|
||
|
||
export const PLAN_ID_SOLO = 'solo'
|
||
export const PLAN_ID_TEAM = 'team'
|
||
export const PLAN_ID_BUSINESS = 'business'
|
||
|
||
/** Sites limit per plan. Returns null for free (no limit enforced in UI). */
|
||
export function getSitesLimitForPlan(planId: string | null | undefined): number | null {
|
||
if (!planId || planId === 'free') return null
|
||
switch (planId) {
|
||
case 'solo': return 1
|
||
case 'team': return 5
|
||
case 'business': return 10
|
||
default: return null
|
||
}
|
||
}
|
||
|
||
/** Traffic tiers available for Solo plan (pageview limits). */
|
||
export const TRAFFIC_TIERS = [
|
||
{ label: '10k', value: 10000 },
|
||
{ label: '50k', value: 50000 },
|
||
{ label: '100k', value: 100000 },
|
||
{ label: '250k', value: 250000 },
|
||
{ label: '500k', value: 500000 },
|
||
{ label: '1M', value: 1000000 },
|
||
{ label: '2.5M', value: 2500000 },
|
||
{ label: '5M', value: 5000000 },
|
||
{ label: '10M', value: 10000000 },
|
||
] as const
|
||
|
||
export function getTierIndexForLimit(limit: number): number {
|
||
const idx = TRAFFIC_TIERS.findIndex((t) => t.value === limit)
|
||
return idx >= 0 ? idx : 2
|
||
}
|
||
|
||
export function getLimitForTierIndex(index: number): number {
|
||
if (index < 0 || index >= TRAFFIC_TIERS.length) return 100000
|
||
return TRAFFIC_TIERS[index].value
|
||
}
|