|
| 1 | +import { type VariantProps, cva } from 'class-variance-authority'; |
| 2 | +import * as React from 'react'; |
| 3 | +import { Pressable } from 'react-native'; |
| 4 | +import { TextClassContext } from './Text'; |
| 5 | +import { cn } from './utils'; |
| 6 | + |
| 7 | +const buttonVariants = cva( |
| 8 | + 'group flex items-center justify-center rounded-md web:ring-offset-background web:transition-colors web:focus-visible:outline-none web:focus-visible:ring-2 web:focus-visible:ring-ring web:focus-visible:ring-offset-2', |
| 9 | + { |
| 10 | + variants: { |
| 11 | + variant: { |
| 12 | + default: 'bg-primary web:hover:opacity-90 active:opacity-90', |
| 13 | + destructive: 'bg-destructive web:hover:opacity-90 active:opacity-90', |
| 14 | + outline: |
| 15 | + 'border border-input bg-background web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent', |
| 16 | + secondary: 'bg-secondary web:hover:opacity-80 active:opacity-80', |
| 17 | + ghost: |
| 18 | + 'web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent', |
| 19 | + link: 'web:underline-offset-4 web:hover:underline web:focus:underline', |
| 20 | + }, |
| 21 | + size: { |
| 22 | + default: 'h-10 px-4 py-2 native:h-12 native:px-5 native:py-3', |
| 23 | + sm: 'h-9 rounded-md px-3', |
| 24 | + lg: 'h-11 rounded-md px-8 native:h-14', |
| 25 | + icon: 'h-10 w-10', |
| 26 | + }, |
| 27 | + }, |
| 28 | + defaultVariants: { |
| 29 | + variant: 'default', |
| 30 | + size: 'default', |
| 31 | + }, |
| 32 | + } |
| 33 | +); |
| 34 | + |
| 35 | +const buttonTextVariants = cva( |
| 36 | + 'web:whitespace-nowrap text-sm native:text-base font-medium text-foreground web:transition-colors', |
| 37 | + { |
| 38 | + variants: { |
| 39 | + variant: { |
| 40 | + default: 'text-primary-foreground', |
| 41 | + destructive: 'text-destructive-foreground', |
| 42 | + outline: 'group-active:text-accent-foreground', |
| 43 | + secondary: |
| 44 | + 'text-secondary-foreground group-active:text-secondary-foreground', |
| 45 | + ghost: 'group-active:text-accent-foreground', |
| 46 | + link: 'text-primary group-active:underline', |
| 47 | + }, |
| 48 | + size: { |
| 49 | + default: '', |
| 50 | + sm: '', |
| 51 | + lg: 'native:text-lg', |
| 52 | + icon: '', |
| 53 | + }, |
| 54 | + }, |
| 55 | + defaultVariants: { |
| 56 | + variant: 'default', |
| 57 | + size: 'default', |
| 58 | + }, |
| 59 | + } |
| 60 | +); |
| 61 | + |
| 62 | +type ButtonProps = React.ComponentPropsWithoutRef<typeof Pressable> & |
| 63 | + VariantProps<typeof buttonVariants>; |
| 64 | + |
| 65 | +const Button = React.forwardRef< |
| 66 | + React.ElementRef<typeof Pressable>, |
| 67 | + ButtonProps |
| 68 | +>(({ className, variant, size, ...props }, ref) => { |
| 69 | + return ( |
| 70 | + <TextClassContext.Provider |
| 71 | + value={buttonTextVariants({ |
| 72 | + variant, |
| 73 | + size, |
| 74 | + className: 'web:pointer-events-none', |
| 75 | + })} |
| 76 | + > |
| 77 | + <Pressable |
| 78 | + className={cn( |
| 79 | + props.disabled && 'opacity-50 web:pointer-events-none', |
| 80 | + buttonVariants({ variant, size, className }) |
| 81 | + )} |
| 82 | + ref={ref} |
| 83 | + role="button" |
| 84 | + {...props} |
| 85 | + /> |
| 86 | + </TextClassContext.Provider> |
| 87 | + ); |
| 88 | +}); |
| 89 | +Button.displayName = 'Button'; |
| 90 | + |
| 91 | +export { Button, buttonTextVariants, buttonVariants }; |
| 92 | +export type { ButtonProps }; |
0 commit comments