UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

115 lines (105 loc) 3.57 kB
'use client'; import * as React from 'react'; import ReactDOM from 'react-dom'; import PrimeReact, { PrimeReactContext } from 'primereact/api'; import { useMountEffect, useUpdateEffect, useUnmountEffect } from 'primereact/hooks'; import { ObjectUtils, DomHandler } from 'primereact/utils'; function _arrayWithHoles(r) { if (Array.isArray(r)) return r; } function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); } var PortalBase = { defaultProps: { __TYPE: 'Portal', element: null, appendTo: null, visible: false, onMounted: null, onUnmounted: null, children: undefined }, getProps: function getProps(props) { return ObjectUtils.getMergedProps(props, PortalBase.defaultProps); }, getOtherProps: function getOtherProps(props) { return ObjectUtils.getDiffProps(props, PortalBase.defaultProps); } }; var Portal = /*#__PURE__*/React.memo(function (inProps) { var props = PortalBase.getProps(inProps); var context = React.useContext(PrimeReactContext); var _React$useState = React.useState(props.visible && DomHandler.isClient()), _React$useState2 = _slicedToArray(_React$useState, 2), mountedState = _React$useState2[0], setMountedState = _React$useState2[1]; useMountEffect(function () { if (DomHandler.isClient() && !mountedState) { setMountedState(true); props.onMounted && props.onMounted(); } }); useUpdateEffect(function () { props.onMounted && props.onMounted(); }, [mountedState]); useUnmountEffect(function () { props.onUnmounted && props.onUnmounted(); }); var element = props.element || props.children; if (element && mountedState) { var appendTo = props.appendTo || context && context.appendTo || PrimeReact.appendTo; if (ObjectUtils.isFunction(appendTo)) { appendTo = appendTo(); } if (!appendTo) { appendTo = document.body; } return appendTo === 'self' ? element : /*#__PURE__*/ReactDOM.createPortal(element, appendTo); } return null; }); Portal.displayName = 'Portal'; export { Portal };