UNPKG

@activelylearn/material-ui

Version:

Material-UI's workspace package

217 lines (200 loc) 5.71 kB
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import withStyles from '../styles/withStyles'; import ButtonBase from '../ButtonBase'; import { isMuiElement } from '../utils/reactHelpers'; export const styles = theme => ({ root: { display: 'flex', justifyContent: 'flex-start', alignItems: 'center', position: 'relative', textDecoration: 'none', width: '100%', boxSizing: 'border-box', textAlign: 'left', }, container: { position: 'relative', }, focusVisible: { backgroundColor: theme.palette.action.hover, }, default: { paddingTop: 12, paddingBottom: 12, }, dense: { paddingTop: theme.spacing.unit, paddingBottom: theme.spacing.unit, }, disabled: { opacity: 0.5, }, divider: { borderBottom: `1px solid ${theme.palette.divider}`, backgroundClip: 'padding-box', }, gutters: theme.mixins.gutters(), button: { transition: theme.transitions.create('background-color', { duration: theme.transitions.duration.shortest, }), '&:hover': { textDecoration: 'none', backgroundColor: theme.palette.action.hover, // Reset on touch devices, it doesn't add specificity '@media (hover: none)': { backgroundColor: 'transparent', }, }, }, secondaryAction: { // Add some space to avoid collision as `ListItemSecondaryAction` // is absolutely positionned. paddingRight: theme.spacing.unit * 4, }, }); class ListItem extends React.Component { getChildContext() { return { dense: this.props.dense || this.context.dense || false, }; } render() { const { button, children: childrenProp, classes, className: classNameProp, component: componentProp, ContainerComponent, ContainerProps: { className: ContainerClassName, ...ContainerProps } = {}, dense, disabled, disableGutters, divider, focusVisibleClassName, ...other } = this.props; const isDense = dense || this.context.dense || false; const children = React.Children.toArray(childrenProp); const hasAvatar = children.some(value => isMuiElement(value, ['ListItemAvatar'])); const hasSecondaryAction = children.length && isMuiElement(children[children.length - 1], ['ListItemSecondaryAction']); const className = classNames( classes.root, isDense || hasAvatar ? classes.dense : classes.default, { [classes.gutters]: !disableGutters, [classes.divider]: divider, [classes.disabled]: disabled, [classes.button]: button, [classes.secondaryAction]: hasSecondaryAction, }, classNameProp, ); const componentProps = { className, disabled, ...other }; let Component = componentProp || 'li'; if (button) { componentProps.component = componentProp || 'div'; componentProps.focusVisibleClassName = classNames( classes.focusVisible, focusVisibleClassName, ); Component = ButtonBase; } if (hasSecondaryAction) { // Use div by default. Component = !componentProps.component && !componentProp ? 'div' : Component; // Avoid nesting of li > li. if (ContainerComponent === 'li') { if (Component === 'li') { Component = 'div'; } else if (componentProps.component === 'li') { componentProps.component = 'div'; } } return ( <ContainerComponent className={classNames(classes.container, ContainerClassName)} {...ContainerProps} > <Component {...componentProps}>{children}</Component> {children.pop()} </ContainerComponent> ); } return <Component {...componentProps}>{children}</Component>; } } ListItem.propTypes = { /** * If `true`, the list item will be a button (using `ButtonBase`). */ button: PropTypes.bool, /** * The content of the component. */ children: PropTypes.node, /** * 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 component used for the root node. * Either a string to use a DOM element or a component. * By default, it's a `li` when `button` is `false` and a `div` when `button` is `true`. */ component: PropTypes.oneOfType([PropTypes.string, PropTypes.func]), /** * The container component used when a `ListItemSecondaryAction` is rendered. */ ContainerComponent: PropTypes.oneOfType([PropTypes.string, PropTypes.func]), /** * Properties applied to the container element when the component * is used to display a `ListItemSecondaryAction`. */ ContainerProps: PropTypes.object, /** * If `true`, compact vertical padding designed for keyboard and mouse input will be used. */ dense: PropTypes.bool, /** * @ignore */ disabled: PropTypes.bool, /** * If `true`, the left and right padding is removed. */ disableGutters: PropTypes.bool, /** * If `true`, a 1px light border is added to the bottom of the list item. */ divider: PropTypes.bool, /** * @ignore */ focusVisibleClassName: PropTypes.string, }; ListItem.defaultProps = { button: false, ContainerComponent: 'li', dense: false, disabled: false, disableGutters: false, divider: false, }; ListItem.contextTypes = { dense: PropTypes.bool, }; ListItem.childContextTypes = { dense: PropTypes.bool, }; export default withStyles(styles, { name: 'MuiListItem' })(ListItem);