forked from akai/readest
51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
import clsx from 'clsx';
|
|
import React from 'react';
|
|
import { useEnv } from '@/context/EnvContext';
|
|
|
|
interface ButtonProps {
|
|
icon: React.ReactNode;
|
|
onClick: () => void;
|
|
disabled?: boolean;
|
|
tooltip?: string;
|
|
tooltipDirection?: 'top' | 'bottom' | 'left' | 'right';
|
|
className?: string;
|
|
}
|
|
|
|
const Button: React.FC<ButtonProps> = ({
|
|
icon,
|
|
onClick,
|
|
disabled = false,
|
|
tooltip,
|
|
tooltipDirection = 'top',
|
|
className,
|
|
}) => {
|
|
const { appService } = useEnv();
|
|
return (
|
|
<div
|
|
className={clsx(
|
|
'lg:tooltip z-50 h-8 min-h-8 w-8',
|
|
tooltip && `lg:tooltip-${tooltipDirection}`,
|
|
{
|
|
'tooltip-hidden': !tooltip,
|
|
},
|
|
)}
|
|
data-tip={tooltip}
|
|
>
|
|
<button
|
|
className={clsx(
|
|
'btn btn-ghost h-8 min-h-8 w-8 p-0',
|
|
appService?.isMobileApp && 'hover:bg-transparent',
|
|
disabled && 'btn-disabled !bg-transparent opacity-50',
|
|
className,
|
|
)}
|
|
onClick={disabled ? undefined : onClick}
|
|
disabled={disabled}
|
|
>
|
|
{icon}
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Button;
|