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.

303 lines (262 loc) 10.2 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.modalClasses = 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 _propTypes = _interopRequireDefault(require("prop-types")); var _base = require("@mui/base"); var _utils = require("@mui/utils"); var _ModalUnstyled = _interopRequireWildcard(require("@mui/base/ModalUnstyled")); var _styled = _interopRequireDefault(require("../styles/styled")); var _useThemeProps = _interopRequireDefault(require("../styles/useThemeProps")); var _Backdrop = _interopRequireDefault(require("../Backdrop")); var _jsxRuntime = require("react/jsx-runtime"); const _excluded = ["BackdropComponent", "closeAfterTransition", "children", "components", "componentsProps", "disableAutoFocus", "disableEnforceFocus", "disableEscapeKeyDown", "disablePortal", "disableRestoreFocus", "disableScrollLock", "hideBackdrop", "keepMounted"]; 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 modalClasses = _ModalUnstyled.modalUnstyledClasses; exports.modalClasses = modalClasses; const extendUtilityClasses = ownerState => { return ownerState.classes; }; const ModalRoot = (0, _styled.default)('div', { name: 'MuiModal', slot: 'Root', overridesResolver: (props, styles) => { const { ownerState } = props; return [styles.root, !ownerState.open && ownerState.exited && styles.hidden]; } })(({ theme, ownerState }) => (0, _extends2.default)({ position: 'fixed', zIndex: theme.zIndex.modal, right: 0, bottom: 0, top: 0, left: 0 }, !ownerState.open && ownerState.exited && { visibility: 'hidden' })); const ModalBackdrop = (0, _styled.default)(_Backdrop.default, { name: 'MuiModal', slot: 'Backdrop', overridesResolver: (props, styles) => { return styles.backdrop; } })({ zIndex: -1 }); /** * Modal is a lower-level construct that is leveraged by the following components: * * - [Dialog](/api/dialog/) * - [Drawer](/api/drawer/) * - [Menu](/api/menu/) * - [Popover](/api/popover/) * * If you are creating a modal dialog, you probably want to use the [Dialog](/api/dialog/) component * rather than directly using Modal. * * This component shares many concepts with [react-overlays](https://react-bootstrap.github.io/react-overlays/#modals). */ const Modal = /*#__PURE__*/React.forwardRef(function Modal(inProps, ref) { var _componentsProps$root; const props = (0, _useThemeProps.default)({ name: 'MuiModal', props: inProps }); const { BackdropComponent = ModalBackdrop, closeAfterTransition = false, children, components = {}, componentsProps = {}, disableAutoFocus = false, disableEnforceFocus = false, disableEscapeKeyDown = false, disablePortal = false, disableRestoreFocus = false, disableScrollLock = false, hideBackdrop = false, keepMounted = false } = props, other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded); const [exited, setExited] = React.useState(true); const commonProps = { closeAfterTransition, disableAutoFocus, disableEnforceFocus, disableEscapeKeyDown, disablePortal, disableRestoreFocus, disableScrollLock, hideBackdrop, keepMounted }; const ownerState = (0, _extends2.default)({}, props, commonProps, { exited }); const classes = extendUtilityClasses(ownerState); return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ModalUnstyled.default, (0, _extends2.default)({ components: (0, _extends2.default)({ Root: ModalRoot }, components), componentsProps: { root: (0, _extends2.default)({}, componentsProps.root, (!components.Root || !(0, _base.isHostComponent)(components.Root)) && { ownerState: (0, _extends2.default)({}, (_componentsProps$root = componentsProps.root) == null ? void 0 : _componentsProps$root.ownerState) }) }, BackdropComponent: BackdropComponent, onTransitionEnter: () => setExited(false), onTransitionExited: () => setExited(true), ref: ref }, other, { classes: classes }, commonProps, { children: children })); }); process.env.NODE_ENV !== "production" ? Modal.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" | // ---------------------------------------------------------------------- /** * A backdrop component. This prop enables custom backdrop rendering. * @default styled(Backdrop, { * name: 'MuiModal', * slot: 'Backdrop', * overridesResolver: (props, styles) => { * return styles.backdrop; * }, * })({ * zIndex: -1, * }) */ BackdropComponent: _propTypes.default.elementType, /** * Props applied to the [`Backdrop`](/api/backdrop/) element. */ BackdropProps: _propTypes.default.object, /** * A single child content element. */ children: _utils.elementAcceptingRef.isRequired, /** * Override or extend the styles applied to the component. */ classes: _propTypes.default.object, /** * When set to true the Modal waits until a nested Transition is completed before closing. * @default false */ closeAfterTransition: _propTypes.default.bool, /** * The components used for each slot inside the Modal. * Either a string to use a HTML element or a component. * @default {} */ components: _propTypes.default.shape({ Root: _propTypes.default.elementType }), /** * The props used for each slot inside the Modal. * @default {} */ componentsProps: _propTypes.default.shape({ root: _propTypes.default.object }), /** * An HTML element or function that returns one. * The `container` will have the portal children appended to it. * * By default, it uses the body of the top-level document object, * so it's simply `document.body` most of the time. */ container: _propTypes.default /* @typescript-to-proptypes-ignore */ .oneOfType([_utils.HTMLElementType, _propTypes.default.func]), /** * If `true`, the modal will not automatically shift focus to itself when it opens, and * replace it to the last focused element when it closes. * This also works correctly with any modal children that have the `disableAutoFocus` prop. * * Generally this should never be set to `true` as it makes the modal less * accessible to assistive technologies, like screen readers. * @default false */ disableAutoFocus: _propTypes.default.bool, /** * If `true`, the modal will not prevent focus from leaving the modal while open. * * Generally this should never be set to `true` as it makes the modal less * accessible to assistive technologies, like screen readers. * @default false */ disableEnforceFocus: _propTypes.default.bool, /** * If `true`, hitting escape will not fire the `onClose` callback. * @default false */ disableEscapeKeyDown: _propTypes.default.bool, /** * The `children` will be under the DOM hierarchy of the parent component. * @default false */ disablePortal: _propTypes.default.bool, /** * If `true`, the modal will not restore focus to previously focused element once * modal is hidden. * @default false */ disableRestoreFocus: _propTypes.default.bool, /** * Disable the scroll lock behavior. * @default false */ disableScrollLock: _propTypes.default.bool, /** * If `true`, the backdrop is not rendered. * @default false */ hideBackdrop: _propTypes.default.bool, /** * Always keep the children in the DOM. * This prop can be useful in SEO situation or * when you want to maximize the responsiveness of the Modal. * @default false */ keepMounted: _propTypes.default.bool, /** * Callback fired when the backdrop is clicked. */ onBackdropClick: _propTypes.default.func, /** * Callback fired when the component requests to be closed. * The `reason` parameter can optionally be used to control the response to `onClose`. * * @param {object} event The event source of the callback. * @param {string} reason Can be: `"escapeKeyDown"`, `"backdropClick"`. */ onClose: _propTypes.default.func, /** * If `true`, the component is shown. */ open: _propTypes.default.bool.isRequired, /** * 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]) } : void 0; var _default = Modal; exports.default = _default;