Major categories fixed: - TS6133 (188): Remove unused imports (React, icons, types) and variables - TS2322 (222): Fix type mismatches in stories (satisfies Meta -> const meta: Meta), add nullish coalescing for optional values, fix component prop types - TS2345 (43): Fix argument type mismatches with proper null checks and type narrowing - TS2741 (21): Add missing required properties to mock/story data - TS2339 (19): Fix property access on incorrect types, add type guards - TS2353 (13): Remove extra properties from object literals or extend interfaces - TS2352 (11): Fix type conversion chains - TS2307 (9): Fix import paths and module references - Other (42): Fix implicit any, possibly undefined, export declarations Vite build and tsc --noEmit both pass cleanly. Co-authored-by: Cursor <cursoragent@cursor.com>
185 lines
4.9 KiB
TypeScript
185 lines
4.9 KiB
TypeScript
import * as React from 'react'
|
|
import { cva, type VariantProps } from 'class-variance-authority'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const cardVariants = cva(
|
|
'flex flex-col rounded-lg text-card-foreground transition-[box-shadow,background-color,border-color] duration-[var(--sumi-duration-normal)] ease-out relative overflow-hidden',
|
|
{
|
|
variants: {
|
|
variant: {
|
|
/** Shadows wired to SUMI tokens via @theme — auto dark/light intensity */
|
|
default:
|
|
'bg-card border border-border shadow-card hover:shadow-card-hover hover:bg-card/95',
|
|
|
|
elevated:
|
|
'bg-card border border-border shadow-lg hover:shadow-xl hover:bg-card/95',
|
|
|
|
ghost:
|
|
'bg-transparent border-0',
|
|
|
|
outline:
|
|
'bg-transparent border border-border',
|
|
|
|
muted:
|
|
'bg-muted/50 border border-border',
|
|
|
|
interactive:
|
|
'bg-card border border-transparent shadow-card cursor-pointer hover:shadow-card-hover hover:border-primary/20 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
|
|
|
|
spotlight:
|
|
'bg-card/80 border border-border hover:border-border',
|
|
|
|
/* Immersive surface: subtle border, lighter + diffuse shadow on hover */
|
|
surface:
|
|
'bg-card border border-border shadow-none hover:bg-card/90 hover:border-border hover:shadow-card-hover transition-all duration-[var(--sumi-duration-slow)] ease-in-out',
|
|
|
|
/* Glass effect: backdrop blur, transparent background */
|
|
glass:
|
|
'bg-card/80 dark:bg-black/20 backdrop-blur-xl border border-border',
|
|
},
|
|
padding: {
|
|
none: '',
|
|
sm: 'p-4',
|
|
default: 'p-6',
|
|
lg: 'p-8',
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: 'default',
|
|
padding: 'none',
|
|
},
|
|
},
|
|
)
|
|
|
|
interface CardProps
|
|
extends React.ComponentProps<'div'>,
|
|
VariantProps<typeof cardVariants> {
|
|
spotlight?: boolean;
|
|
spotlightColor?: string;
|
|
}
|
|
|
|
function Card({ className, variant, padding, spotlight, spotlightColor = 'rgba(255, 255, 255, 0.1)', ...props }: CardProps) {
|
|
const divRef = React.useRef<HTMLDivElement>(null);
|
|
const [position, setPosition] = React.useState({ x: 0, y: 0 });
|
|
const [opacity, setOpacity] = React.useState(0);
|
|
|
|
const handleMouseMove = (e: React.MouseEvent<HTMLDivElement>) => {
|
|
if (!divRef.current || (variant !== 'spotlight' && !spotlight)) return;
|
|
|
|
const div = divRef.current;
|
|
const rect = div.getBoundingClientRect();
|
|
|
|
setPosition({ x: e.clientX - rect.left, y: e.clientY - rect.top });
|
|
};
|
|
|
|
const handleMouseEnter = () => {
|
|
setOpacity(1);
|
|
};
|
|
|
|
const handleMouseLeave = () => {
|
|
setOpacity(0);
|
|
};
|
|
|
|
const isSpotlight = variant === 'spotlight' || spotlight;
|
|
|
|
return (
|
|
<div
|
|
ref={divRef}
|
|
onMouseMove={handleMouseMove}
|
|
onMouseEnter={handleMouseEnter}
|
|
onMouseLeave={handleMouseLeave}
|
|
data-slot="card"
|
|
className={cn(cardVariants({ variant, padding }), className)}
|
|
{...props}
|
|
>
|
|
{isSpotlight && (
|
|
<div
|
|
className="pointer-events-none absolute -inset-px opacity-0 transition duration-[var(--sumi-duration-normal)]"
|
|
style={{
|
|
opacity,
|
|
background: `radial-gradient(600px circle at ${position.x}px ${position.y}px, ${spotlightColor}, transparent 40%)`,
|
|
}}
|
|
/>
|
|
)}
|
|
<div className="relative z-10 w-full h-full flex flex-col">{props.children}</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function CardHeader({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-slot="card-header"
|
|
className={cn(
|
|
'flex flex-col gap-1.5 p-6 pb-0',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function CardTitle({ className, ...props }: React.ComponentProps<'h3'>) {
|
|
return (
|
|
<h3
|
|
data-slot="card-title"
|
|
className={cn('text-lg font-semibold leading-tight tracking-tight text-foreground', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function CardDescription({ className, ...props }: React.ComponentProps<'p'>) {
|
|
return (
|
|
<p
|
|
data-slot="card-description"
|
|
className={cn('text-sm text-muted-foreground/90', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function CardAction({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-slot="card-action"
|
|
className={cn(
|
|
'absolute top-4 right-4',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function CardContent({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-slot="card-content"
|
|
className={cn('p-6 pt-4', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function CardFooter({ className, ...props }: React.ComponentProps<'div'>) {
|
|
return (
|
|
<div
|
|
data-slot="card-footer"
|
|
className={cn('flex items-center gap-3 p-6 pt-0', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export {
|
|
Card,
|
|
CardHeader,
|
|
CardFooter,
|
|
CardTitle,
|
|
CardAction,
|
|
CardDescription,
|
|
CardContent,
|
|
cardVariants,
|
|
}
|