Buckets:
| ; | |
| '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 _HTMLElementType = _interopRequireDefault(require("@mui/utils/HTMLElementType")); | |
| var _elementAcceptingRef = _interopRequireDefault(require("@mui/utils/elementAcceptingRef")); | |
| var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses")); | |
| var _Unstable_TrapFocus = _interopRequireDefault(require("../Unstable_TrapFocus")); | |
| var _Portal = _interopRequireDefault(require("../Portal")); | |
| var _zeroStyled = require("../zero-styled"); | |
| var _memoTheme = _interopRequireDefault(require("../utils/memoTheme")); | |
| var _DefaultPropsProvider = require("../DefaultPropsProvider"); | |
| var _Backdrop = _interopRequireDefault(require("../Backdrop")); | |
| var _useModal = _interopRequireDefault(require("./useModal")); | |
| var _modalClasses = require("./modalClasses"); | |
| var _useSlot = _interopRequireDefault(require("../utils/useSlot")); | |
| var _jsxRuntime = require("react/jsx-runtime"); | |
| const useUtilityClasses = ownerState => { | |
| const { | |
| open, | |
| exited, | |
| classes | |
| } = ownerState; | |
| const slots = { | |
| root: ['root', !open && exited && 'hidden'], | |
| backdrop: ['backdrop'] | |
| }; | |
| return (0, _composeClasses.default)(slots, _modalClasses.getModalUtilityClass, classes); | |
| }; | |
| const ModalRoot = (0, _zeroStyled.styled)('div', { | |
| name: 'MuiModal', | |
| slot: 'Root', | |
| overridesResolver: (props, styles) => { | |
| const { | |
| ownerState | |
| } = props; | |
| return [styles.root, !ownerState.open && ownerState.exited && styles.hidden]; | |
| } | |
| })((0, _memoTheme.default)(({ | |
| theme | |
| }) => ({ | |
| position: 'fixed', | |
| zIndex: (theme.vars || theme).zIndex.modal, | |
| right: 0, | |
| bottom: 0, | |
| top: 0, | |
| left: 0, | |
| variants: [{ | |
| props: ({ | |
| ownerState | |
| }) => !ownerState.open && ownerState.exited, | |
| style: { | |
| visibility: 'hidden' | |
| } | |
| }] | |
| }))); | |
| const ModalBackdrop = (0, _zeroStyled.styled)(_Backdrop.default, { | |
| name: 'MuiModal', | |
| slot: 'Backdrop' | |
| })({ | |
| zIndex: -1 | |
| }); | |
| /** | |
| * Modal is a lower-level construct that is leveraged by the following components: | |
| * | |
| * - [Dialog](/material-ui/api/dialog/) | |
| * - [Drawer](/material-ui/api/drawer/) | |
| * - [Menu](/material-ui/api/menu/) | |
| * - [Popover](/material-ui/api/popover/) | |
| * | |
| * If you are creating a modal dialog, you probably want to use the [Dialog](/material-ui/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) { | |
| const props = (0, _DefaultPropsProvider.useDefaultProps)({ | |
| name: 'MuiModal', | |
| props: inProps | |
| }); | |
| const { | |
| BackdropComponent = ModalBackdrop, | |
| BackdropProps, | |
| classes: classesProp, | |
| className, | |
| closeAfterTransition = false, | |
| children, | |
| container, | |
| component, | |
| components = {}, | |
| componentsProps = {}, | |
| disableAutoFocus = false, | |
| disableEnforceFocus = false, | |
| disableEscapeKeyDown = false, | |
| disablePortal = false, | |
| disableRestoreFocus = false, | |
| disableScrollLock = false, | |
| hideBackdrop = false, | |
| keepMounted = false, | |
| onClose, | |
| onTransitionEnter, | |
| onTransitionExited, | |
| open, | |
| slotProps = {}, | |
| slots = {}, | |
| // eslint-disable-next-line react/prop-types | |
| theme, | |
| ...other | |
| } = props; | |
| const propsWithDefaults = { | |
| ...props, | |
| closeAfterTransition, | |
| disableAutoFocus, | |
| disableEnforceFocus, | |
| disableEscapeKeyDown, | |
| disablePortal, | |
| disableRestoreFocus, | |
| disableScrollLock, | |
| hideBackdrop, | |
| keepMounted | |
| }; | |
| const { | |
| getRootProps, | |
| getBackdropProps, | |
| getTransitionProps, | |
| portalRef, | |
| isTopModal, | |
| exited, | |
| hasTransition | |
| } = (0, _useModal.default)({ | |
| ...propsWithDefaults, | |
| rootRef: ref | |
| }); | |
| const ownerState = { | |
| ...propsWithDefaults, | |
| exited | |
| }; | |
| const classes = useUtilityClasses(ownerState); | |
| const childProps = {}; | |
| if (children.props.tabIndex === undefined) { | |
| childProps.tabIndex = '-1'; | |
| } | |
| // It's a Transition like component | |
| if (hasTransition) { | |
| const { | |
| onEnter, | |
| onExited | |
| } = getTransitionProps(); | |
| childProps.onEnter = onEnter; | |
| childProps.onExited = onExited; | |
| } | |
| const externalForwardedProps = { | |
| slots: { | |
| root: components.Root, | |
| backdrop: components.Backdrop, | |
| ...slots | |
| }, | |
| slotProps: { | |
| ...componentsProps, | |
| ...slotProps | |
| } | |
| }; | |
| const [RootSlot, rootProps] = (0, _useSlot.default)('root', { | |
| ref, | |
| elementType: ModalRoot, | |
| externalForwardedProps: { | |
| ...externalForwardedProps, | |
| ...other, | |
| component | |
| }, | |
| getSlotProps: getRootProps, | |
| ownerState, | |
| className: (0, _clsx.default)(className, classes?.root, !ownerState.open && ownerState.exited && classes?.hidden) | |
| }); | |
| const [BackdropSlot, backdropProps] = (0, _useSlot.default)('backdrop', { | |
| ref: BackdropProps?.ref, | |
| elementType: BackdropComponent, | |
| externalForwardedProps, | |
| shouldForwardComponentProp: true, | |
| additionalProps: BackdropProps, | |
| getSlotProps: otherHandlers => { | |
| return getBackdropProps({ | |
| ...otherHandlers, | |
| onClick: event => { | |
| if (otherHandlers?.onClick) { | |
| otherHandlers.onClick(event); | |
| } | |
| } | |
| }); | |
| }, | |
| className: (0, _clsx.default)(BackdropProps?.className, classes?.backdrop), | |
| ownerState | |
| }); | |
| if (!keepMounted && !open && (!hasTransition || exited)) { | |
| return null; | |
| } | |
| return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Portal.default, { | |
| ref: portalRef, | |
| container: container, | |
| disablePortal: disablePortal, | |
| children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(RootSlot, { | |
| ...rootProps, | |
| children: [!hideBackdrop && BackdropComponent ? /*#__PURE__*/(0, _jsxRuntime.jsx)(BackdropSlot, { | |
| ...backdropProps | |
| }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_Unstable_TrapFocus.default, { | |
| disableEnforceFocus: disableEnforceFocus, | |
| disableAutoFocus: disableAutoFocus, | |
| disableRestoreFocus: disableRestoreFocus, | |
| isEnabled: isTopModal, | |
| open: open, | |
| children: /*#__PURE__*/React.cloneElement(children, childProps) | |
| })] | |
| }) | |
| }); | |
| }); | |
| 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 `pnpm proptypes`. │ | |
| // └─────────────────────────────────────────────────────────────────────┘ | |
| /** | |
| * A backdrop component. This prop enables custom backdrop rendering. | |
| * @deprecated Use `slots.backdrop` instead. While this prop currently works, it will be removed in the next major version. | |
| * Use the `slots.backdrop` prop to make your application ready for the next version of Material UI. | |
| * @default styled(Backdrop, { | |
| * name: 'MuiModal', | |
| * slot: 'Backdrop', | |
| * })({ | |
| * zIndex: -1, | |
| * }) | |
| */ | |
| BackdropComponent: _propTypes.default.elementType, | |
| /** | |
| * Props applied to the [`Backdrop`](https://mui.com/material-ui/api/backdrop/) element. | |
| * @deprecated Use `slotProps.backdrop` instead. | |
| */ | |
| BackdropProps: _propTypes.default.object, | |
| /** | |
| * A single child content element. | |
| */ | |
| children: _elementAcceptingRef.default.isRequired, | |
| /** | |
| * Override or extend the styles applied to the component. | |
| */ | |
| classes: _propTypes.default.object, | |
| /** | |
| * @ignore | |
| */ | |
| className: _propTypes.default.string, | |
| /** | |
| * When set to true the Modal waits until a nested Transition is completed before closing. | |
| * @default false | |
| */ | |
| closeAfterTransition: _propTypes.default.bool, | |
| /** | |
| * The component used for the root node. | |
| * Either a string to use a HTML element or a component. | |
| */ | |
| component: _propTypes.default.elementType, | |
| /** | |
| * The components used for each slot inside. | |
| * | |
| * @deprecated Use the `slots` prop instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](https://mui.com/material-ui/migration/migrating-from-deprecated-apis/) for more details. | |
| * | |
| * @default {} | |
| */ | |
| components: _propTypes.default.shape({ | |
| Backdrop: _propTypes.default.elementType, | |
| Root: _propTypes.default.elementType | |
| }), | |
| /** | |
| * The extra props for the slot components. | |
| * You can override the existing props or add new ones. | |
| * | |
| * @deprecated Use the `slotProps` prop instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](https://mui.com/material-ui/migration/migrating-from-deprecated-apis/) for more details. | |
| * | |
| * @default {} | |
| */ | |
| componentsProps: _propTypes.default.shape({ | |
| backdrop: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]), | |
| root: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]) | |
| }), | |
| /** | |
| * An HTML element or function that returns one. | |
| * The `container` will have the portal children appended to it. | |
| * | |
| * You can also provide a callback, which is called in a React layout effect. | |
| * This lets you set the container from a ref, and also makes server-side rendering possible. | |
| * | |
| * 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([_HTMLElementType.default, _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 or unmounted. | |
| * @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 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, | |
| /** | |
| * A function called when a transition enters. | |
| */ | |
| onTransitionEnter: _propTypes.default.func, | |
| /** | |
| * A function called when a transition has exited. | |
| */ | |
| onTransitionExited: _propTypes.default.func, | |
| /** | |
| * If `true`, the component is shown. | |
| */ | |
| open: _propTypes.default.bool.isRequired, | |
| /** | |
| * The props used for each slot inside the Modal. | |
| * @default {} | |
| */ | |
| slotProps: _propTypes.default.shape({ | |
| backdrop: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]), | |
| root: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]) | |
| }), | |
| /** | |
| * The components used for each slot inside the Modal. | |
| * Either a string to use a HTML element or a component. | |
| * @default {} | |
| */ | |
| slots: _propTypes.default.shape({ | |
| backdrop: _propTypes.default.elementType, | |
| root: _propTypes.default.elementType | |
| }), | |
| /** | |
| * 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 = exports.default = Modal; |
Xet Storage Details
- Size:
- 13.6 kB
- Xet hash:
- e80c9a501fcea28908a6b7f0218625cc9ab28bbf82a5c0e9595bb89f00b3540b
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.