UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

306 lines (304 loc) 9.34 kB
"use strict"; 'use client'; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); var _clsx = _interopRequireDefault(require("clsx")); var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses")); var _zeroStyled = require("../zero-styled"); var _memoTheme = _interopRequireDefault(require("../utils/memoTheme")); var _DefaultPropsProvider = require("../DefaultPropsProvider"); var _Person = _interopRequireDefault(require("../internal/svg-icons/Person")); var _avatarClasses = require("./avatarClasses"); var _useSlot = _interopRequireDefault(require("../utils/useSlot")); var _jsxRuntime = require("react/jsx-runtime"); const useUtilityClasses = ownerState => { const { classes, variant, colorDefault } = ownerState; const slots = { root: ['root', variant, colorDefault && 'colorDefault'], img: ['img'], fallback: ['fallback'] }; return (0, _composeClasses.default)(slots, _avatarClasses.getAvatarUtilityClass, classes); }; const AvatarRoot = (0, _zeroStyled.styled)('div', { name: 'MuiAvatar', slot: 'Root', overridesResolver: (props, styles) => { const { ownerState } = props; return [styles.root, styles[ownerState.variant], ownerState.colorDefault && styles.colorDefault]; } })((0, _memoTheme.default)(({ theme }) => ({ position: 'relative', display: 'flex', alignItems: 'center', justifyContent: 'center', flexShrink: 0, width: 40, height: 40, fontFamily: theme.typography.fontFamily, fontSize: theme.typography.pxToRem(20), lineHeight: 1, borderRadius: '50%', overflow: 'hidden', userSelect: 'none', variants: [{ props: { variant: 'rounded' }, style: { borderRadius: (theme.vars || theme).shape.borderRadius } }, { props: { variant: 'square' }, style: { borderRadius: 0 } }, { props: { colorDefault: true }, style: { color: (theme.vars || theme).palette.background.default, ...(theme.vars ? { backgroundColor: theme.vars.palette.Avatar.defaultBg } : { backgroundColor: theme.palette.grey[400], ...theme.applyStyles('dark', { backgroundColor: theme.palette.grey[600] }) }) } }] }))); const AvatarImg = (0, _zeroStyled.styled)('img', { name: 'MuiAvatar', slot: 'Img', overridesResolver: (props, styles) => styles.img })({ width: '100%', height: '100%', textAlign: 'center', // Handle non-square image. objectFit: 'cover', // Hide alt text. color: 'transparent', // Hide the image broken icon, only works on Chrome. textIndent: 10000 }); const AvatarFallback = (0, _zeroStyled.styled)(_Person.default, { name: 'MuiAvatar', slot: 'Fallback', overridesResolver: (props, styles) => styles.fallback })({ width: '75%', height: '75%' }); function useLoaded({ crossOrigin, referrerPolicy, src, srcSet }) { const [loaded, setLoaded] = React.useState(false); React.useEffect(() => { if (!src && !srcSet) { return undefined; } setLoaded(false); let active = true; const image = new Image(); image.onload = () => { if (!active) { return; } setLoaded('loaded'); }; image.onerror = () => { if (!active) { return; } setLoaded('error'); }; image.crossOrigin = crossOrigin; image.referrerPolicy = referrerPolicy; image.src = src; if (srcSet) { image.srcset = srcSet; } return () => { active = false; }; }, [crossOrigin, referrerPolicy, src, srcSet]); return loaded; } const Avatar = /*#__PURE__*/React.forwardRef(function Avatar(inProps, ref) { const props = (0, _DefaultPropsProvider.useDefaultProps)({ props: inProps, name: 'MuiAvatar' }); const { alt, children: childrenProp, className, component = 'div', slots = {}, slotProps = {}, imgProps, sizes, src, srcSet, variant = 'circular', ...other } = props; let children = null; const ownerState = { ...props, component, variant }; // Use a hook instead of onError on the img element to support server-side rendering. const loaded = useLoaded({ ...imgProps, ...(typeof slotProps.img === 'function' ? slotProps.img(ownerState) : slotProps.img), src, srcSet }); const hasImg = src || srcSet; const hasImgNotFailing = hasImg && loaded !== 'error'; ownerState.colorDefault = !hasImgNotFailing; // This issue explains why this is required: https://github.com/mui/material-ui/issues/42184 delete ownerState.ownerState; const classes = useUtilityClasses(ownerState); const [ImgSlot, imgSlotProps] = (0, _useSlot.default)('img', { className: classes.img, elementType: AvatarImg, externalForwardedProps: { slots, slotProps: { img: { ...imgProps, ...slotProps.img } } }, additionalProps: { alt, src, srcSet, sizes }, ownerState }); if (hasImgNotFailing) { children = /*#__PURE__*/(0, _jsxRuntime.jsx)(ImgSlot, { ...imgSlotProps }); // We only render valid children, non valid children are rendered with a fallback // We consider that invalid children are all falsy values, except 0, which is valid. } else if (!!childrenProp || childrenProp === 0) { children = childrenProp; } else if (hasImg && alt) { children = alt[0]; } else { children = /*#__PURE__*/(0, _jsxRuntime.jsx)(AvatarFallback, { ownerState: ownerState, className: classes.fallback }); } return /*#__PURE__*/(0, _jsxRuntime.jsx)(AvatarRoot, { as: component, className: (0, _clsx.default)(classes.root, className), ref: ref, ...other, ownerState: ownerState, children: children }); }); process.env.NODE_ENV !== "production" ? Avatar.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the d.ts file and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * Used in combination with `src` or `srcSet` to * provide an alt attribute for the rendered `img` element. */ alt: _propTypes.default.string, /** * Used to render icon or text elements inside the Avatar if `src` is not set. * This can be an element, or just a string. */ children: _propTypes.default.node, /** * Override or extend the styles applied to the component. */ classes: _propTypes.default.object, /** * @ignore */ className: _propTypes.default.string, /** * The component used for the root node. * Either a string to use a HTML element or a component. */ component: _propTypes.default.elementType, /** * [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attributes) applied to the `img` element if the component is used to display an image. * It can be used to listen for the loading error event. * @deprecated Use `slotProps.img` instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details. */ imgProps: _propTypes.default.object, /** * The `sizes` attribute for the `img` element. */ sizes: _propTypes.default.string, /** * The props used for each slot inside. * @default {} */ slotProps: _propTypes.default.shape({ img: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]) }), /** * The components used for each slot inside. * @default {} */ slots: _propTypes.default.shape({ img: _propTypes.default.elementType }), /** * The `src` attribute for the `img` element. */ src: _propTypes.default.string, /** * The `srcSet` attribute for the `img` element. * Use this attribute for responsive image display. */ srcSet: _propTypes.default.string, /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]), /** * The shape of the avatar. * @default 'circular' */ variant: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['circular', 'rounded', 'square']), _propTypes.default.string]) } : void 0; var _default = exports.default = Avatar;