93 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// @flow weak
 | 
						|
 | 
						|
import React from 'react';
 | 
						|
import type { Node } from 'react';
 | 
						|
import classNames from 'classnames';
 | 
						|
import withStyles from '../styles/withStyles';
 | 
						|
import { capitalizeFirstLetter } from '../utils/helpers';
 | 
						|
 | 
						|
const RADIUS = 12;
 | 
						|
 | 
						|
export const styles = (theme: Object) => ({
 | 
						|
  root: {
 | 
						|
    position: 'relative',
 | 
						|
    display: 'inline-flex',
 | 
						|
  },
 | 
						|
  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(RADIUS),
 | 
						|
    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.
 | 
						|
  },
 | 
						|
  colorPrimary: {
 | 
						|
    backgroundColor: theme.palette.primary[500],
 | 
						|
    color: theme.palette.getContrastText(theme.palette.primary[500]),
 | 
						|
  },
 | 
						|
  colorAccent: {
 | 
						|
    backgroundColor: theme.palette.secondary.A200,
 | 
						|
    color: theme.palette.getContrastText(theme.palette.secondary.A200),
 | 
						|
  },
 | 
						|
});
 | 
						|
 | 
						|
type ProvidedProps = {
 | 
						|
  classes: Object,
 | 
						|
};
 | 
						|
 | 
						|
export type Props = {
 | 
						|
  /**
 | 
						|
   * The content rendered within the badge.
 | 
						|
   */
 | 
						|
  badgeContent: Node,
 | 
						|
  /**
 | 
						|
   * The badge will be added relative to this node.
 | 
						|
   */
 | 
						|
  children: Node,
 | 
						|
  /**
 | 
						|
   * Useful to extend the style applied to components.
 | 
						|
   */
 | 
						|
  classes?: Object,
 | 
						|
  /**
 | 
						|
   * @ignore
 | 
						|
   */
 | 
						|
  className?: string,
 | 
						|
  /**
 | 
						|
   * The color of the component. It's using the theme palette when that makes sense.
 | 
						|
   */
 | 
						|
  color?: 'default' | 'primary' | 'accent',
 | 
						|
};
 | 
						|
 | 
						|
function Badge(props: ProvidedProps & Props) {
 | 
						|
  const { badgeContent, classes, className: classNameProp, color, children, ...other } = props;
 | 
						|
  const className = classNames(classes.root, classNameProp);
 | 
						|
  const badgeClassName = classNames(classes.badge, {
 | 
						|
    [classes[`color${capitalizeFirstLetter(color)}`]]: color !== 'default',
 | 
						|
  });
 | 
						|
 | 
						|
  return (
 | 
						|
    <div className={className} {...other}>
 | 
						|
      {children}
 | 
						|
      <span className={badgeClassName}>{badgeContent}</span>
 | 
						|
    </div>
 | 
						|
  );
 | 
						|
}
 | 
						|
 | 
						|
Badge.defaultProps = {
 | 
						|
  color: 'default',
 | 
						|
};
 | 
						|
 | 
						|
export default withStyles(styles, { name: 'MuiBadge' })(Badge);
 |