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.

182 lines (179 loc) 4.79 kB
'use client'; import * as React from 'react'; import clsx from 'clsx'; import PropTypes from 'prop-types'; import composeClasses from '@mui/utils/composeClasses'; import capitalize from "../utils/capitalize.js"; import styled from "../styles/styled.js"; import useTheme from "../styles/useTheme.js"; import { getHiddenCssUtilityClass } from "./hiddenCssClasses.js"; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { classes, breakpoints } = ownerState; const slots = { root: ['root', ...breakpoints.map(({ breakpoint, dir }) => { return dir === 'only' ? `${dir}${capitalize(breakpoint)}` : `${breakpoint}${capitalize(dir)}`; })] }; return composeClasses(slots, getHiddenCssUtilityClass, classes); }; // FIXME(romgrk): Can't use memoTheme here, should we memo also on ownerState? const HiddenCssRoot = styled('div', { name: 'PrivateHiddenCss', slot: 'Root' })(({ theme, ownerState }) => { const hidden = { display: 'none' }; return { ...ownerState.breakpoints.map(({ breakpoint, dir }) => { if (dir === 'only') { return { [theme.breakpoints.only(breakpoint)]: hidden }; } return dir === 'up' ? { [theme.breakpoints.up(breakpoint)]: hidden } : { [theme.breakpoints.down(breakpoint)]: hidden }; }).reduce((r, o) => { Object.keys(o).forEach(k => { r[k] = o[k]; }); return r; }, {}) }; }); /** * @ignore - internal component. */ function HiddenCss(props) { const { children, className, only, ...other } = props; const theme = useTheme(); if (process.env.NODE_ENV !== 'production') { const unknownProps = Object.keys(other).filter(propName => { const isUndeclaredBreakpoint = !theme.breakpoints.keys.some(breakpoint => { return `${breakpoint}Up` === propName || `${breakpoint}Down` === propName; }); return !['classes', 'theme', 'isRtl', 'sx'].includes(propName) && isUndeclaredBreakpoint; }); if (unknownProps.length > 0) { console.error(`MUI: Unsupported props received by \`<Hidden implementation="css" />\`: ${unknownProps.join(', ')}. Did you forget to wrap this component in a ThemeProvider declaring these breakpoints?`); } } const breakpoints = []; for (let i = 0; i < theme.breakpoints.keys.length; i += 1) { const breakpoint = theme.breakpoints.keys[i]; const breakpointUp = other[`${breakpoint}Up`]; const breakpointDown = other[`${breakpoint}Down`]; if (breakpointUp) { breakpoints.push({ breakpoint, dir: 'up' }); } if (breakpointDown) { breakpoints.push({ breakpoint, dir: 'down' }); } } if (only) { const onlyBreakpoints = Array.isArray(only) ? only : [only]; onlyBreakpoints.forEach(breakpoint => { breakpoints.push({ breakpoint, dir: 'only' }); }); } const ownerState = { ...props, breakpoints }; const classes = useUtilityClasses(ownerState); return /*#__PURE__*/_jsx(HiddenCssRoot, { className: clsx(classes.root, className), ownerState: ownerState, children: children }); } process.env.NODE_ENV !== "production" ? HiddenCss.propTypes = { /** * The content of the component. */ children: PropTypes.node, /** * @ignore */ className: PropTypes.string, /** * Specify which implementation to use. 'js' is the default, 'css' works better for * server-side rendering. */ implementation: PropTypes.oneOf(['js', 'css']), /** * If `true`, screens this size and down are hidden. */ lgDown: PropTypes.bool, /** * If `true`, screens this size and up are hidden. */ lgUp: PropTypes.bool, /** * If `true`, screens this size and down are hidden. */ mdDown: PropTypes.bool, /** * If `true`, screens this size and up are hidden. */ mdUp: PropTypes.bool, /** * Hide the given breakpoint(s). */ only: PropTypes.oneOfType([PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl']), PropTypes.arrayOf(PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl']))]), /** * If `true`, screens this size and down are hidden. */ smDown: PropTypes.bool, /** * If `true`, screens this size and up are hidden. */ smUp: PropTypes.bool, /** * If `true`, screens this size and down are hidden. */ xlDown: PropTypes.bool, /** * If `true`, screens this size and up are hidden. */ xlUp: PropTypes.bool, /** * If `true`, screens this size and down are hidden. */ xsDown: PropTypes.bool, /** * If `true`, screens this size and up are hidden. */ xsUp: PropTypes.bool } : void 0; export default HiddenCss;