Files
supabase/apps/studio/hooks/misc/useCheckEntitlements.ts
Joshen Lim 7f5865872a Enforce noUnusedLocals and noUnusedParameters in tsconfig.json + fix all related issues (#45264)
## Context

Enforce `noUnusedLocals` and `noUnusedParameters` in tsconfig.json + fix
all related issues
2026-04-27 17:42:34 +08:00

136 lines
4.2 KiB
TypeScript

import { useCallback, useMemo } from 'react'
import { useSelectedOrganizationQuery } from './useSelectedOrganization'
import type {
Entitlement,
EntitlementConfig,
EntitlementType,
FeatureKey,
} from '@/data/entitlements/entitlements-query'
import { useEntitlementsQuery } from '@/data/entitlements/entitlements-query'
import { IS_PLATFORM } from '@/lib/constants'
function isNumericConfig(
_config: EntitlementConfig,
type: EntitlementType
): _config is { enabled: boolean; unlimited: boolean; value: number } {
return type === 'numeric'
}
function isSetConfig(
_config: EntitlementConfig,
type: EntitlementType
): _config is { enabled: boolean; set: string[] } {
return type === 'set'
}
function getEntitlementNumericValue(entitlement: Entitlement | null): number | undefined {
const entitlementConfig = entitlement?.config
return entitlementConfig &&
entitlement.type &&
isNumericConfig(entitlementConfig, entitlement.type)
? entitlementConfig.value
: undefined
}
function isEntitlementUnlimited(entitlement: Entitlement | null): boolean {
const entitlementConfig = entitlement?.config
return entitlementConfig &&
entitlement.type &&
isNumericConfig(entitlementConfig, entitlement.type)
? entitlementConfig.unlimited
: false
}
function getEntitlementSetValues(entitlement: Entitlement | null): string[] {
const entitlementConfig = entitlement?.config
return entitlementConfig && entitlement.type && isSetConfig(entitlementConfig, entitlement.type)
? entitlementConfig.set
: []
}
function getEntitlementMax(entitlement: Entitlement | null): number | undefined {
return isEntitlementUnlimited(entitlement)
? Number.MAX_SAFE_INTEGER
: getEntitlementNumericValue(entitlement)
}
export function useHasEntitlementAccess(organizationSlug?: string) {
const shouldGetSelectedOrg = !organizationSlug
const { data: selectedOrg } = useSelectedOrganizationQuery({
enabled: shouldGetSelectedOrg,
})
const finalOrgSlug = organizationSlug || selectedOrg?.slug
const enabled = IS_PLATFORM && !!finalOrgSlug
const { data: entitlementsData } = useEntitlementsQuery({ slug: finalOrgSlug! }, { enabled })
return useCallback(
(key: string) =>
IS_PLATFORM
? (entitlementsData?.entitlements.find((e) => e.feature.key === key)?.hasAccess ?? false)
: true,
[entitlementsData]
)
}
export function useCheckEntitlements(
featureKey: FeatureKey,
organizationSlug?: string,
options?: {
enabled?: boolean
}
) {
// If no organizationSlug provided, try to get it from the selected organization
const shouldGetSelectedOrg = !organizationSlug && options?.enabled !== false
const {
data: selectedOrg,
isPending: isLoadingSelectedOrg,
isSuccess: isSuccessSelectedOrg,
} = useSelectedOrganizationQuery({
enabled: shouldGetSelectedOrg,
})
const finalOrgSlug = organizationSlug || selectedOrg?.slug
const enabled = IS_PLATFORM ? options?.enabled !== false && !!finalOrgSlug : false
const {
data: entitlementsData,
isPending: isLoadingEntitlements,
isSuccess: isSuccessEntitlements,
} = useEntitlementsQuery({ slug: finalOrgSlug! }, { enabled })
const { entitlement } = useMemo((): {
entitlement: Entitlement | null
} => {
// If no organization slug, no access
if (!finalOrgSlug) return { entitlement: null }
const entitlement = entitlementsData?.entitlements.find(
(entitlement) => entitlement.feature.key === featureKey
)
return {
entitlement: entitlement ?? null,
}
}, [entitlementsData, featureKey, finalOrgSlug])
const isLoading = shouldGetSelectedOrg
? isLoadingSelectedOrg || isLoadingEntitlements
: isLoadingEntitlements
const isSuccess = shouldGetSelectedOrg
? isSuccessSelectedOrg && isSuccessEntitlements
: isSuccessEntitlements
return {
hasAccess: IS_PLATFORM ? (entitlement?.hasAccess ?? false) : true,
isLoading: IS_PLATFORM ? isLoading : false,
isSuccess: IS_PLATFORM ? isSuccess : true,
getEntitlementNumericValue: () => getEntitlementNumericValue(entitlement),
isEntitlementUnlimited: () => isEntitlementUnlimited(entitlement),
getEntitlementSetValues: () => getEntitlementSetValues(entitlement),
getEntitlementMax: () => getEntitlementMax(entitlement),
}
}