mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-11-29 02:38:00 +08:00
85 lines
3.1 KiB
TypeScript
85 lines
3.1 KiB
TypeScript
import { Progress } from '@/components/ui/progress';
|
|
import * as React from 'react';
|
|
import { Slot } from '@radix-ui/react-slot';
|
|
import { cva, type VariantProps } from 'class-variance-authority';
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const buttonVariants = cva(
|
|
'inline-flex items-center justify-center gap-2 whitespace-nowrap disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-border-theme-thick focus-visible:ring-border-theme-thick-hover focus-visible:ring-[0.5px] aria-invalid:ring-border-error-thick aria-invalid:border-border-error-thick-hover',
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default:
|
|
'bg-fill-theme-thick text-text-on-fill hover:bg-fill-theme-thick-hover disabled:bg-fill-content-hover disabled:text-text-tertiary',
|
|
destructive:
|
|
'bg-fill-error-thick text-text-on-fill hover:bg-fill-error-thick-hover focus-visible:ring-border-error-thick disabled:bg-fill-content-hover disabled:text-text-tertiary',
|
|
outline:
|
|
'border border-border-primary bg-fill-content text-text-primary hover:bg-fill-content-hover hover:border-border-primary-hover disabled:text-text-tertiary',
|
|
'destructive-outline':
|
|
'bg-fill-content text-text-error hover:bg-fill-error-select hover:text-text-error-hover border border-border-error-thick hover:border-border-error-thick-hover disabled:text-text-tertiary disabled:border-border-primary',
|
|
ghost:
|
|
'hover:bg-fill-content-hover text-text-primary disabled:bg-fill-content disabled:text-text-tertiary',
|
|
link: 'hover:bg-fill-content text-text-action hover:text-text-action-hover !h-fit',
|
|
loading: 'opacity-50 cursor-not-allowed',
|
|
},
|
|
size: {
|
|
sm: 'h-7 text-sm px-4 rounded-300 gap-2 font-normal',
|
|
default: 'h-8 text-sm px-4 rounded-300 gap-2 font-normal',
|
|
lg: 'h-10 rounded-400 text-sm px-4 gap-2 font-medium',
|
|
xl: 'h-14 rounded-500 px-4 text-xl gap-2 font-medium',
|
|
icon: 'size-7 p-1 text-icon-primary disabled:text-icon-tertiary',
|
|
'icon-lg': 'size-10 p-[10px] text-icon-primary disabled:text-icon-tertiary',
|
|
},
|
|
loading: {
|
|
true: 'opacity-70 cursor-not-allowed hover:bg-fill-theme-thick',
|
|
false: '',
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: 'default',
|
|
size: 'default',
|
|
loading: false,
|
|
},
|
|
},
|
|
);
|
|
|
|
const Button = React.forwardRef<HTMLButtonElement, React.ComponentProps<'button'> &
|
|
VariantProps<typeof buttonVariants> & {
|
|
asChild?: boolean;
|
|
}>(({
|
|
className,
|
|
variant,
|
|
size,
|
|
loading,
|
|
asChild = false,
|
|
children,
|
|
...props
|
|
}, ref) => {
|
|
const Comp = asChild ? Slot : 'button';
|
|
|
|
return (
|
|
<Comp
|
|
ref={ref}
|
|
data-slot="button"
|
|
className={cn(buttonVariants({ variant, size, className, loading }))}
|
|
onClick={e => {
|
|
if (loading) return;
|
|
if (props.onClick) {
|
|
props.onClick(e);
|
|
}
|
|
}}
|
|
{...props}
|
|
>
|
|
{loading && (
|
|
// eslint-disable-next-line
|
|
// @ts-ignore
|
|
<Progress variant={variant} />
|
|
)}
|
|
{children}
|
|
</Comp>
|
|
);
|
|
});
|
|
|
|
export { Button, buttonVariants };
|