UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

165 lines (144 loc) 5.04 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray"; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import debounce from '../utils/debounce'; import withStyles from '../styles/withStyles'; import isMuiElement from '../utils/isMuiElement'; export var styles = { /* Styles applied to the root element. */ root: { boxSizing: 'border-box', flexShrink: 0 }, /* Styles applied to the `div` element that wraps the children. */ item: { position: 'relative', display: 'block', // In case it's not rendered with a div. height: '100%', overflow: 'hidden' }, /* Styles applied to an `img` element child, if needed to ensure it covers the item. */ imgFullHeight: { height: '100%', transform: 'translateX(-50%)', position: 'relative', left: '50%' }, /* Styles applied to an `img` element child, if needed to ensure it covers the item. */ imgFullWidth: { width: '100%', position: 'relative', transform: 'translateY(-50%)', top: '50%' } }; var fit = function fit(imgEl, classes) { if (!imgEl || !imgEl.complete) { return; } if (imgEl.width / imgEl.height > imgEl.parentElement.offsetWidth / imgEl.parentElement.offsetHeight) { var _imgEl$classList, _imgEl$classList2; (_imgEl$classList = imgEl.classList).remove.apply(_imgEl$classList, _toConsumableArray(classes.imgFullWidth.split(' '))); (_imgEl$classList2 = imgEl.classList).add.apply(_imgEl$classList2, _toConsumableArray(classes.imgFullHeight.split(' '))); } else { var _imgEl$classList3, _imgEl$classList4; (_imgEl$classList3 = imgEl.classList).remove.apply(_imgEl$classList3, _toConsumableArray(classes.imgFullHeight.split(' '))); (_imgEl$classList4 = imgEl.classList).add.apply(_imgEl$classList4, _toConsumableArray(classes.imgFullWidth.split(' '))); } }; function ensureImageCover(imgEl, classes) { if (!imgEl) { return; } if (imgEl.complete) { fit(imgEl, classes); } else { imgEl.addEventListener('load', function () { fit(imgEl, classes); }); } } var ImageListItem = /*#__PURE__*/React.forwardRef(function ImageListItem(props, ref) { // cols rows default values are for docs only var children = props.children, classes = props.classes, className = props.className, _props$cols = props.cols, cols = _props$cols === void 0 ? 1 : _props$cols, _props$component = props.component, Component = _props$component === void 0 ? 'li' : _props$component, _props$rows = props.rows, rows = _props$rows === void 0 ? 1 : _props$rows, other = _objectWithoutProperties(props, ["children", "classes", "className", "cols", "component", "rows"]); var imgRef = React.useRef(null); React.useEffect(function () { ensureImageCover(imgRef.current, classes); }); React.useEffect(function () { var handleResize = debounce(function () { fit(imgRef.current, classes); }); window.addEventListener('resize', handleResize); return function () { handleResize.clear(); window.removeEventListener('resize', handleResize); }; }, [classes]); return /*#__PURE__*/React.createElement(Component, _extends({ className: clsx(classes.root, className), ref: ref }, other), /*#__PURE__*/React.createElement("div", { className: classes.item }, React.Children.map(children, function (child) { if (! /*#__PURE__*/React.isValidElement(child)) { return null; } if (child.type === 'img' || isMuiElement(child, ['Image'])) { return /*#__PURE__*/React.cloneElement(child, { ref: imgRef }); } return child; }))); }); process.env.NODE_ENV !== "production" ? ImageListItem.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the d.ts file and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * While you can pass any node as children, the main use case is for an img. */ children: PropTypes.node, /** * Override or extend the styles applied to the component. * See [CSS API](#css) below for more details. */ classes: PropTypes.object, /** * @ignore */ className: PropTypes.string, /** * Width of the item in number of grid columns. */ cols: PropTypes.number, /** * 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, /** * Height of the item in number of grid rows. */ rows: PropTypes.number } : void 0; export default withStyles(styles, { name: 'MuiImageListItem' })(ImageListItem);