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.

304 lines (265 loc) 10.2 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose")); var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var React = _interopRequireWildcard(require("react")); var _reactIs = require("react-is"); var _propTypes = _interopRequireDefault(require("prop-types")); var _clsx = _interopRequireDefault(require("clsx")); var _utils = require("@mui/utils"); var _base = require("@mui/base"); var _styled = _interopRequireDefault(require("../styles/styled")); var _useThemeProps = _interopRequireDefault(require("../styles/useThemeProps")); var _Collapse = _interopRequireDefault(require("../Collapse")); var _Paper = _interopRequireDefault(require("../Paper")); var _AccordionContext = _interopRequireDefault(require("./AccordionContext")); var _useControlled = _interopRequireDefault(require("../utils/useControlled")); var _accordionClasses = _interopRequireWildcard(require("./accordionClasses")); var _jsxRuntime = require("react/jsx-runtime"); const _excluded = ["children", "className", "defaultExpanded", "disabled", "disableGutters", "expanded", "onChange", "square", "TransitionComponent", "TransitionProps"]; function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } const useUtilityClasses = ownerState => { const { classes, square, expanded, disabled, disableGutters } = ownerState; const slots = { root: ['root', !square && 'rounded', expanded && 'expanded', disabled && 'disabled', !disableGutters && 'gutters'], region: ['region'] }; return (0, _base.unstable_composeClasses)(slots, _accordionClasses.getAccordionUtilityClass, classes); }; const AccordionRoot = (0, _styled.default)(_Paper.default, { name: 'MuiAccordion', slot: 'Root', overridesResolver: (props, styles) => { const { ownerState } = props; return [{ [`& .${_accordionClasses.default.region}`]: styles.region }, styles.root, !ownerState.square && styles.rounded, !ownerState.disableGutters && styles.gutters]; } })(({ theme }) => { const transition = { duration: theme.transitions.duration.shortest }; return { position: 'relative', transition: theme.transitions.create(['margin'], transition), overflowAnchor: 'none', // Keep the same scrolling position '&:before': { position: 'absolute', left: 0, top: -1, right: 0, height: 1, content: '""', opacity: 1, backgroundColor: theme.palette.divider, transition: theme.transitions.create(['opacity', 'background-color'], transition) }, '&:first-of-type': { '&:before': { display: 'none' } }, [`&.${_accordionClasses.default.expanded}`]: { '&:before': { opacity: 0 }, '&:first-of-type': { marginTop: 0 }, '&:last-of-type': { marginBottom: 0 }, '& + &': { '&:before': { display: 'none' } } }, [`&.${_accordionClasses.default.disabled}`]: { backgroundColor: theme.palette.action.disabledBackground } }; }, ({ theme, ownerState }) => (0, _extends2.default)({}, !ownerState.square && { borderRadius: 0, '&:first-of-type': { borderTopLeftRadius: theme.shape.borderRadius, borderTopRightRadius: theme.shape.borderRadius }, '&:last-of-type': { borderBottomLeftRadius: theme.shape.borderRadius, borderBottomRightRadius: theme.shape.borderRadius, // Fix a rendering issue on Edge '@supports (-ms-ime-align: auto)': { borderBottomLeftRadius: 0, borderBottomRightRadius: 0 } } }, !ownerState.disableGutters && { [`&.${_accordionClasses.default.expanded}`]: { margin: '16px 0' } })); const Accordion = /*#__PURE__*/React.forwardRef(function Accordion(inProps, ref) { const props = (0, _useThemeProps.default)({ props: inProps, name: 'MuiAccordion' }); const { children: childrenProp, className, defaultExpanded = false, disabled = false, disableGutters = false, expanded: expandedProp, onChange, square = false, TransitionComponent = _Collapse.default, TransitionProps } = props, other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded); const [expanded, setExpandedState] = (0, _useControlled.default)({ controlled: expandedProp, default: defaultExpanded, name: 'Accordion', state: 'expanded' }); const handleChange = React.useCallback(event => { setExpandedState(!expanded); if (onChange) { onChange(event, !expanded); } }, [expanded, onChange, setExpandedState]); const [summary, ...children] = React.Children.toArray(childrenProp); const contextValue = React.useMemo(() => ({ expanded, disabled, disableGutters, toggle: handleChange }), [expanded, disabled, disableGutters, handleChange]); const ownerState = (0, _extends2.default)({}, props, { square, disabled, disableGutters, expanded }); const classes = useUtilityClasses(ownerState); return /*#__PURE__*/(0, _jsxRuntime.jsxs)(AccordionRoot, (0, _extends2.default)({ className: (0, _clsx.default)(classes.root, className), ref: ref, ownerState: ownerState, square: square }, other, { children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_AccordionContext.default.Provider, { value: contextValue, children: summary }), /*#__PURE__*/(0, _jsxRuntime.jsx)(TransitionComponent, (0, _extends2.default)({ in: expanded, timeout: "auto" }, TransitionProps, { children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", { "aria-labelledby": summary.props.id, id: summary.props['aria-controls'], role: "region", className: classes.region, children: children }) }))] })); }); process.env.NODE_ENV !== "production" ? Accordion.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: (0, _utils.chainPropTypes)(_propTypes.default.node.isRequired, props => { const summary = React.Children.toArray(props.children)[0]; if ((0, _reactIs.isFragment)(summary)) { return new Error("MUI: The Accordion doesn't accept a Fragment as a child. " + 'Consider providing an array instead.'); } if (! /*#__PURE__*/React.isValidElement(summary)) { return new Error('MUI: Expected the first child of Accordion to be a valid element.'); } return null; }), /** * Override or extend the styles applied to the component. */ classes: _propTypes.default.object, /** * @ignore */ className: _propTypes.default.string, /** * If `true`, expands the accordion by default. * @default false */ defaultExpanded: _propTypes.default.bool, /** * If `true`, the component is disabled. * @default false */ disabled: _propTypes.default.bool, /** * If `true`, it removes the margin between two expanded accordion items and the increase of height. * @default false */ disableGutters: _propTypes.default.bool, /** * If `true`, expands the accordion, otherwise collapse it. * Setting this prop enables control over the accordion. */ expanded: _propTypes.default.bool, /** * Callback fired when the expand/collapse state is changed. * * @param {React.SyntheticEvent} event The event source of the callback. **Warning**: This is a generic event not a change event. * @param {boolean} expanded The `expanded` state of the accordion. */ onChange: _propTypes.default.func, /** * If `true`, rounded corners are disabled. * @default false */ square: _propTypes.default.bool, /** * 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 component used for the transition. * [Follow this guide](/components/transitions/#transitioncomponent-prop) to learn more about the requirements for this component. * @default Collapse */ TransitionComponent: _propTypes.default.elementType, /** * Props applied to the transition element. * By default, the element is based on this [`Transition`](http://reactcommunity.org/react-transition-group/transition/) component. */ TransitionProps: _propTypes.default.object } : void 0; var _default = Accordion; exports.default = _default;