1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 20:39:08 +01:00
metamask-extension/ui/components/component-library/button-base/button-base.js
2023-02-22 09:42:06 -08:00

167 lines
4.2 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import Box from '../../ui/box';
import { Icon, ICON_NAMES } from '../icon';
import { Text } from '../text';
import {
AlignItems,
DISPLAY,
JustifyContent,
TextColor,
TextVariant,
Size,
BorderRadius,
BackgroundColor,
} from '../../../helpers/constants/design-system';
import { BUTTON_BASE_SIZES } from './button-base.constants';
export const ButtonBase = ({
as = 'button',
block,
children,
className,
href,
size = BUTTON_BASE_SIZES.MD,
startIconName,
startIconProps,
endIconName,
endIconProps,
loading,
disabled,
iconLoadingProps,
textProps,
...props
}) => {
const Tag = href ? 'a' : as;
return (
<Box
as={Tag}
backgroundColor={BackgroundColor.backgroundAlternative}
color={TextColor.textDefault}
href={href}
paddingLeft={4}
paddingRight={4}
className={classnames(
'mm-button-base',
{
[`mm-button-base--size-${size}`]:
Object.values(BUTTON_BASE_SIZES).includes(size),
'mm-button-base--loading': loading,
'mm-button-base--disabled': disabled,
'mm-button-base--block': block,
},
className,
)}
disabled={disabled}
display={DISPLAY.INLINE_FLEX}
justifyContent={JustifyContent.center}
alignItems={AlignItems.center}
borderRadius={BorderRadius.pill}
{...props}
>
<Text
as="span"
className="mm-button-base__content"
justifyContent={JustifyContent.center}
alignItems={AlignItems.center}
gap={2}
variant={TextVariant.bodyMd}
color={TextColor.inherit}
{...textProps}
>
{startIconName && (
<Icon name={startIconName} size={Size.SM} {...startIconProps} />
)}
{children}
{endIconName && (
<Icon name={endIconName} size={Size.SM} {...endIconProps} />
)}
</Text>
{loading && (
<Icon
className="mm-button-base__icon-loading"
name={ICON_NAMES.LOADING}
size={Size.MD}
{...iconLoadingProps}
/>
)}
</Box>
);
};
ButtonBase.propTypes = {
/**
* The polymorphic `as` prop allows you to change the root HTML element of the Button component between `button` and `a` tag
*/
as: PropTypes.string,
/**
* Boolean prop to quickly activate box prop display block
*/
block: PropTypes.bool,
/**
* Additional props to pass to the Text component that wraps the button children
*/
buttonTextProps: PropTypes.shape(Text.PropTypes),
/**
* The children to be rendered inside the ButtonBase
*/
children: PropTypes.node,
/**
* An additional className to apply to the ButtonBase.
*/
className: PropTypes.string,
/**
* Boolean to disable button
*/
disabled: PropTypes.bool,
/**
* When an `href` prop is passed, ButtonBase will automatically change the root element to be an `a` (anchor) tag
*/
href: PropTypes.string,
/**
* Add icon to start (left side) of button text passing icon name
* The name of the icon to display. Should be one of ICON_NAMES
*/
startIconName: PropTypes.oneOf(Object.values(ICON_NAMES)),
/**
* iconProps accepts all the props from Icon
*/
startIconProps: PropTypes.shape(Icon.PropTypes),
/**
* Add icon to end (right side) of button text passing icon name
* The name of the icon to display. Should be one of ICON_NAMES
*/
endIconName: PropTypes.oneOf(Object.values(ICON_NAMES)),
/**
* iconProps accepts all the props from Icon
*/
endIconProps: PropTypes.shape(Icon.PropTypes),
/**
* iconLoadingProps accepts all the props from Icon
*/
iconLoadingProps: PropTypes.shape(Icon.PropTypes),
/**
* Boolean to show loading spinner in button
*/
loading: PropTypes.bool,
/**
* The size of the ButtonBase.
* Possible values could be 'Size.SM'(32px), 'Size.MD'(40px), 'Size.LG'(48px),
*/
size: PropTypes.oneOfType([
PropTypes.shape(BUTTON_BASE_SIZES),
PropTypes.string,
]),
/**
* textProps accepts all the props from Icon
*/
textProps: PropTypes.shape(Text.PropTypes),
/**
* ButtonBase accepts all the props from Box
*/
...Box.propTypes,
};