{"ast":null,"code":"import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectSpread from \"@babel/runtime/helpers/esm/objectSpread2\";\nimport classNames from 'classnames';\nimport { useComposeRef } from \"rc-util/es/ref\";\nimport React, { useRef } from 'react';\nimport { RefContext } from \"../../context\";\nimport MemoChildren from \"./MemoChildren\";\nvar sentinelStyle = {\n  width: 0,\n  height: 0,\n  overflow: 'hidden',\n  outline: 'none'\n};\nvar Panel = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  var prefixCls = props.prefixCls,\n    className = props.className,\n    style = props.style,\n    title = props.title,\n    ariaId = props.ariaId,\n    footer = props.footer,\n    closable = props.closable,\n    closeIcon = props.closeIcon,\n    onClose = props.onClose,\n    children = props.children,\n    bodyStyle = props.bodyStyle,\n    bodyProps = props.bodyProps,\n    modalRender = props.modalRender,\n    onMouseDown = props.onMouseDown,\n    onMouseUp = props.onMouseUp,\n    holderRef = props.holderRef,\n    visible = props.visible,\n    forceRender = props.forceRender,\n    width = props.width,\n    height = props.height,\n    modalClassNames = props.classNames,\n    modalStyles = props.styles;\n\n  // ================================= Refs =================================\n  var _React$useContext = React.useContext(RefContext),\n    panelRef = _React$useContext.panel;\n  var mergedRef = useComposeRef(holderRef, panelRef);\n  var sentinelStartRef = useRef();\n  var sentinelEndRef = useRef();\n  React.useImperativeHandle(ref, function () {\n    return {\n      focus: function focus() {\n        var _sentinelStartRef$cur;\n        (_sentinelStartRef$cur = sentinelStartRef.current) === null || _sentinelStartRef$cur === void 0 || _sentinelStartRef$cur.focus();\n      },\n      changeActive: function changeActive(next) {\n        var _document = document,\n          activeElement = _document.activeElement;\n        if (next && activeElement === sentinelEndRef.current) {\n          sentinelStartRef.current.focus();\n        } else if (!next && activeElement === sentinelStartRef.current) {\n          sentinelEndRef.current.focus();\n        }\n      }\n    };\n  });\n\n  // ================================ Style =================================\n  var contentStyle = {};\n  if (width !== undefined) {\n    contentStyle.width = width;\n  }\n  if (height !== undefined) {\n    contentStyle.height = height;\n  }\n  // ================================ Render ================================\n  var footerNode;\n  if (footer) {\n    footerNode = /*#__PURE__*/React.createElement(\"div\", {\n      className: classNames(\"\".concat(prefixCls, \"-footer\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.footer),\n      style: _objectSpread({}, modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.footer)\n    }, footer);\n  }\n  var headerNode;\n  if (title) {\n    headerNode = /*#__PURE__*/React.createElement(\"div\", {\n      className: classNames(\"\".concat(prefixCls, \"-header\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.header),\n      style: _objectSpread({}, modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.header)\n    }, /*#__PURE__*/React.createElement(\"div\", {\n      className: \"\".concat(prefixCls, \"-title\"),\n      id: ariaId\n    }, title));\n  }\n  var closer;\n  if (closable) {\n    closer = /*#__PURE__*/React.createElement(\"button\", {\n      type: \"button\",\n      onClick: onClose,\n      \"aria-label\": \"Close\",\n      className: \"\".concat(prefixCls, \"-close\")\n    }, closeIcon || /*#__PURE__*/React.createElement(\"span\", {\n      className: \"\".concat(prefixCls, \"-close-x\")\n    }));\n  }\n  var content = /*#__PURE__*/React.createElement(\"div\", {\n    className: classNames(\"\".concat(prefixCls, \"-content\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.content),\n    style: modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.content\n  }, closer, headerNode, /*#__PURE__*/React.createElement(\"div\", _extends({\n    className: classNames(\"\".concat(prefixCls, \"-body\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.body),\n    style: _objectSpread(_objectSpread({}, bodyStyle), modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.body)\n  }, bodyProps), children), footerNode);\n  return /*#__PURE__*/React.createElement(\"div\", {\n    key: \"dialog-element\",\n    role: \"dialog\",\n    \"aria-labelledby\": title ? ariaId : null,\n    \"aria-modal\": \"true\",\n    ref: mergedRef,\n    style: _objectSpread(_objectSpread({}, style), contentStyle),\n    className: classNames(prefixCls, className),\n    onMouseDown: onMouseDown,\n    onMouseUp: onMouseUp\n  }, /*#__PURE__*/React.createElement(\"div\", {\n    tabIndex: 0,\n    ref: sentinelStartRef,\n    style: sentinelStyle,\n    \"aria-hidden\": \"true\"\n  }), /*#__PURE__*/React.createElement(MemoChildren, {\n    shouldUpdate: visible || forceRender\n  }, modalRender ? modalRender(content) : content), /*#__PURE__*/React.createElement(\"div\", {\n    tabIndex: 0,\n    ref: sentinelEndRef,\n    style: sentinelStyle,\n    \"aria-hidden\": \"true\"\n  }));\n});\nif (process.env.NODE_ENV !== 'production') {\n  Panel.displayName = 'Panel';\n}\nexport default Panel;","map":{"version":3,"names":["_extends","_objectSpread","classNames","useComposeRef","React","useRef","RefContext","MemoChildren","sentinelStyle","width","height","overflow","outline","Panel","forwardRef","props","ref","prefixCls","className","style","title","ariaId","footer","closable","closeIcon","onClose","children","bodyStyle","bodyProps","modalRender","onMouseDown","onMouseUp","holderRef","visible","forceRender","modalClassNames","modalStyles","styles","_React$useContext","useContext","panelRef","panel","mergedRef","sentinelStartRef","sentinelEndRef","useImperativeHandle","focus","_sentinelStartRef$cur","current","changeActive","next","_document","document","activeElement","contentStyle","undefined","footerNode","createElement","concat","headerNode","header","id","closer","type","onClick","content","body","key","role","tabIndex","shouldUpdate","process","env","NODE_ENV","displayName"],"sources":["/Users/chrishaack/UC_Trains_Voice/react-demo/node_modules/rc-dialog/es/Dialog/Content/Panel.js"],"sourcesContent":["import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectSpread from \"@babel/runtime/helpers/esm/objectSpread2\";\nimport classNames from 'classnames';\nimport { useComposeRef } from \"rc-util/es/ref\";\nimport React, { useRef } from 'react';\nimport { RefContext } from \"../../context\";\nimport MemoChildren from \"./MemoChildren\";\nvar sentinelStyle = {\n  width: 0,\n  height: 0,\n  overflow: 'hidden',\n  outline: 'none'\n};\nvar Panel = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  var prefixCls = props.prefixCls,\n    className = props.className,\n    style = props.style,\n    title = props.title,\n    ariaId = props.ariaId,\n    footer = props.footer,\n    closable = props.closable,\n    closeIcon = props.closeIcon,\n    onClose = props.onClose,\n    children = props.children,\n    bodyStyle = props.bodyStyle,\n    bodyProps = props.bodyProps,\n    modalRender = props.modalRender,\n    onMouseDown = props.onMouseDown,\n    onMouseUp = props.onMouseUp,\n    holderRef = props.holderRef,\n    visible = props.visible,\n    forceRender = props.forceRender,\n    width = props.width,\n    height = props.height,\n    modalClassNames = props.classNames,\n    modalStyles = props.styles;\n\n  // ================================= Refs =================================\n  var _React$useContext = React.useContext(RefContext),\n    panelRef = _React$useContext.panel;\n  var mergedRef = useComposeRef(holderRef, panelRef);\n  var sentinelStartRef = useRef();\n  var sentinelEndRef = useRef();\n  React.useImperativeHandle(ref, function () {\n    return {\n      focus: function focus() {\n        var _sentinelStartRef$cur;\n        (_sentinelStartRef$cur = sentinelStartRef.current) === null || _sentinelStartRef$cur === void 0 || _sentinelStartRef$cur.focus();\n      },\n      changeActive: function changeActive(next) {\n        var _document = document,\n          activeElement = _document.activeElement;\n        if (next && activeElement === sentinelEndRef.current) {\n          sentinelStartRef.current.focus();\n        } else if (!next && activeElement === sentinelStartRef.current) {\n          sentinelEndRef.current.focus();\n        }\n      }\n    };\n  });\n\n  // ================================ Style =================================\n  var contentStyle = {};\n  if (width !== undefined) {\n    contentStyle.width = width;\n  }\n  if (height !== undefined) {\n    contentStyle.height = height;\n  }\n  // ================================ Render ================================\n  var footerNode;\n  if (footer) {\n    footerNode = /*#__PURE__*/React.createElement(\"div\", {\n      className: classNames(\"\".concat(prefixCls, \"-footer\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.footer),\n      style: _objectSpread({}, modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.footer)\n    }, footer);\n  }\n  var headerNode;\n  if (title) {\n    headerNode = /*#__PURE__*/React.createElement(\"div\", {\n      className: classNames(\"\".concat(prefixCls, \"-header\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.header),\n      style: _objectSpread({}, modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.header)\n    }, /*#__PURE__*/React.createElement(\"div\", {\n      className: \"\".concat(prefixCls, \"-title\"),\n      id: ariaId\n    }, title));\n  }\n  var closer;\n  if (closable) {\n    closer = /*#__PURE__*/React.createElement(\"button\", {\n      type: \"button\",\n      onClick: onClose,\n      \"aria-label\": \"Close\",\n      className: \"\".concat(prefixCls, \"-close\")\n    }, closeIcon || /*#__PURE__*/React.createElement(\"span\", {\n      className: \"\".concat(prefixCls, \"-close-x\")\n    }));\n  }\n  var content = /*#__PURE__*/React.createElement(\"div\", {\n    className: classNames(\"\".concat(prefixCls, \"-content\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.content),\n    style: modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.content\n  }, closer, headerNode, /*#__PURE__*/React.createElement(\"div\", _extends({\n    className: classNames(\"\".concat(prefixCls, \"-body\"), modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.body),\n    style: _objectSpread(_objectSpread({}, bodyStyle), modalStyles === null || modalStyles === void 0 ? void 0 : modalStyles.body)\n  }, bodyProps), children), footerNode);\n  return /*#__PURE__*/React.createElement(\"div\", {\n    key: \"dialog-element\",\n    role: \"dialog\",\n    \"aria-labelledby\": title ? ariaId : null,\n    \"aria-modal\": \"true\",\n    ref: mergedRef,\n    style: _objectSpread(_objectSpread({}, style), contentStyle),\n    className: classNames(prefixCls, className),\n    onMouseDown: onMouseDown,\n    onMouseUp: onMouseUp\n  }, /*#__PURE__*/React.createElement(\"div\", {\n    tabIndex: 0,\n    ref: sentinelStartRef,\n    style: sentinelStyle,\n    \"aria-hidden\": \"true\"\n  }), /*#__PURE__*/React.createElement(MemoChildren, {\n    shouldUpdate: visible || forceRender\n  }, modalRender ? modalRender(content) : content), /*#__PURE__*/React.createElement(\"div\", {\n    tabIndex: 0,\n    ref: sentinelEndRef,\n    style: sentinelStyle,\n    \"aria-hidden\": \"true\"\n  }));\n});\nif (process.env.NODE_ENV !== 'production') {\n  Panel.displayName = 'Panel';\n}\nexport default Panel;"],"mappings":"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"},"metadata":{},"sourceType":"module","externalDependencies":[]}