UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

80 lines 3.58 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.DialogPopup = void 0; const react_1 = __importStar(require("react")); const Modal_context_1 = require("../../modal/Modal.context"); const portal_1 = require("../../portal"); const DialogBackdropInternal_1 = require("../backdrop/DialogBackdropInternal"); const DialogRoot_context_1 = require("../root/DialogRoot.context"); const DialogPopupInternal_1 = require("./DialogPopupInternal"); /** * @see 🏷️ {@link DialogPopupProps} * @example * ```jsx * <Dialog> * <Dialog.Popup> * ... * </Dialog.Popup> * </Dialog> * ``` */ const DialogPopup = (0, react_1.forwardRef)((_a, forwardedRef) => { var { modal = true, withBackdrop = modal === true, rootElement: rootElementProp, position } = _a, restProps = __rest(_a, ["modal", "withBackdrop", "rootElement", "position"]); const { mounted, nested } = (0, DialogRoot_context_1.useDialogContext)(); const modalContext = (0, Modal_context_1.useModalContext)(false); const rootElement = modalContext ? modalContext.modalRef.current : rootElementProp; if (!mounted) { return null; } return (react_1.default.createElement(portal_1.Portal, { rootElement: rootElement }, withBackdrop && position !== "fullscreen" && !nested && (react_1.default.createElement(DialogBackdropInternal_1.DialogBackdropInternal, null)), react_1.default.createElement(DialogPopupInternal_1.DialogPopupInternal, Object.assign({ ref: forwardedRef }, restProps, { position: position, withBackdrop: withBackdrop && position !== "fullscreen", modal: modal })))); }); exports.DialogPopup = DialogPopup; //# sourceMappingURL=DialogPopup.js.map