Portal/rsconcept/frontend/src/components/control/button.tsx
2025-04-13 22:28:28 +03:00

63 lines
1.6 KiB
TypeScript

import { globalIDs } from '@/utils/constants';
import { type Button as ButtonStyle, type Control } from '../props';
import { cn } from '../utils';
interface ButtonProps extends Control, ButtonStyle {
/** Icon to display first. */
icon?: React.ReactNode;
/** Text to display second. */
text?: string;
/** Indicates whether to render the button in a dense style. */
dense?: boolean;
/** Indicates loading state to prevent interactions and change visual style. */
loading?: boolean;
}
/**
* Customizable `button` with text, icon, tooltips and various styles.
*/
export function Button({
icon,
text,
title,
titleHtml,
hideTitle,
loading,
dense,
disabled,
noBorder,
noOutline,
className,
...restProps
}: ButtonProps) {
return (
<button
type='button'
className={cn(
'inline-flex gap-2 items-center justify-center',
'font-medium select-none disabled:cursor-auto disabled:opacity-75',
'bg-secondary text-secondary-foreground cc-hover cc-animate-color',
dense ? 'px-1' : 'px-3 py-1',
loading ? 'cursor-progress' : 'cursor-pointer',
noOutline ? 'outline-hidden focus-visible:bg-selected' : 'focus-outline',
!noBorder && 'border rounded-sm',
className
)}
data-tooltip-id={!!title || !!titleHtml ? globalIDs.tooltip : undefined}
data-tooltip-html={titleHtml}
data-tooltip-content={title}
data-tooltip-hidden={hideTitle}
disabled={disabled ?? loading}
aria-label={!text ? title : undefined}
{...restProps}
>
{icon ? icon : null}
{text ? <span>{text}</span> : null}
</button>
);
}