veza/apps/web/src/components/ui/button.tsx
senke 6e9bacff54 style(ui): elevate Button to SaaS Premium standards
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-07 09:38:52 +01:00

140 lines
5 KiB
TypeScript

import * as React from 'react';
import { Slot } from '@radix-ui/react-slot';
import { type VariantProps, cva } from 'class-variance-authority';
import { cn } from '@/lib/utils';
/**
* Button variant styles using class-variance-authority
* SaaS Premium: semantic tokens, glass/glow, radius-full, duration-normal, active:scale-95
*/
const buttonVariants = cva(
'inline-flex items-center justify-center whitespace-nowrap rounded-full text-sm font-medium tracking-tight transition-[color,transform,box-shadow,border-color,background-color] duration-[var(--duration-normal)] ease-out focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:pointer-events-none disabled:opacity-50 gap-2 active:scale-95',
{
variants: {
variant: {
/** Primary action button - main CTAs, submit */
default:
'bg-primary text-primary-foreground hover:bg-primary/90 hover:shadow-[0_0_20px_var(--primary)/0.25] border border-transparent font-semibold',
/** Primary alias for Design System compatibility */
primary:
'bg-primary text-primary-foreground hover:bg-primary/90 hover:shadow-[0_0_20px_var(--primary)/0.25] border border-transparent font-semibold',
/** Destructive actions - delete, remove, clear */
destructive:
'bg-destructive/10 text-destructive hover:bg-destructive/20 border border-destructive/30 hover:border-destructive/50',
/** Outlined - secondary actions, cancel */
outline:
'border border-border bg-transparent text-foreground hover:bg-muted/50 hover:border-border',
/** Secondary - less prominent actions */
secondary:
'bg-muted text-foreground hover:bg-muted/80 border border-border',
/** Ghost - icon buttons, menu items */
ghost: 'hover:bg-muted/50 text-foreground',
/** Gaming style - accent warning/gold */
gaming:
'bg-muted border border-warning/40 text-warning hover:bg-warning/10 hover:border-warning font-bold tracking-wider uppercase',
/** Terminal style - monospace, primary accent on hover */
terminal:
'bg-card border border-border text-muted-foreground font-mono text-xs hover:border-primary hover:text-primary',
/** Nature style - success green */
nature:
'bg-muted border border-success/30 text-success hover:bg-success/10 hover:border-success/50',
/** Glass - glassmorphism */
glass:
'bg-white/5 backdrop-blur-md border border-white/10 text-foreground hover:bg-white/10 hover:border-white/20 shadow-lg',
},
size: {
/** Default size - standard buttons */
default: 'h-10 px-4 py-2',
/** Small size - compact buttons, inline actions */
sm: 'h-9 rounded-full px-4 text-xs',
/** Large size - prominent CTAs */
lg: 'h-12 rounded-full px-8 text-base',
/** Icon size - icon-only buttons (square, full radius) */
icon: 'h-10 w-10 rounded-full',
},
},
defaultVariants: {
variant: 'default',
size: 'default',
},
},
);
/**
* Button component props
*
* Extends standard HTML button attributes with design system variants and sizes.
*
* @example
* ```tsx
* <Button variant="default" size="lg" onClick={handleSave}>
* Save Changes
* </Button>
* ```
*
* @example
* ```tsx
* <Button variant="ghost" size="icon" onClick={handleEdit}>
* <Edit className="w-4 h-4" />
* </Button>
* ```
*/
export interface ButtonProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof buttonVariants> {
/** Use asChild to compose with other components (e.g., Link from react-router) */
asChild?: boolean;
/** Optional icon to display before the label */
icon?: React.ReactNode;
}
/**
* Button - Design system button component
*
* A versatile button component with multiple variants and sizes following the Kodo design system.
*
* @example
* ```tsx
* // Primary action
* <Button variant="default" onClick={handleSave}>Save</Button>
*
* // Destructive action
* <Button variant="destructive" onClick={handleDelete}>Delete</Button>
*
* // Secondary action
* <Button variant="outline" onClick={handleCancel}>Cancel</Button>
*
* // Icon button
* <Button variant="ghost" size="icon">
* <Edit className="w-4 h-4" />
* </Button>
* ```
*/
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
({ className, variant, size, asChild = false, icon, children, ...props }, ref) => {
const Comp = asChild ? Slot : 'button';
return (
<Comp
className={cn(buttonVariants({ variant, size, className }))}
ref={ref}
{...props}
>
{asChild ? (
children
) : (
<>
{icon && (
<span className="flex items-center justify-center pointer-events-none">
{icon}
</span>
)}
{children}
</>
)}
</Comp>
);
},
);
Button.displayName = 'Button';
export { Button, buttonVariants };