Elle yazılmış tek-dosya CSS (sabit koyu tema, ham table/button, window.confirm ile silme onayı) yerine tutarlı bir bileşen sistemi: Card/Table/Badge/Button/ Input/Switch/AlertDialog primitifleri, Hanken Grotesk + JetBrains Mono tipografi çifti, "broadcast/monitör" temalı özel bir renk paleti (camgöbeği accent, ok/warn/err/live durum rengi sözlüğü). Tüm sayfalar (dashboard, kanal detay, segmentler, ayarlar, istatistik, kullanıcılar, login) aynı oturumda taşındı — silme onayları artık gerçek AlertDialog, native confirm() değil. Veri akışı/server action'lar değişmedi, tamamen görsel katman. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
46 lines
2.0 KiB
TypeScript
46 lines
2.0 KiB
TypeScript
import * as React from "react";
|
||
import { cva, type VariantProps } from "class-variance-authority";
|
||
import { Slot } from "radix-ui";
|
||
|
||
import { cn } from "@/lib/utils";
|
||
|
||
const badgeVariants = cva(
|
||
"inline-flex w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-full border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-[color,box-shadow] focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3",
|
||
{
|
||
variants: {
|
||
variant: {
|
||
default: "bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
|
||
secondary: "bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
|
||
destructive:
|
||
"bg-destructive text-white focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40 [a&]:hover:bg-destructive/90",
|
||
outline: "border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
|
||
ghost: "[a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
|
||
link: "text-primary underline-offset-4 [a&]:hover:underline",
|
||
// Ürünün kendi durum sözlüğü (kayıt/render/segment durumları) —
|
||
// primary accent'ten bağımsız, sabit anlamları var.
|
||
ok: "bg-ok/15 text-ok",
|
||
warn: "bg-warn/15 text-warn",
|
||
err: "bg-err/15 text-err",
|
||
muted: "bg-muted text-muted-foreground",
|
||
live: "bg-live/15 text-live",
|
||
},
|
||
},
|
||
defaultVariants: {
|
||
variant: "default",
|
||
},
|
||
},
|
||
);
|
||
|
||
function Badge({
|
||
className,
|
||
variant = "default",
|
||
asChild = false,
|
||
...props
|
||
}: React.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & { asChild?: boolean }) {
|
||
const Comp = asChild ? Slot.Root : "span";
|
||
|
||
return <Comp data-slot="badge" data-variant={variant} className={cn(badgeVariants({ variant }), className)} {...props} />;
|
||
}
|
||
|
||
export { Badge, badgeVariants };
|