UNPKG

@mui/material

Version:

React components that implement Google's Material Design.

136 lines 4.57 kB
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import _extends from "@babel/runtime/helpers/esm/extends"; const _excluded = ["children", "className", "component", "image", "src", "style"]; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import { chainPropTypes } from '@mui/utils'; import { unstable_composeClasses as composeClasses } from '@mui/base'; import useThemeProps from '../styles/useThemeProps'; import styled from '../styles/styled'; import { getCardMediaUtilityClass } from './cardMediaClasses'; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { classes, isMediaComponent, isImageComponent } = ownerState; const slots = { root: ['root', isMediaComponent && 'media', isImageComponent && 'img'] }; return composeClasses(slots, getCardMediaUtilityClass, classes); }; const CardMediaRoot = styled('div', { name: 'MuiCardMedia', slot: 'Root', overridesResolver: (props, styles) => { const { ownerState } = props; const { isMediaComponent, isImageComponent } = ownerState; return [styles.root, isMediaComponent && styles.media, isImageComponent && styles.img]; } })(({ ownerState }) => _extends({ display: 'block', backgroundSize: 'cover', backgroundRepeat: 'no-repeat', backgroundPosition: 'center' }, ownerState.isMediaComponent && { width: '100%' }, ownerState.isImageComponent && { // ⚠️ object-fit is not supported by IE11. objectFit: 'cover' })); const MEDIA_COMPONENTS = ['video', 'audio', 'picture', 'iframe', 'img']; const IMAGE_COMPONENTS = ['picture', 'img']; const CardMedia = /*#__PURE__*/React.forwardRef(function CardMedia(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'MuiCardMedia' }); const { children, className, component = 'div', image, src, style } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const isMediaComponent = MEDIA_COMPONENTS.indexOf(component) !== -1; const composedStyle = !isMediaComponent && image ? _extends({ backgroundImage: `url("${image}")` }, style) : style; const ownerState = _extends({}, props, { component, isMediaComponent, isImageComponent: IMAGE_COMPONENTS.indexOf(component) !== -1 }); const classes = useUtilityClasses(ownerState); return /*#__PURE__*/_jsx(CardMediaRoot, _extends({ className: clsx(classes.root, className), as: component, role: !isMediaComponent && image ? 'img' : undefined, ref: ref, style: composedStyle, ownerState: ownerState, src: isMediaComponent ? image || src : undefined }, other, { children: children })); }); process.env.NODE_ENV !== "production" ? CardMedia.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. */ children: chainPropTypes(PropTypes.node, props => { if (!props.children && !props.image && !props.src && !props.component) { return new Error('MUI: Either `children`, `image`, `src` or `component` prop must be specified.'); } return null; }), /** * Override or extend the styles applied to the component. */ classes: PropTypes.object, /** * @ignore */ className: PropTypes.string, /** * The component used for the root node. * Either a string to use a HTML element or a component. */ component: PropTypes.elementType, /** * Image to be displayed as a background image. * Either `image` or `src` prop must be specified. * Note that caller must specify height otherwise the image will not be visible. */ image: PropTypes.string, /** * An alias for `image` property. * Available only with media components. * Media components: `video`, `audio`, `picture`, `iframe`, `img`. */ src: PropTypes.string, /** * @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 CardMedia;