refactor(billing): centralize tier credits and align topup UI

This commit is contained in:
2026-04-03 18:53:21 +02:00
parent 609e4fca20
commit 8dd1d1bb7c
2 changed files with 6 additions and 66 deletions

View File

@@ -1,22 +1,13 @@
"use client";
import { useState } from "react";
import { useTranslations } from "next-intl";
import { CreditCard, Zap } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Slider } from "@/components/ui/slider";
import { authClient } from "@/lib/auth-client";
import { TOPUP_PRODUCTS } from "@/lib/polar-products";
import { calculateCustomTopup } from "@/lib/topup-calculator";
import { toast } from "@/lib/toast";
const CUSTOM_TOPUP_PRODUCT_ID = "POLAR_PRODUCT_ID_TOPUP_CUSTOM";
export function TopupPanel() {
const t = useTranslations('toasts');
const [customAmount, setCustomAmount] = useState(20);
const { credits, bonusRate } = calculateCustomTopup(customAmount);
async function handleTopup(polarProductId: string) {
toast.info(
@@ -47,48 +38,9 @@ export function TopupPanel() {
</div>
</div>
<div className="space-y-4 rounded-xl border bg-card p-6">
<h3 className="text-sm font-medium">Custom amount</h3>
<div className="flex items-center justify-between">
<span className="text-3xl font-semibold tabular-nums">EUR {customAmount}</span>
<div className="text-right">
<p className="text-2xl font-semibold tabular-nums text-primary">
{credits.toLocaleString("de-DE")} Cr
</p>
{bonusRate > 0 && (
<p className="flex items-center justify-end gap-1 text-xs text-green-600">
<Zap className="h-3 w-3" />
+{Math.round(bonusRate * 100)}% bonus
</p>
)}
</div>
</div>
<Slider
min={5}
max={200}
step={1}
value={[customAmount]}
onValueChange={([value]) => setCustomAmount(value)}
/>
<div className="flex justify-between text-xs text-muted-foreground">
<span>EUR 5</span>
<span>EUR 200</span>
</div>
<Button
className="w-full"
onClick={() => handleTopup(CUSTOM_TOPUP_PRODUCT_ID)}
>
<CreditCard className="mr-2 h-4 w-4" />
Buy {credits.toLocaleString("de-DE")} Credits for EUR {customAmount}
</Button>
<p className="text-center text-xs text-muted-foreground">
Larger amounts include a bonus. Top-ups are always available, even on free plan.
</p>
</div>
<p className="text-xs text-muted-foreground">
Angezeigt werden nur kaufbare Top-up Pakete aus der serverseitigen Polar-Produktkonfiguration.
</p>
</div>
);
}