UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

86 lines (83 loc) 2.89 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useAlertDialogRootContext } from '../root/AlertDialogRootContext.js'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { popupStateMapping as baseMapping } from '../../utils/popupStateMapping.js'; import { transitionStatusMapping } from '../../utils/styleHookMapping.js'; const customStyleHookMapping = { ...baseMapping, ...transitionStatusMapping }; /** * An overlay displayed beneath the popup. * Renders a `<div>` element. * * Documentation: [Base UI Alert Dialog](https://base-ui.com/react/components/alert-dialog) */ const AlertDialogBackdrop = /*#__PURE__*/React.forwardRef(function AlertDialogBackdrop(props, forwardedRef) { const { render, className, keepMounted = false, ...other } = props; const { open, nested, mounted, transitionStatus } = useAlertDialogRootContext(); const state = React.useMemo(() => ({ open, transitionStatus }), [open, transitionStatus]); const { renderElement } = useComponentRenderer({ render: render ?? 'div', className, state, ref: forwardedRef, extraProps: { role: 'presentation', hidden: !mounted, ...other }, customStyleHookMapping }); // no need to render nested backdrops const shouldRender = (keepMounted || mounted) && !nested; if (!shouldRender) { return null; } return renderElement(); }); process.env.NODE_ENV !== "production" ? AlertDialogBackdrop.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * @ignore */ children: PropTypes.node, /** * CSS class applied to the element, or a function that * returns a class based on the component’s state. */ className: PropTypes.oneOfType([PropTypes.func, PropTypes.string]), /** * Whether to keep the element in the DOM while the alert dialog is hidden. * @default false */ keepMounted: PropTypes.bool, /** * Allows you to replace the component’s HTML element * with a different tag, or compose it with another component. * * Accepts a `ReactElement` or a function that returns the element to render. */ render: PropTypes.oneOfType([PropTypes.element, PropTypes.func]) } : void 0; export { AlertDialogBackdrop };