File size: 1,998 Bytes
f2e9a59 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | 'use client';
import {
ButtonHTMLAttributes,
DetailedHTMLProps,
FC,
useEffect,
useRef,
useState,
} from 'react';
import { clsx } from 'clsx';
const ReactLoading = ({ color = '#fff', width = 20, height = 20 }: { type?: string; color?: string; width?: number; height?: number }) => {
const size = Math.min(width, height);
const borderWidth = Math.max(2, Math.round(size / 8));
return (
<div
style={{
width: size,
height: size,
border: `${borderWidth}px solid transparent`,
borderTopColor: color,
borderRadius: '50%',
animation: 'spin 0.8s linear infinite',
}}
/>
);
};
export const Button: FC<
DetailedHTMLProps<
ButtonHTMLAttributes<HTMLButtonElement>,
HTMLButtonElement
> & {
secondary?: boolean;
loading?: boolean;
innerClassName?: string;
}
> = ({ children, loading, innerClassName, secondary, ...props }) => {
const ref = useRef<HTMLButtonElement | null>(null);
const [height, setHeight] = useState<number | null>(null);
useEffect(() => {
setHeight(ref.current?.offsetHeight || 40);
}, []);
return (
<button
{...props}
type={props.type || 'button'}
ref={ref}
className={clsx(
(props.disabled || loading) && 'opacity-50 pointer-events-none',
`${
secondary ? 'bg-third' : 'bg-forth text-white'
} px-[24px] h-[40px] cursor-pointer items-center justify-center flex relative`,
props?.className
)}
>
{loading && (
<div className="absolute inset-0 flex items-center justify-center">
<ReactLoading
type="spin"
color="#fff"
width={height! / 2}
height={height! / 2}
/>
</div>
)}
<div
className={clsx(
innerClassName,
'flex-1 items-center justify-center flex',
loading && 'invisible'
)}
>
{children}
</div>
</button>
);
};
|