veza/apps/web/src/components/ui/button.tsx
senke 5f88c56113 fix: UI remediation Phase 1 (S0-S5) + Phase 2 Sprint 6 shadow system
Phase 1:
- S0: Fix open redirect (safeNavigate), delete AuthContext/legacy auth, encrypt API keys, gitignore .env files
- S1: Split client.ts god object into 5 modules, unify toast system, delete unused Sidebar
- S2: Add glass button variant, migrate 32 z-index to SUMI tokens, fix card dark mode
- S3: Skip nav link, aria-hidden on icons, focus-visible ring fixes, alt attrs, aria-live regions
- S4: React.memo on list items, fix key={index}, loading=lazy on images
- S5: Branded loading screen, page transitions respect reduced-motion, LikeButton micro-interaction, i18n sidebar/header

Phase 2 Sprint 6:
- Wire Tailwind shadow utilities to SUMI tokens in @theme block (fixes 50+ files)
- Define shadow-card/shadow-card-hover tokens
- Remove dark:shadow-none workarounds from card.tsx (SUMI handles per-theme shadows)

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 10:13:44 +01:00

141 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 { Loader2 } from 'lucide-react';
import { cn } from '@/lib/utils';
/**
* Button variant styles using class-variance-authority
* SUMI Design System: semantic tokens, rounded-full, duration-normal
*/
const buttonVariants = cva(
'inline-flex items-center justify-center whitespace-nowrap rounded-full text-sm font-sans font-medium tracking-tight transition-[color,box-shadow,border-color,background-color] duration-[var(--sumi-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 focus-visible:shadow-[var(--sumi-shadow-glow)] disabled:pointer-events-none disabled:opacity-50 gap-2',
{
variants: {
variant: {
/** Primary action button - main CTAs, submit */
default:
'bg-primary text-primary-foreground hover:bg-primary/90 border border-transparent font-semibold',
/** Primary alias for Design System compatibility */
primary:
'bg-primary text-primary-foreground hover:bg-primary/90 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/30 text-foreground hover:bg-muted/50 border border-border hover:border-border',
/** Ghost - icon buttons, menu items */
ghost: 'text-muted-foreground hover:text-foreground hover:bg-muted/50',
/** Link - styled as inline link */
link: 'text-primary underline-offset-4 hover:underline',
/** Glass - frosted glass effect for overlays, player bar, floating actions */
glass:
'bg-[var(--sumi-glass-bg)] text-foreground backdrop-blur-[var(--sumi-glass-blur)] border border-[var(--sumi-glass-border)] hover:bg-white/15 font-medium',
},
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;
/** Show a loading spinner and disable the button */
loading?: boolean;
}
/**
* Button - Design system button component
*
* A versatile button component with multiple variants and sizes following the SUMI 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, loading = false, children, disabled, ...props }, ref) => {
const Comp = asChild ? Slot : 'button';
const isDisabled = disabled || loading;
return (
<Comp
className={cn(buttonVariants({ variant, size, className }), loading && 'opacity-70')}
ref={ref}
disabled={isDisabled}
{...props}
>
{asChild ? (
children
) : (
<>
{loading && (
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
)}
{!loading && icon && (
<span className="flex items-center justify-center pointer-events-none" aria-hidden="true">
{icon}
</span>
)}
{children}
</>
)}
</Comp>
);
},
);
Button.displayName = 'Button';
export { Button, buttonVariants };