@material-ui/core
Version:
React components that implement Google's Material Design.
130 lines (114 loc) • 3.18 kB
JavaScript
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import withStyles from '../styles/withStyles';
import ListItem from '../ListItem';
export const styles = theme => ({
/* Styles applied to the root element. */
root: _extends({}, theme.typography.body1, {
minHeight: 48,
paddingTop: 6,
paddingBottom: 6,
boxSizing: 'border-box',
width: 'auto',
overflow: 'hidden',
whiteSpace: 'nowrap',
[theme.breakpoints.up('sm')]: {
minHeight: 'auto'
}
}),
// TODO v5: remove
/* Styles applied to the root element if `disableGutters={false}`. */
gutters: {},
/* Styles applied to the root element if `selected={true}`. */
selected: {},
/* Styles applied to the root element if dense. */
dense: _extends({}, theme.typography.body2, {
minHeight: 'auto'
})
});
const MenuItem = /*#__PURE__*/React.forwardRef(function MenuItem(props, ref) {
const {
classes,
className,
component = 'li',
disableGutters = false,
ListItemClasses,
role = 'menuitem',
selected,
tabIndex: tabIndexProp
} = props,
other = _objectWithoutPropertiesLoose(props, ["classes", "className", "component", "disableGutters", "ListItemClasses", "role", "selected", "tabIndex"]);
let tabIndex;
if (!props.disabled) {
tabIndex = tabIndexProp !== undefined ? tabIndexProp : -1;
}
return /*#__PURE__*/React.createElement(ListItem, _extends({
button: true,
role: role,
tabIndex: tabIndex,
component: component,
selected: selected,
disableGutters: disableGutters,
classes: _extends({
dense: classes.dense
}, ListItemClasses),
className: clsx(classes.root, className, selected && classes.selected, !disableGutters && classes.gutters),
ref: ref
}, other));
});
process.env.NODE_ENV !== "production" ? MenuItem.propTypes = {
/**
* Menu item contents.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css) 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 HTML element or a component.
*/
component: PropTypes
/* @typescript-to-proptypes-ignore */
.elementType,
/**
* 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,
/**
* `classes` prop applied to the [`ListItem`](/api/list-item/) element.
*/
ListItemClasses: PropTypes.object,
/**
* @ignore
*/
role: PropTypes.string,
/**
* @ignore
*/
selected: PropTypes.bool,
/**
* @ignore
*/
tabIndex: PropTypes.number
} : void 0;
export default withStyles(styles, {
name: 'MuiMenuItem'
})(MenuItem);