238 lines
5.2 KiB
JavaScript
Executable File
238 lines
5.2 KiB
JavaScript
Executable File
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import cx from 'classnames';
|
|
import Tooltip from '/imports/ui/components/tooltip/component';
|
|
import { styles } from './styles';
|
|
import Icon from '../icon/component';
|
|
import BaseButton from './base/component';
|
|
|
|
const SIZES = [
|
|
'jumbo', 'lg', 'md', 'sm',
|
|
];
|
|
|
|
const COLORS = [
|
|
'default', 'primary', 'danger', 'success', 'dark',
|
|
];
|
|
|
|
const propTypes = {
|
|
...BaseButton.propTypes,
|
|
/**
|
|
* Defines the button size style
|
|
* @type {("lg"|"md"|"sm")}
|
|
* @defaultValue 'md'
|
|
*/
|
|
size: PropTypes.oneOf(SIZES),
|
|
|
|
/**
|
|
* Defines the button color style
|
|
* @type {("default"|"primary"|"danger"|"success")}
|
|
* @defaultValue 'md'
|
|
*/
|
|
color: PropTypes.oneOf(COLORS),
|
|
|
|
/**
|
|
* Defines if the button should be styled as a ghost (outline)
|
|
* @defaultValue false
|
|
*/
|
|
ghost: PropTypes.bool,
|
|
|
|
/**
|
|
* Defines if the button should be styled as circle
|
|
* @defaultValue false
|
|
*/
|
|
circle: PropTypes.bool,
|
|
|
|
/**
|
|
* Defines if the button should have `display: block`
|
|
* @defaultValue false
|
|
*/
|
|
block: PropTypes.bool,
|
|
|
|
/**
|
|
* Defines the button icon
|
|
* @defaultValue undefined
|
|
*/
|
|
icon: PropTypes.string,
|
|
|
|
/**
|
|
* Defines the button icon is on the right side
|
|
* @defaultValue false
|
|
*/
|
|
iconRight: PropTypes.bool,
|
|
|
|
/**
|
|
* Defines the button label should be visible
|
|
* @defaultValue false
|
|
*/
|
|
hideLabel: PropTypes.bool,
|
|
|
|
/**
|
|
* Optional SVG / html object can be passed to the button as an icon
|
|
* Has to be styled before being sent to the Button
|
|
* (e.g width, height, position and percentage-based object's coordinates)
|
|
* @defaultvalue undefined
|
|
*/
|
|
customIcon: PropTypes.node,
|
|
};
|
|
|
|
const defaultProps = {
|
|
...BaseButton.defaultProps,
|
|
size: 'md',
|
|
color: 'default',
|
|
ghost: false,
|
|
circle: false,
|
|
block: false,
|
|
iconRight: false,
|
|
hideLabel: false,
|
|
};
|
|
|
|
export default class Button extends BaseButton {
|
|
_getClassNames() {
|
|
const {
|
|
size,
|
|
color,
|
|
ghost,
|
|
circle,
|
|
block,
|
|
} = this.props;
|
|
|
|
const propClassNames = {};
|
|
|
|
propClassNames[styles.button] = true;
|
|
propClassNames[styles[size]] = true;
|
|
propClassNames[styles[color]] = true;
|
|
propClassNames[styles.ghost] = ghost;
|
|
propClassNames[styles.circle] = circle;
|
|
propClassNames[styles.block] = block;
|
|
|
|
return propClassNames;
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
circle,
|
|
hideLabel,
|
|
label,
|
|
'aria-label': ariaLabel,
|
|
'aria-expanded': ariaExpanded,
|
|
tooltipDistance,
|
|
} = this.props;
|
|
|
|
const renderFuncName = circle ? 'renderCircle' : 'renderDefault';
|
|
|
|
if (hideLabel && !ariaExpanded) {
|
|
const tooltipLabel = label || ariaLabel;
|
|
|
|
return (
|
|
<Tooltip
|
|
tooltipDistance={tooltipDistance}
|
|
title={tooltipLabel}
|
|
>
|
|
{this[renderFuncName]()}
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
return this[renderFuncName]();
|
|
}
|
|
|
|
renderDefault() {
|
|
const {
|
|
className,
|
|
iconRight,
|
|
...otherProps
|
|
} = this.props;
|
|
|
|
const remainingProps = Object.assign({}, otherProps);
|
|
delete remainingProps.icon;
|
|
delete remainingProps.customIcon;
|
|
delete remainingProps.size;
|
|
delete remainingProps.color;
|
|
delete remainingProps.ghost;
|
|
delete remainingProps.circle;
|
|
delete remainingProps.block;
|
|
delete remainingProps.hideLabel;
|
|
delete remainingProps.tooltipDistance;
|
|
|
|
/* TODO: We can change this and make the button with flexbox to avoid html
|
|
changes */
|
|
const renderLeftFuncName = !iconRight ? 'renderIcon' : 'renderLabel';
|
|
const renderRightFuncName = !iconRight ? 'renderLabel' : 'renderIcon';
|
|
|
|
return (
|
|
<BaseButton
|
|
className={cx(this._getClassNames(), className)}
|
|
{...remainingProps}
|
|
>
|
|
{this[renderLeftFuncName]()}
|
|
{this[renderRightFuncName]()}
|
|
</BaseButton>
|
|
);
|
|
}
|
|
|
|
renderCircle() {
|
|
const {
|
|
className,
|
|
size,
|
|
iconRight,
|
|
...otherProps
|
|
} = this.props;
|
|
|
|
const remainingProps = Object.assign({}, otherProps);
|
|
delete remainingProps.icon;
|
|
delete remainingProps.color;
|
|
delete remainingProps.ghost;
|
|
delete remainingProps.circle;
|
|
delete remainingProps.block;
|
|
delete remainingProps.hideLabel;
|
|
delete remainingProps.tooltipDistance;
|
|
|
|
return (
|
|
<BaseButton
|
|
className={cx(styles[size], styles.buttonWrapper, className)}
|
|
{...remainingProps}
|
|
>
|
|
{!iconRight ? null : this.renderLabel()}
|
|
<span className={cx(this._getClassNames())}>
|
|
{this.renderIcon()}
|
|
</span>
|
|
{iconRight ? null : this.renderLabel()}
|
|
</BaseButton>
|
|
);
|
|
}
|
|
|
|
renderIcon() {
|
|
const {
|
|
icon: iconName,
|
|
customIcon,
|
|
} = this.props;
|
|
|
|
if (iconName) {
|
|
return (<Icon className={styles.icon} iconName={iconName} />);
|
|
} if (customIcon) {
|
|
return customIcon;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
renderLabel() {
|
|
const { label, hideLabel } = this.props;
|
|
|
|
const classNames = {};
|
|
|
|
classNames[styles.label] = true;
|
|
classNames[styles.hideLabel] = hideLabel;
|
|
|
|
return (
|
|
<span className={cx(classNames)}>
|
|
{label}
|
|
{this.props.children}
|
|
</span>
|
|
);
|
|
}
|
|
}
|
|
|
|
Button.propTypes = propTypes;
|
|
Button.defaultProps = defaultProps;
|