supermemory/apps/web/hooks/use-token-usage.ts
Prasanna721 11a0abd5c0 feat: migrate to api_pro billing and add credits-based usage display (#729)
Summary

  - Migrate from consumer_pro to api_pro billing product across the app
  - Enable Nova app for all users (remove feature flag)
  - Add credits-based usage tracking with tokens abstraction
2026-02-10 05:53:47 +00:00

57 lines
1.8 KiB
TypeScript

import { fetchSubscriptionStatus } from "@lib/queries"
import type { useCustomer } from "autumn-js/react"
import { calculateUsagePercent, getDaysRemaining } from "@/lib/billing-utils"
export type PlanType = "free" | "pro" | "scale" | "enterprise"
export function useTokenUsage(autumn: ReturnType<typeof useCustomer>) {
const {
data: status = {
api_pro: { allowed: false, status: null },
api_scale: { allowed: false, status: null },
api_enterprise: { allowed: false, status: null },
},
isLoading: isCheckingStatus,
} = fetchSubscriptionStatus(autumn, !autumn.isLoading)
let currentPlan: PlanType = "free"
if (status.api_enterprise?.status !== null) {
currentPlan = "enterprise"
} else if (status.api_scale?.status !== null) {
currentPlan = "scale"
} else if (status.api_pro?.status !== null) {
currentPlan = "pro"
}
const hasPaidPlan = currentPlan !== "free"
// Get token usage from autumn customer features
const tokensFeature = autumn.customer?.features?.api_tokens
const tokensUsed = tokensFeature?.usage ?? 0
const tokensLimit = tokensFeature?.included_usage ?? 0
const tokensResetAt = tokensFeature?.next_reset_at
// Get search queries usage from autumn customer features
const searchesFeature = autumn.customer?.features?.api_search_queries
const searchesUsed = searchesFeature?.usage ?? 0
const searchesLimit = searchesFeature?.included_usage ?? 0
const isLoading = autumn.isLoading || isCheckingStatus
const tokensPercent = calculateUsagePercent(tokensUsed, tokensLimit)
const searchesPercent = calculateUsagePercent(searchesUsed, searchesLimit)
const daysRemaining = getDaysRemaining(tokensResetAt)
return {
tokensUsed,
tokensLimit,
tokensPercent,
searchesUsed,
searchesLimit,
searchesPercent,
currentPlan,
hasPaidPlan,
isLoading,
daysRemaining,
}
}