UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

143 lines (129 loc) 4.07 kB
import _extends from "@babel/runtime/helpers/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/objectWithoutPropertiesLoose"; import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { componentPropType } from '@material-ui/utils'; import withStyles from '../styles/withStyles'; import { capitalize } from '../utils/helpers'; const RADIUS = 11; export const styles = theme => ({ /* Styles applied to the root element. */ root: { position: 'relative', display: 'inline-flex', // For correct alignment with the text. verticalAlign: 'middle' }, /* Styles applied to the badge `span` element. */ badge: { display: 'flex', flexDirection: 'row', flexWrap: 'wrap', justifyContent: 'center', alignContent: 'center', alignItems: 'center', position: 'absolute', top: -RADIUS, right: -RADIUS, fontFamily: theme.typography.fontFamily, fontWeight: theme.typography.fontWeight, fontSize: theme.typography.pxToRem(12), width: RADIUS * 2, height: RADIUS * 2, borderRadius: '50%', backgroundColor: theme.palette.color, color: theme.palette.textColor, zIndex: 1, // Render the badge on top of potential ripples. transition: theme.transitions.create('transform', { easing: theme.transitions.easing.easeInOut, duration: theme.transitions.duration.enteringScreen }), transform: 'scale(1)' }, /* Styles applied to the root element if `color="primary"`. */ colorPrimary: { backgroundColor: theme.palette.primary.main, color: theme.palette.primary.contrastText }, /* Styles applied to the root element if `color="secondary"`. */ colorSecondary: { backgroundColor: theme.palette.secondary.main, color: theme.palette.secondary.contrastText }, /* Styles applied to the root element if `color="error"`. */ colorError: { backgroundColor: theme.palette.error.main, color: theme.palette.error.contrastText }, /* Styles applied to the badge `span` element if `invisible={true}`. */ invisible: { transition: theme.transitions.create('transform', { easing: theme.transitions.easing.easeInOut, duration: theme.transitions.duration.leavingScreen }), transform: 'scale(0)' } }); function Badge(props) { const { badgeContent, children, classes, className, color, component: ComponentProp, invisible } = props, other = _objectWithoutPropertiesLoose(props, ["badgeContent", "children", "classes", "className", "color", "component", "invisible"]); const badgeClassName = classNames(classes.badge, { [classes[`color${capitalize(color)}`]]: color !== 'default', [classes.invisible]: invisible }); return React.createElement(ComponentProp, _extends({ className: classNames(classes.root, className) }, other), children, React.createElement("span", { className: badgeClassName }, badgeContent)); } process.env.NODE_ENV !== "production" ? Badge.propTypes = { /** * The content rendered within the badge. */ badgeContent: PropTypes.node.isRequired, /** * The badge will be added relative to this node. */ children: PropTypes.node.isRequired, /** * Override or extend the styles applied to the component. * See [CSS API](#css-api) below for more details. */ classes: PropTypes.object.isRequired, /** * @ignore */ className: PropTypes.string, /** * The color of the component. It supports those theme colors that make sense for this component. */ color: PropTypes.oneOf(['default', 'primary', 'secondary', 'error']), /** * The component used for the root node. * Either a string to use a DOM element or a component. */ component: componentPropType, /** * If `true`, the badge will be invisible. */ invisible: PropTypes.bool } : void 0; Badge.defaultProps = { color: 'default', component: 'span', invisible: false }; export default withStyles(styles, { name: 'MuiBadge' })(Badge);