POWR/components/ui/button.tsx
2025-02-12 12:55:51 -05:00

99 lines
3.3 KiB
TypeScript

// lib/constants.ts - First update the CUSTOM_COLORS
export const CUSTOM_COLORS = {
purple: '#8B5CF6',
purplePressed: '#7C3AED', // Slightly darker for pressed state
orange: '#F97316'
} as const;
// components/ui/button.tsx
import { cva, type VariantProps } from 'class-variance-authority';
import * as React from 'react';
import { Pressable } from 'react-native';
import { TextClassContext } from '@/components/ui/text';
import { cn } from '@/lib/utils';
const buttonVariants = cva(
'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',
{
variants: {
variant: {
default: 'bg-primary web:hover:opacity-90 active:opacity-90',
destructive: 'bg-destructive web:hover:opacity-90 active:opacity-90',
outline:
'border border-input bg-background web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent',
secondary: 'bg-secondary web:hover:opacity-80 active:opacity-80',
ghost: 'web:hover:bg-accent web:hover:text-accent-foreground active:bg-accent',
link: 'web:underline-offset-4 web:hover:underline web:focus:underline',
purple: 'bg-[hsl(var(--purple))] text-white hover:bg-[hsl(var(--purple-pressed))]',
},
size: {
default: 'h-10 px-4 py-2 native:h-12 native:px-5 native:py-3',
sm: 'h-9 rounded-md px-3',
lg: 'h-11 rounded-md px-8 native:h-14',
icon: 'h-10 w-10',
},
},
defaultVariants: {
variant: 'default',
size: 'default',
},
}
);
const buttonTextVariants = cva(
'web:whitespace-nowrap text-sm native:text-base font-medium text-foreground web:transition-colors',
{
variants: {
variant: {
default: 'text-primary-foreground',
destructive: 'text-destructive-foreground',
outline: 'group-active:text-accent-foreground',
secondary: 'text-secondary-foreground group-active:text-secondary-foreground',
ghost: 'group-active:text-accent-foreground',
link: 'text-primary group-active:underline',
purple: 'text-white', // Added purple variant text color
},
size: {
default: '',
sm: '',
lg: 'native:text-lg',
icon: '',
},
},
defaultVariants: {
variant: 'default',
size: 'default',
},
}
);
// Rest of the code remains the same
type ButtonProps = React.ComponentPropsWithoutRef<typeof Pressable> &
VariantProps<typeof buttonVariants>;
const Button = React.forwardRef<React.ElementRef<typeof Pressable>, ButtonProps>(
({ className, variant, size, ...props }, ref) => {
return (
<TextClassContext.Provider
value={cn(
props.disabled && 'web:pointer-events-none',
buttonTextVariants({ variant, size })
)}
>
<Pressable
className={cn(
props.disabled && 'opacity-50 web:pointer-events-none',
buttonVariants({ variant, size, className })
)}
ref={ref}
role='button'
{...props}
/>
</TextClassContext.Provider>
);
}
);
Button.displayName = 'Button';
export { Button, buttonTextVariants, buttonVariants };
export type { ButtonProps };