UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

189 lines (171 loc) 5.25 kB
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import _extends from "@babel/runtime/helpers/esm/extends"; const _excluded = ["children", "className", "cols", "component", "rows", "style"]; import { unstable_composeClasses as composeClasses } from '@mui/base'; import { integerPropType } from '@mui/utils'; import clsx from 'clsx'; import PropTypes from 'prop-types'; import * as React from 'react'; import { isFragment } from 'react-is'; import ImageListContext from '../ImageList/ImageListContext'; import styled from '../styles/styled'; import useThemeProps from '../styles/useThemeProps'; import isMuiElement from '../utils/isMuiElement'; import imageListItemClasses, { getImageListItemUtilityClass } from './imageListItemClasses'; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { classes, variant } = ownerState; const slots = { root: ['root', variant], img: ['img'] }; return composeClasses(slots, getImageListItemUtilityClass, classes); }; const ImageListItemRoot = styled('li', { name: 'MuiImageListItem', slot: 'Root', overridesResolver: (props, styles) => { const { ownerState } = props; return [{ [`& .${imageListItemClasses.img}`]: styles.img }, styles.root, styles[ownerState.variant]]; } })(({ ownerState }) => _extends({ display: 'inline-block', position: 'relative', lineHeight: 0 }, ownerState.variant === 'standard' && { // For titlebar under list item display: 'flex', flexDirection: 'column' }, ownerState.variant === 'woven' && { height: '100%', alignSelf: 'center', '&:nth-of-type(even)': { height: '70%' } }, { [`& .${imageListItemClasses.img}`]: _extends({ objectFit: 'cover', width: '100%', height: '100%' }, ownerState.variant === 'standard' && { height: 'auto', flexGrow: 1 }) })); const ImageListItem = /*#__PURE__*/React.forwardRef(function ImageListItem(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'MuiImageListItem' }); // TODO: - Use jsdoc @default?: "cols rows default values are for docs only" const { children, className, cols = 1, component = 'li', rows = 1, style } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const { rowHeight = 'auto', gap, variant } = React.useContext(ImageListContext); let height = 'auto'; if (variant === 'woven') { height = undefined; } else if (rowHeight !== 'auto') { height = rowHeight * rows + gap * (rows - 1); } const ownerState = _extends({}, props, { cols, component, gap, rowHeight, rows, variant }); const classes = useUtilityClasses(ownerState); return /*#__PURE__*/_jsx(ImageListItemRoot, _extends({ as: component, className: clsx(classes.root, classes[variant], className), ref: ref, style: _extends({ height, gridColumnEnd: variant !== 'masonry' ? `span ${cols}` : undefined, gridRowEnd: variant !== 'masonry' ? `span ${rows}` : undefined, marginBottom: variant === 'masonry' ? gap : undefined }, style), ownerState: ownerState }, other, { children: React.Children.map(children, child => { if (! /*#__PURE__*/React.isValidElement(child)) { return null; } if (process.env.NODE_ENV !== 'production') { if (isFragment(child)) { console.error(["MUI: The ImageListItem component doesn't accept a Fragment as a child.", 'Consider providing an array instead.'].join('\n')); } } if (child.type === 'img' || isMuiElement(child, ['Image'])) { return /*#__PURE__*/React.cloneElement(child, { className: clsx(classes.img, child.props.className) }); } return child; }) })); }); process.env.NODE_ENV !== "production" ? ImageListItem.propTypes /* remove-proptypes */ = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the d.ts file and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * The content of the component, normally an `<img>`. */ children: PropTypes.node, /** * Override or extend the styles applied to the component. */ classes: PropTypes.object, /** * @ignore */ className: PropTypes.string, /** * Width of the item in number of grid columns. * @default 1 */ cols: integerPropType, /** * The component used for the root node. * Either a string to use a HTML element or a component. */ component: PropTypes.elementType, /** * Height of the item in number of grid rows. * @default 1 */ rows: integerPropType, /** * @ignore */ style: PropTypes.object, /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]) } : void 0; export default ImageListItem;