@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
88 lines (87 loc) • 3.68 kB
JavaScript
import * as React from 'react';
import { Button } from 'rebass';
import join from '../utils/join';
import { allIcons } from '../icons';
import Tooltip from '../Tooltip';
import theme from '../../theme';
import { IconComponent, isAdaptableElementIcon, isAdaptableCustomIcon, isAdaptableSystemIcon, } from '../Icon';
export const baseClassName = 'ab-SimpleButton';
const defaultProps = {
px: null,
py: null,
fontWeight: 'normal',
m: null,
//@ts-ignore
borderRadius: null,
};
const SimpleButton = React.forwardRef((givenProps, theRef) => {
const props = { ...defaultProps, ...givenProps };
let { children, disabled, variant = 'outlined', tone = 'neutral', iconPosition = 'start', iconSize, className, icon, tooltip, accessLevel: accessLevel, type, ...buttonProps } = props;
let adaptableSystemIcon;
if (isAdaptableSystemIcon(icon)) {
adaptableSystemIcon = icon;
}
if (typeof icon === 'string' && allIcons[icon]) {
adaptableSystemIcon = { name: icon };
}
if (adaptableSystemIcon) {
const iconProps = {
icon: adaptableSystemIcon,
};
if (iconSize) {
iconProps.icon = { ...iconProps.icon, size: iconSize };
}
if (typeof buttonProps.color === 'string') {
iconProps.icon = { ...iconProps.icon, style: { color: buttonProps.color } };
}
icon = React.createElement(IconComponent, { ...iconProps });
}
if (isAdaptableCustomIcon(icon) || isAdaptableElementIcon(icon)) {
icon = React.createElement(IconComponent, { icon: icon });
}
if (icon) {
children =
iconPosition === 'start' ? (React.createElement(React.Fragment, null,
icon,
children)) : (React.createElement(React.Fragment, null,
children,
icon));
}
if (buttonProps.as == 'div') {
// we have some cases when we want to nest a SimpleButton inside an html Button
// so the SimpleButton cannot render a <button> tag
// so we want it to be a DIV tag
// but still keep the same keyboard accessibility
buttonProps.tabIndex = buttonProps.tabIndex === undefined ? 0 : buttonProps.tabIndex;
buttonProps.role = buttonProps.role || 'button';
const onKeyDown = buttonProps.onKeyDown;
buttonProps.onKeyDown = (e) => {
const key = e.key;
if (buttonProps.onClick && key === 'Enter') {
buttonProps.onClick(e);
}
if (onKeyDown) {
onKeyDown(e);
}
};
}
if (!buttonProps.as || buttonProps.as === 'button') {
buttonProps.type = type ? type : 'button';
buttonProps.as = 'button';
}
if (accessLevel === 'Hidden') {
return null;
}
if (accessLevel === 'ReadOnly') {
disabled = true;
}
// for whatever reason, even if fontWeight is present in buttonProps
// and sent to rebass, styled-components/rebass does not honour it
// so we had to send it via css
const fontWeight = buttonProps.fontWeight
? theme[buttonProps.fontWeight] ?? buttonProps.fontWeight ?? 'normal'
: 'normal';
const btn = (React.createElement(Button, { ...buttonProps, disabled: disabled, className: join(className, baseClassName, disabled ? `${baseClassName}--disabled` : '', fontWeight ? `${baseClassName}--font-weight=${fontWeight}` : '', `${baseClassName}--variant-${variant}`, `${baseClassName}--tone-${tone}`), ref: theRef }, children));
return tooltip ? React.createElement(Tooltip, { label: tooltip }, btn) : btn;
});
export default SimpleButton;