- Added credit costs reference table to Credits page - Shows cost per operation type with descriptions - Consistent with Usage page credit costs display - Helps users understand credit consumption
137 lines
5.7 KiB
TypeScript
137 lines
5.7 KiB
TypeScript
import { useState, useEffect } from 'react';
|
|
import PageMeta from '../../components/common/PageMeta';
|
|
import { useToast } from '../../components/ui/toast/ToastContainer';
|
|
import { fetchCreditBalance, CreditBalance } from '../../services/api';
|
|
import { Card } from '../../components/ui/card';
|
|
import Badge from '../../components/ui/badge/Badge';
|
|
|
|
// Credit costs per operation (Phase 0: Credit-only system)
|
|
const CREDIT_COSTS: Record<string, { cost: number | string; description: string }> = {
|
|
clustering: { cost: 10, description: 'Per clustering request' },
|
|
idea_generation: { cost: 15, description: 'Per cluster → ideas request' },
|
|
content_generation: { cost: '1 per 100 words', description: 'Per 100 words generated' },
|
|
image_prompt_extraction: { cost: 2, description: 'Per content piece' },
|
|
image_generation: { cost: 5, description: 'Per image generated' },
|
|
linking: { cost: 8, description: 'Per content piece' },
|
|
optimization: { cost: '1 per 200 words', description: 'Per 200 words optimized' },
|
|
site_structure_generation: { cost: 50, description: 'Per site blueprint' },
|
|
site_page_generation: { cost: 20, description: 'Per page generated' },
|
|
};
|
|
|
|
export default function Credits() {
|
|
const toast = useToast();
|
|
const [balance, setBalance] = useState<CreditBalance | null>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
loadBalance();
|
|
}, []);
|
|
|
|
const loadBalance = async () => {
|
|
try {
|
|
setLoading(true);
|
|
const data = await fetchCreditBalance();
|
|
setBalance(data);
|
|
} catch (error: any) {
|
|
toast.error(`Failed to load credit balance: ${error.message}`);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="p-6">
|
|
<PageMeta title="Credits" />
|
|
<div className="flex items-center justify-center h-64">
|
|
<div className="text-gray-500">Loading...</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="p-6">
|
|
<PageMeta title="Credits" />
|
|
<div className="mb-6">
|
|
<h1 className="text-2xl font-bold text-gray-900 dark:text-white">Credit Balance</h1>
|
|
<p className="text-gray-600 dark:text-gray-400 mt-1">Manage your AI credits and usage</p>
|
|
</div>
|
|
|
|
{balance && (
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
|
|
<Card className="p-6">
|
|
<div className="flex items-center justify-between mb-2">
|
|
<h3 className="text-sm font-medium text-gray-600 dark:text-gray-400">Current Balance</h3>
|
|
</div>
|
|
<div className="text-3xl font-bold text-gray-900 dark:text-white">
|
|
{(balance.credits ?? 0).toLocaleString()}
|
|
</div>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">Available credits</p>
|
|
</Card>
|
|
|
|
<Card className="p-6">
|
|
<div className="flex items-center justify-between mb-2">
|
|
<h3 className="text-sm font-medium text-gray-600 dark:text-gray-400">Monthly Allocation</h3>
|
|
</div>
|
|
<div className="text-3xl font-bold text-gray-900 dark:text-white">
|
|
{(balance.plan_credits_per_month ?? 0).toLocaleString()}
|
|
</div>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">Credits per month</p>
|
|
</Card>
|
|
|
|
<Card className="p-6">
|
|
<div className="flex items-center justify-between mb-2">
|
|
<h3 className="text-sm font-medium text-gray-600 dark:text-gray-400">Used This Month</h3>
|
|
</div>
|
|
<div className="text-3xl font-bold text-gray-900 dark:text-white">
|
|
{(balance.credits_used_this_month ?? 0).toLocaleString()}
|
|
</div>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">Credits consumed</p>
|
|
</Card>
|
|
|
|
<Card className="p-6">
|
|
<div className="flex items-center justify-between mb-2">
|
|
<h3 className="text-sm font-medium text-gray-600 dark:text-gray-400">Remaining</h3>
|
|
</div>
|
|
<div className="text-3xl font-bold text-gray-900 dark:text-white">
|
|
{(balance.credits_remaining ?? 0).toLocaleString()}
|
|
</div>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">Credits remaining</p>
|
|
</Card>
|
|
</div>
|
|
)}
|
|
|
|
{/* Credit Costs Reference */}
|
|
<div className="mt-8">
|
|
<Card className="p-6">
|
|
<h2 className="text-lg font-semibold text-gray-800 dark:text-white mb-4">Credit Costs per Operation</h2>
|
|
<p className="text-sm text-gray-600 dark:text-gray-400 mb-4">
|
|
Understanding how credits are consumed for each operation type
|
|
</p>
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
|
{Object.entries(CREDIT_COSTS).map(([operation, info]) => (
|
|
<div key={operation} className="flex items-start justify-between p-3 bg-gray-50 dark:bg-gray-800 rounded-lg">
|
|
<div className="flex-1">
|
|
<div className="font-medium text-gray-900 dark:text-white capitalize">
|
|
{operation.replace(/_/g, ' ')}
|
|
</div>
|
|
<div className="text-sm text-gray-600 dark:text-gray-400 mt-1">
|
|
{info.description}
|
|
</div>
|
|
</div>
|
|
<div className="ml-4 text-right">
|
|
<Badge variant="light" color="primary" className="font-semibold">
|
|
{typeof info.cost === 'number' ? `${info.cost} credits` : info.cost}
|
|
</Badge>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|