57 lines
1.1 KiB
TypeScript
57 lines
1.1 KiB
TypeScript
import React from '../../lib/teact/teact';
|
|
|
|
import type { FC } from '../../lib/teact/teact';
|
|
import type { OwnProps as ButtonProps } from './Button';
|
|
|
|
import buildClassName from '../../util/buildClassName';
|
|
import useLang from '../../hooks/useLang';
|
|
|
|
import Button from './Button';
|
|
|
|
import './FloatingActionButton.scss';
|
|
|
|
type OwnProps = {
|
|
isShown: boolean;
|
|
className?: string;
|
|
color?: ButtonProps['color'];
|
|
ariaLabel?: ButtonProps['ariaLabel'];
|
|
disabled?: boolean;
|
|
onClick: () => void;
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
const FloatingActionButton: FC<OwnProps> = ({
|
|
isShown,
|
|
className,
|
|
color = 'primary',
|
|
ariaLabel,
|
|
disabled,
|
|
onClick,
|
|
children,
|
|
}) => {
|
|
const lang = useLang();
|
|
|
|
const buttonClassName = buildClassName(
|
|
'FloatingActionButton',
|
|
isShown && 'revealed',
|
|
className,
|
|
);
|
|
|
|
return (
|
|
<Button
|
|
className={buttonClassName}
|
|
color={color}
|
|
round
|
|
disabled={disabled}
|
|
onClick={isShown && !disabled ? onClick : undefined}
|
|
ariaLabel={ariaLabel}
|
|
tabIndex={-1}
|
|
isRtl={lang.isRtl}
|
|
>
|
|
{children}
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export default FloatingActionButton;
|