76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
|
|
import * as React from "react";
|
||
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
||
|
|
import { AlertCircle, CheckCircle2, Info, TriangleAlert, X } from "lucide-react";
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
|
||
|
|
const alertVariants = cva(
|
||
|
|
"relative flex w-full gap-3 rounded-xl border px-4 py-3 text-sm shadow-sm [&>svg]:shrink-0",
|
||
|
|
{
|
||
|
|
variants: {
|
||
|
|
variant: {
|
||
|
|
default: "border-border/80 bg-card text-foreground [&>svg]:text-muted-foreground",
|
||
|
|
info: "border-[#0C447C]/25 bg-[#0C447C]/5 text-[#0C447C] [&>svg]:text-[#0C447C]",
|
||
|
|
success:
|
||
|
|
"border-[#0F6E56]/25 bg-[#E1F5EE] text-[#0F6E56] [&>svg]:text-[#0F6E56]",
|
||
|
|
warning:
|
||
|
|
"border-[#BA7517]/30 bg-amber-50 text-[#BA7517] [&>svg]:text-[#BA7517]",
|
||
|
|
destructive:
|
||
|
|
"border-[#A32D2D]/25 bg-red-50 text-[#A32D2D] [&>svg]:text-[#A32D2D]",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
defaultVariants: { variant: "default" },
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
const iconByVariant = {
|
||
|
|
default: Info,
|
||
|
|
info: Info,
|
||
|
|
success: CheckCircle2,
|
||
|
|
warning: TriangleAlert,
|
||
|
|
destructive: AlertCircle,
|
||
|
|
} as const;
|
||
|
|
|
||
|
|
export interface AlertProps
|
||
|
|
extends React.HTMLAttributes<HTMLDivElement>,
|
||
|
|
VariantProps<typeof alertVariants> {
|
||
|
|
title?: string;
|
||
|
|
onDismiss?: () => void;
|
||
|
|
}
|
||
|
|
|
||
|
|
const Alert = React.forwardRef<HTMLDivElement, AlertProps>(
|
||
|
|
({ className, variant = "default", title, onDismiss, children, ...props }, ref) => {
|
||
|
|
const Icon = iconByVariant[variant ?? "default"];
|
||
|
|
return (
|
||
|
|
<div
|
||
|
|
ref={ref}
|
||
|
|
role="alert"
|
||
|
|
className={cn(alertVariants({ variant }), className)}
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
<Icon className="mt-0.5 h-4 w-4" aria-hidden />
|
||
|
|
<div className="min-w-0 flex-1 space-y-0.5">
|
||
|
|
{title ? <p className="font-medium leading-snug">{title}</p> : null}
|
||
|
|
{children ? (
|
||
|
|
<div className={cn("text-[13px] leading-relaxed opacity-95", title && "opacity-90")}>
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
) : null}
|
||
|
|
</div>
|
||
|
|
{onDismiss ? (
|
||
|
|
<button
|
||
|
|
type="button"
|
||
|
|
onClick={onDismiss}
|
||
|
|
className="absolute end-2 top-2 rounded-md p-1 opacity-60 transition hover:bg-black/5 hover:opacity-100"
|
||
|
|
aria-label="Dismiss"
|
||
|
|
>
|
||
|
|
<X className="h-3.5 w-3.5" />
|
||
|
|
</button>
|
||
|
|
) : null}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
);
|
||
|
|
Alert.displayName = "Alert";
|
||
|
|
|
||
|
|
export { Alert, alertVariants };
|