UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

149 lines (134 loc) 3.87 kB
import _extends from "@babel/runtime/helpers/builtin/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/builtin/objectWithoutProperties"; import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import withStyles from '../styles/withStyles'; import Typography from '../Typography'; export const styles = theme => ({ root: { flex: '1 1 auto', minWidth: 0, padding: `0 ${theme.spacing.unit * 2}px`, '&:first-child': { paddingLeft: 0 } }, inset: { '&:first-child': { paddingLeft: theme.spacing.unit * 7 } }, dense: { fontSize: theme.typography.pxToRem(13) }, primary: { '&$textDense': { fontSize: 'inherit' } }, secondary: { '&$textDense': { fontSize: 'inherit' } }, textDense: {} }); function ListItemText(props, context) { const { children, classes, className: classNameProp, disableTypography, inset, primary: primaryProp, primaryTypographyProps, secondary: secondaryProp, secondaryTypographyProps } = props, other = _objectWithoutProperties(props, ["children", "classes", "className", "disableTypography", "inset", "primary", "primaryTypographyProps", "secondary", "secondaryTypographyProps"]); const { dense } = context; let primary = primaryProp != null ? primaryProp : children; if (primary != null && primary.type !== Typography && !disableTypography) { primary = React.createElement(Typography, _extends({ variant: "subheading", className: classNames(classes.primary, { [classes.textDense]: dense }), component: "span" }, primaryTypographyProps), primary); } let secondary = secondaryProp; if (secondary != null && secondary.type !== Typography && !disableTypography) { secondary = React.createElement(Typography, _extends({ variant: "body1", className: classNames(classes.secondary, { [classes.textDense]: dense }), color: "textSecondary" }, secondaryTypographyProps), secondary); } return React.createElement("div", _extends({ className: classNames(classes.root, { [classes.dense]: dense, [classes.inset]: inset }, classNameProp) }, other), primary, secondary); } ListItemText.propTypes = process.env.NODE_ENV !== "production" ? { /** * Alias for the `primary` property. */ 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, /** * If `true`, the children won't be wrapped by a Typography component. * This can be useful to render an alternative Typography variant by wrapping * the `children` (or `primary`) text, and optional `secondary` text * with the Typography component. */ disableTypography: PropTypes.bool, /** * If `true`, the children will be indented. * This should be used if there is no left avatar or left icon. */ inset: PropTypes.bool, /** * The main content element. */ primary: PropTypes.node, /** * These props will be forwarded to the primary typography component * (as long as disableTypography is not `true`). */ primaryTypographyProps: PropTypes.object, /** * The secondary content element. */ secondary: PropTypes.node, /** * These props will be forwarded to the secondary typography component * (as long as disableTypography is not `true`). */ secondaryTypographyProps: PropTypes.object } : {}; ListItemText.defaultProps = { disableTypography: false, inset: false }; ListItemText.contextTypes = { dense: PropTypes.bool }; export default withStyles(styles, { name: 'MuiListItemText' })(ListItemText);