geo/frontend/components/subscription/SubscriptionStatus.tsx

60 lines
1.8 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client";
import { cn } from "@/lib/utils";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Crown, ArrowUpRight } from "lucide-react";
import Link from "next/link";
const PLAN_CONFIG: Record<string, { label: string; variant: "default" | "secondary" | "primary" | "info" }> = {
free: { label: "免费版", variant: "secondary" },
starter: { label: "入门版", variant: "info" },
pro: { label: "专业版", variant: "default" },
enterprise: { label: "企业版", variant: "primary" },
};
interface SubscriptionStatusProps {
plan: string;
expiresAt?: string;
className?: string;
}
export function SubscriptionStatus({ plan, expiresAt, className }: SubscriptionStatusProps) {
const config = PLAN_CONFIG[plan] || PLAN_CONFIG.free;
const showUpgrade = plan === "free" || plan === "starter";
const formatDate = (dateStr: string) => {
try {
return new Date(dateStr).toLocaleDateString("zh-CN", {
year: "numeric",
month: "long",
day: "numeric",
});
} catch {
return dateStr;
}
};
return (
<div className={cn("flex items-center gap-3", className)}>
<div className="flex items-center gap-2">
{plan !== "free" && <Crown className="h-4 w-4 text-amber-500" />}
<Badge variant={config.variant}>{config.label}</Badge>
</div>
{expiresAt && (
<span className="text-xs text-muted-foreground">
{formatDate(expiresAt)}
</span>
)}
{showUpgrade && (
<Link href="/dashboard/subscription">
<Button variant="outline" size="sm" className="h-7 text-xs gap-1">
<ArrowUpRight className="h-3 w-3" />
</Button>
</Link>
)}
</div>
);
}