PromoCursed/node_modules/.cache/babel-loader/b23949110824c8403d4182d1b8180bcbce5c61e754f60cf6c78951a3556e0965.json
2024-08-20 23:25:37 +04:00

1 line
36 KiB
JSON

{"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectSpread from \"@babel/runtime/helpers/esm/objectSpread2\";\nimport _slicedToArray from \"@babel/runtime/helpers/esm/slicedToArray\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nvar _excluded = [\"style\", \"className\", \"title\", \"eventKey\", \"warnKey\", \"disabled\", \"internalPopupClose\", \"children\", \"itemIcon\", \"expandIcon\", \"popupClassName\", \"popupOffset\", \"popupStyle\", \"onClick\", \"onMouseEnter\", \"onMouseLeave\", \"onTitleClick\", \"onTitleMouseEnter\", \"onTitleMouseLeave\"],\n _excluded2 = [\"active\"];\nimport * as React from 'react';\nimport classNames from 'classnames';\nimport Overflow from 'rc-overflow';\nimport warning from \"rc-util/es/warning\";\nimport SubMenuList from \"./SubMenuList\";\nimport { parseChildren } from \"../utils/commonUtil\";\nimport MenuContextProvider, { MenuContext } from \"../context/MenuContext\";\nimport useMemoCallback from \"../hooks/useMemoCallback\";\nimport PopupTrigger from \"./PopupTrigger\";\nimport Icon from \"../Icon\";\nimport useActive from \"../hooks/useActive\";\nimport { warnItemProp } from \"../utils/warnUtil\";\nimport useDirectionStyle from \"../hooks/useDirectionStyle\";\nimport InlineSubMenuList from \"./InlineSubMenuList\";\nimport { PathTrackerContext, PathUserContext, useFullPath, useMeasure } from \"../context/PathContext\";\nimport { useMenuId } from \"../context/IdContext\";\nimport PrivateContext from \"../context/PrivateContext\";\nvar InternalSubMenu = /*#__PURE__*/React.forwardRef(function (props, ref) {\n var _classNames;\n var style = props.style,\n className = props.className,\n title = props.title,\n eventKey = props.eventKey,\n warnKey = props.warnKey,\n disabled = props.disabled,\n internalPopupClose = props.internalPopupClose,\n children = props.children,\n itemIcon = props.itemIcon,\n expandIcon = props.expandIcon,\n popupClassName = props.popupClassName,\n popupOffset = props.popupOffset,\n popupStyle = props.popupStyle,\n onClick = props.onClick,\n onMouseEnter = props.onMouseEnter,\n onMouseLeave = props.onMouseLeave,\n onTitleClick = props.onTitleClick,\n onTitleMouseEnter = props.onTitleMouseEnter,\n onTitleMouseLeave = props.onTitleMouseLeave,\n restProps = _objectWithoutProperties(props, _excluded);\n var domDataId = useMenuId(eventKey);\n var _React$useContext = React.useContext(MenuContext),\n prefixCls = _React$useContext.prefixCls,\n mode = _React$useContext.mode,\n openKeys = _React$useContext.openKeys,\n contextDisabled = _React$useContext.disabled,\n overflowDisabled = _React$useContext.overflowDisabled,\n activeKey = _React$useContext.activeKey,\n selectedKeys = _React$useContext.selectedKeys,\n contextItemIcon = _React$useContext.itemIcon,\n contextExpandIcon = _React$useContext.expandIcon,\n onItemClick = _React$useContext.onItemClick,\n onOpenChange = _React$useContext.onOpenChange,\n onActive = _React$useContext.onActive;\n var _React$useContext2 = React.useContext(PrivateContext),\n _internalRenderSubMenuItem = _React$useContext2._internalRenderSubMenuItem;\n var _React$useContext3 = React.useContext(PathUserContext),\n isSubPathKey = _React$useContext3.isSubPathKey;\n var connectedPath = useFullPath();\n var subMenuPrefixCls = \"\".concat(prefixCls, \"-submenu\");\n var mergedDisabled = contextDisabled || disabled;\n var elementRef = React.useRef();\n var popupRef = React.useRef();\n\n // ================================ Warn ================================\n if (process.env.NODE_ENV !== 'production' && warnKey) {\n warning(false, 'SubMenu should not leave undefined `key`.');\n }\n\n // ================================ Icon ================================\n var mergedItemIcon = itemIcon !== null && itemIcon !== void 0 ? itemIcon : contextItemIcon;\n var mergedExpandIcon = expandIcon !== null && expandIcon !== void 0 ? expandIcon : contextExpandIcon;\n\n // ================================ Open ================================\n var originOpen = openKeys.includes(eventKey);\n var open = !overflowDisabled && originOpen;\n\n // =============================== Select ===============================\n var childrenSelected = isSubPathKey(selectedKeys, eventKey);\n\n // =============================== Active ===============================\n var _useActive = useActive(eventKey, mergedDisabled, onTitleMouseEnter, onTitleMouseLeave),\n active = _useActive.active,\n activeProps = _objectWithoutProperties(_useActive, _excluded2);\n\n // Fallback of active check to avoid hover on menu title or disabled item\n var _React$useState = React.useState(false),\n _React$useState2 = _slicedToArray(_React$useState, 2),\n childrenActive = _React$useState2[0],\n setChildrenActive = _React$useState2[1];\n var triggerChildrenActive = function triggerChildrenActive(newActive) {\n if (!mergedDisabled) {\n setChildrenActive(newActive);\n }\n };\n var onInternalMouseEnter = function onInternalMouseEnter(domEvent) {\n triggerChildrenActive(true);\n onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter({\n key: eventKey,\n domEvent: domEvent\n });\n };\n var onInternalMouseLeave = function onInternalMouseLeave(domEvent) {\n triggerChildrenActive(false);\n onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave({\n key: eventKey,\n domEvent: domEvent\n });\n };\n var mergedActive = React.useMemo(function () {\n if (active) {\n return active;\n }\n if (mode !== 'inline') {\n return childrenActive || isSubPathKey([activeKey], eventKey);\n }\n return false;\n }, [mode, active, activeKey, childrenActive, eventKey, isSubPathKey]);\n\n // ========================== DirectionStyle ==========================\n var directionStyle = useDirectionStyle(connectedPath.length);\n\n // =============================== Events ===============================\n // >>>> Title click\n var onInternalTitleClick = function onInternalTitleClick(e) {\n // Skip if disabled\n if (mergedDisabled) {\n return;\n }\n onTitleClick === null || onTitleClick === void 0 ? void 0 : onTitleClick({\n key: eventKey,\n domEvent: e\n });\n\n // Trigger open by click when mode is `inline`\n if (mode === 'inline') {\n onOpenChange(eventKey, !originOpen);\n }\n };\n\n // >>>> Context for children click\n var onMergedItemClick = useMemoCallback(function (info) {\n onClick === null || onClick === void 0 ? void 0 : onClick(warnItemProp(info));\n onItemClick(info);\n });\n\n // >>>>> Visible change\n var onPopupVisibleChange = function onPopupVisibleChange(newVisible) {\n if (mode !== 'inline') {\n onOpenChange(eventKey, newVisible);\n }\n };\n\n /**\n * Used for accessibility. Helper will focus element without key board.\n * We should manually trigger an active\n */\n var onInternalFocus = function onInternalFocus() {\n onActive(eventKey);\n };\n\n // =============================== Render ===============================\n var popupId = domDataId && \"\".concat(domDataId, \"-popup\");\n\n // >>>>> Title\n var titleNode = /*#__PURE__*/React.createElement(\"div\", _extends({\n role: \"menuitem\",\n style: directionStyle,\n className: \"\".concat(subMenuPrefixCls, \"-title\"),\n tabIndex: mergedDisabled ? null : -1,\n ref: elementRef,\n title: typeof title === 'string' ? title : null,\n \"data-menu-id\": overflowDisabled && domDataId ? null : domDataId,\n \"aria-expanded\": open,\n \"aria-haspopup\": true,\n \"aria-controls\": popupId,\n \"aria-disabled\": mergedDisabled,\n onClick: onInternalTitleClick,\n onFocus: onInternalFocus\n }, activeProps), title, /*#__PURE__*/React.createElement(Icon, {\n icon: mode !== 'horizontal' ? mergedExpandIcon : undefined,\n props: _objectSpread(_objectSpread({}, props), {}, {\n isOpen: open,\n // [Legacy] Not sure why need this mark\n isSubMenu: true\n })\n }, /*#__PURE__*/React.createElement(\"i\", {\n className: \"\".concat(subMenuPrefixCls, \"-arrow\")\n })));\n\n // Cache mode if it change to `inline` which do not have popup motion\n var triggerModeRef = React.useRef(mode);\n if (mode !== 'inline' && connectedPath.length > 1) {\n triggerModeRef.current = 'vertical';\n } else {\n triggerModeRef.current = mode;\n }\n if (!overflowDisabled) {\n var triggerMode = triggerModeRef.current;\n\n // Still wrap with Trigger here since we need avoid react re-mount dom node\n // Which makes motion failed\n titleNode = /*#__PURE__*/React.createElement(PopupTrigger, {\n mode: triggerMode,\n prefixCls: subMenuPrefixCls,\n visible: !internalPopupClose && open && mode !== 'inline',\n popupClassName: popupClassName,\n popupOffset: popupOffset,\n popupStyle: popupStyle,\n popup: /*#__PURE__*/React.createElement(MenuContextProvider\n // Special handle of horizontal mode\n , {\n mode: triggerMode === 'horizontal' ? 'vertical' : triggerMode\n }, /*#__PURE__*/React.createElement(SubMenuList, {\n id: popupId,\n ref: popupRef\n }, children)),\n disabled: mergedDisabled,\n onVisibleChange: onPopupVisibleChange\n }, titleNode);\n }\n\n // >>>>> List node\n var listNode = /*#__PURE__*/React.createElement(Overflow.Item, _extends({\n ref: ref,\n role: \"none\"\n }, restProps, {\n component: \"li\",\n style: style,\n className: classNames(subMenuPrefixCls, \"\".concat(subMenuPrefixCls, \"-\").concat(mode), className, (_classNames = {}, _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-open\"), open), _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-active\"), mergedActive), _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-selected\"), childrenSelected), _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-disabled\"), mergedDisabled), _classNames)),\n onMouseEnter: onInternalMouseEnter,\n onMouseLeave: onInternalMouseLeave\n }), titleNode, !overflowDisabled && /*#__PURE__*/React.createElement(InlineSubMenuList, {\n id: popupId,\n open: open,\n keyPath: connectedPath\n }, children));\n if (_internalRenderSubMenuItem) {\n listNode = _internalRenderSubMenuItem(listNode, props, {\n selected: childrenSelected,\n active: mergedActive,\n open: open,\n disabled: mergedDisabled\n });\n }\n\n // >>>>> Render\n return /*#__PURE__*/React.createElement(MenuContextProvider, {\n onItemClick: onMergedItemClick,\n mode: mode === 'horizontal' ? 'vertical' : mode,\n itemIcon: mergedItemIcon,\n expandIcon: mergedExpandIcon\n }, listNode);\n});\nvar SubMenu = /*#__PURE__*/React.forwardRef(function (props, ref) {\n var eventKey = props.eventKey,\n children = props.children;\n var connectedKeyPath = useFullPath(eventKey);\n var childList = parseChildren(children, connectedKeyPath);\n\n // ==================== Record KeyPath ====================\n var measure = useMeasure();\n\n // eslint-disable-next-line consistent-return\n React.useEffect(function () {\n if (measure) {\n measure.registerPath(eventKey, connectedKeyPath);\n return function () {\n measure.unregisterPath(eventKey, connectedKeyPath);\n };\n }\n }, [connectedKeyPath]);\n var renderNode;\n\n // ======================== Render ========================\n if (measure) {\n renderNode = childList;\n } else {\n renderNode = /*#__PURE__*/React.createElement(InternalSubMenu, _extends({\n ref: ref\n }, props), childList);\n }\n return /*#__PURE__*/React.createElement(PathTrackerContext.Provider, {\n value: connectedKeyPath\n }, renderNode);\n});\nif (process.env.NODE_ENV !== 'production') {\n SubMenu.displayName = 'SubMenu';\n}\nexport default SubMenu;","map":{"version":3,"names":["_defineProperty","_extends","_objectSpread","_slicedToArray","_objectWithoutProperties","_excluded","_excluded2","React","classNames","Overflow","warning","SubMenuList","parseChildren","MenuContextProvider","MenuContext","useMemoCallback","PopupTrigger","Icon","useActive","warnItemProp","useDirectionStyle","InlineSubMenuList","PathTrackerContext","PathUserContext","useFullPath","useMeasure","useMenuId","PrivateContext","InternalSubMenu","forwardRef","props","ref","_classNames","style","className","title","eventKey","warnKey","disabled","internalPopupClose","children","itemIcon","expandIcon","popupClassName","popupOffset","popupStyle","onClick","onMouseEnter","onMouseLeave","onTitleClick","onTitleMouseEnter","onTitleMouseLeave","restProps","domDataId","_React$useContext","useContext","prefixCls","mode","openKeys","contextDisabled","overflowDisabled","activeKey","selectedKeys","contextItemIcon","contextExpandIcon","onItemClick","onOpenChange","onActive","_React$useContext2","_internalRenderSubMenuItem","_React$useContext3","isSubPathKey","connectedPath","subMenuPrefixCls","concat","mergedDisabled","elementRef","useRef","popupRef","process","env","NODE_ENV","mergedItemIcon","mergedExpandIcon","originOpen","includes","open","childrenSelected","_useActive","active","activeProps","_React$useState","useState","_React$useState2","childrenActive","setChildrenActive","triggerChildrenActive","newActive","onInternalMouseEnter","domEvent","key","onInternalMouseLeave","mergedActive","useMemo","directionStyle","length","onInternalTitleClick","e","onMergedItemClick","info","onPopupVisibleChange","newVisible","onInternalFocus","popupId","titleNode","createElement","role","tabIndex","onFocus","icon","undefined","isOpen","isSubMenu","triggerModeRef","current","triggerMode","visible","popup","id","onVisibleChange","listNode","Item","component","keyPath","selected","SubMenu","connectedKeyPath","childList","measure","useEffect","registerPath","unregisterPath","renderNode","Provider","value","displayName"],"sources":["C:/Users/Аришина)/Desktop/promo/node_modules/rc-menu/es/SubMenu/index.js"],"sourcesContent":["import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nimport _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectSpread from \"@babel/runtime/helpers/esm/objectSpread2\";\nimport _slicedToArray from \"@babel/runtime/helpers/esm/slicedToArray\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nvar _excluded = [\"style\", \"className\", \"title\", \"eventKey\", \"warnKey\", \"disabled\", \"internalPopupClose\", \"children\", \"itemIcon\", \"expandIcon\", \"popupClassName\", \"popupOffset\", \"popupStyle\", \"onClick\", \"onMouseEnter\", \"onMouseLeave\", \"onTitleClick\", \"onTitleMouseEnter\", \"onTitleMouseLeave\"],\n _excluded2 = [\"active\"];\nimport * as React from 'react';\nimport classNames from 'classnames';\nimport Overflow from 'rc-overflow';\nimport warning from \"rc-util/es/warning\";\nimport SubMenuList from \"./SubMenuList\";\nimport { parseChildren } from \"../utils/commonUtil\";\nimport MenuContextProvider, { MenuContext } from \"../context/MenuContext\";\nimport useMemoCallback from \"../hooks/useMemoCallback\";\nimport PopupTrigger from \"./PopupTrigger\";\nimport Icon from \"../Icon\";\nimport useActive from \"../hooks/useActive\";\nimport { warnItemProp } from \"../utils/warnUtil\";\nimport useDirectionStyle from \"../hooks/useDirectionStyle\";\nimport InlineSubMenuList from \"./InlineSubMenuList\";\nimport { PathTrackerContext, PathUserContext, useFullPath, useMeasure } from \"../context/PathContext\";\nimport { useMenuId } from \"../context/IdContext\";\nimport PrivateContext from \"../context/PrivateContext\";\nvar InternalSubMenu = /*#__PURE__*/React.forwardRef(function (props, ref) {\n var _classNames;\n var style = props.style,\n className = props.className,\n title = props.title,\n eventKey = props.eventKey,\n warnKey = props.warnKey,\n disabled = props.disabled,\n internalPopupClose = props.internalPopupClose,\n children = props.children,\n itemIcon = props.itemIcon,\n expandIcon = props.expandIcon,\n popupClassName = props.popupClassName,\n popupOffset = props.popupOffset,\n popupStyle = props.popupStyle,\n onClick = props.onClick,\n onMouseEnter = props.onMouseEnter,\n onMouseLeave = props.onMouseLeave,\n onTitleClick = props.onTitleClick,\n onTitleMouseEnter = props.onTitleMouseEnter,\n onTitleMouseLeave = props.onTitleMouseLeave,\n restProps = _objectWithoutProperties(props, _excluded);\n var domDataId = useMenuId(eventKey);\n var _React$useContext = React.useContext(MenuContext),\n prefixCls = _React$useContext.prefixCls,\n mode = _React$useContext.mode,\n openKeys = _React$useContext.openKeys,\n contextDisabled = _React$useContext.disabled,\n overflowDisabled = _React$useContext.overflowDisabled,\n activeKey = _React$useContext.activeKey,\n selectedKeys = _React$useContext.selectedKeys,\n contextItemIcon = _React$useContext.itemIcon,\n contextExpandIcon = _React$useContext.expandIcon,\n onItemClick = _React$useContext.onItemClick,\n onOpenChange = _React$useContext.onOpenChange,\n onActive = _React$useContext.onActive;\n var _React$useContext2 = React.useContext(PrivateContext),\n _internalRenderSubMenuItem = _React$useContext2._internalRenderSubMenuItem;\n var _React$useContext3 = React.useContext(PathUserContext),\n isSubPathKey = _React$useContext3.isSubPathKey;\n var connectedPath = useFullPath();\n var subMenuPrefixCls = \"\".concat(prefixCls, \"-submenu\");\n var mergedDisabled = contextDisabled || disabled;\n var elementRef = React.useRef();\n var popupRef = React.useRef();\n\n // ================================ Warn ================================\n if (process.env.NODE_ENV !== 'production' && warnKey) {\n warning(false, 'SubMenu should not leave undefined `key`.');\n }\n\n // ================================ Icon ================================\n var mergedItemIcon = itemIcon !== null && itemIcon !== void 0 ? itemIcon : contextItemIcon;\n var mergedExpandIcon = expandIcon !== null && expandIcon !== void 0 ? expandIcon : contextExpandIcon;\n\n // ================================ Open ================================\n var originOpen = openKeys.includes(eventKey);\n var open = !overflowDisabled && originOpen;\n\n // =============================== Select ===============================\n var childrenSelected = isSubPathKey(selectedKeys, eventKey);\n\n // =============================== Active ===============================\n var _useActive = useActive(eventKey, mergedDisabled, onTitleMouseEnter, onTitleMouseLeave),\n active = _useActive.active,\n activeProps = _objectWithoutProperties(_useActive, _excluded2);\n\n // Fallback of active check to avoid hover on menu title or disabled item\n var _React$useState = React.useState(false),\n _React$useState2 = _slicedToArray(_React$useState, 2),\n childrenActive = _React$useState2[0],\n setChildrenActive = _React$useState2[1];\n var triggerChildrenActive = function triggerChildrenActive(newActive) {\n if (!mergedDisabled) {\n setChildrenActive(newActive);\n }\n };\n var onInternalMouseEnter = function onInternalMouseEnter(domEvent) {\n triggerChildrenActive(true);\n onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter({\n key: eventKey,\n domEvent: domEvent\n });\n };\n var onInternalMouseLeave = function onInternalMouseLeave(domEvent) {\n triggerChildrenActive(false);\n onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave({\n key: eventKey,\n domEvent: domEvent\n });\n };\n var mergedActive = React.useMemo(function () {\n if (active) {\n return active;\n }\n if (mode !== 'inline') {\n return childrenActive || isSubPathKey([activeKey], eventKey);\n }\n return false;\n }, [mode, active, activeKey, childrenActive, eventKey, isSubPathKey]);\n\n // ========================== DirectionStyle ==========================\n var directionStyle = useDirectionStyle(connectedPath.length);\n\n // =============================== Events ===============================\n // >>>> Title click\n var onInternalTitleClick = function onInternalTitleClick(e) {\n // Skip if disabled\n if (mergedDisabled) {\n return;\n }\n onTitleClick === null || onTitleClick === void 0 ? void 0 : onTitleClick({\n key: eventKey,\n domEvent: e\n });\n\n // Trigger open by click when mode is `inline`\n if (mode === 'inline') {\n onOpenChange(eventKey, !originOpen);\n }\n };\n\n // >>>> Context for children click\n var onMergedItemClick = useMemoCallback(function (info) {\n onClick === null || onClick === void 0 ? void 0 : onClick(warnItemProp(info));\n onItemClick(info);\n });\n\n // >>>>> Visible change\n var onPopupVisibleChange = function onPopupVisibleChange(newVisible) {\n if (mode !== 'inline') {\n onOpenChange(eventKey, newVisible);\n }\n };\n\n /**\n * Used for accessibility. Helper will focus element without key board.\n * We should manually trigger an active\n */\n var onInternalFocus = function onInternalFocus() {\n onActive(eventKey);\n };\n\n // =============================== Render ===============================\n var popupId = domDataId && \"\".concat(domDataId, \"-popup\");\n\n // >>>>> Title\n var titleNode = /*#__PURE__*/React.createElement(\"div\", _extends({\n role: \"menuitem\",\n style: directionStyle,\n className: \"\".concat(subMenuPrefixCls, \"-title\"),\n tabIndex: mergedDisabled ? null : -1,\n ref: elementRef,\n title: typeof title === 'string' ? title : null,\n \"data-menu-id\": overflowDisabled && domDataId ? null : domDataId,\n \"aria-expanded\": open,\n \"aria-haspopup\": true,\n \"aria-controls\": popupId,\n \"aria-disabled\": mergedDisabled,\n onClick: onInternalTitleClick,\n onFocus: onInternalFocus\n }, activeProps), title, /*#__PURE__*/React.createElement(Icon, {\n icon: mode !== 'horizontal' ? mergedExpandIcon : undefined,\n props: _objectSpread(_objectSpread({}, props), {}, {\n isOpen: open,\n // [Legacy] Not sure why need this mark\n isSubMenu: true\n })\n }, /*#__PURE__*/React.createElement(\"i\", {\n className: \"\".concat(subMenuPrefixCls, \"-arrow\")\n })));\n\n // Cache mode if it change to `inline` which do not have popup motion\n var triggerModeRef = React.useRef(mode);\n if (mode !== 'inline' && connectedPath.length > 1) {\n triggerModeRef.current = 'vertical';\n } else {\n triggerModeRef.current = mode;\n }\n if (!overflowDisabled) {\n var triggerMode = triggerModeRef.current;\n\n // Still wrap with Trigger here since we need avoid react re-mount dom node\n // Which makes motion failed\n titleNode = /*#__PURE__*/React.createElement(PopupTrigger, {\n mode: triggerMode,\n prefixCls: subMenuPrefixCls,\n visible: !internalPopupClose && open && mode !== 'inline',\n popupClassName: popupClassName,\n popupOffset: popupOffset,\n popupStyle: popupStyle,\n popup: /*#__PURE__*/React.createElement(MenuContextProvider\n // Special handle of horizontal mode\n , {\n mode: triggerMode === 'horizontal' ? 'vertical' : triggerMode\n }, /*#__PURE__*/React.createElement(SubMenuList, {\n id: popupId,\n ref: popupRef\n }, children)),\n disabled: mergedDisabled,\n onVisibleChange: onPopupVisibleChange\n }, titleNode);\n }\n\n // >>>>> List node\n var listNode = /*#__PURE__*/React.createElement(Overflow.Item, _extends({\n ref: ref,\n role: \"none\"\n }, restProps, {\n component: \"li\",\n style: style,\n className: classNames(subMenuPrefixCls, \"\".concat(subMenuPrefixCls, \"-\").concat(mode), className, (_classNames = {}, _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-open\"), open), _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-active\"), mergedActive), _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-selected\"), childrenSelected), _defineProperty(_classNames, \"\".concat(subMenuPrefixCls, \"-disabled\"), mergedDisabled), _classNames)),\n onMouseEnter: onInternalMouseEnter,\n onMouseLeave: onInternalMouseLeave\n }), titleNode, !overflowDisabled && /*#__PURE__*/React.createElement(InlineSubMenuList, {\n id: popupId,\n open: open,\n keyPath: connectedPath\n }, children));\n if (_internalRenderSubMenuItem) {\n listNode = _internalRenderSubMenuItem(listNode, props, {\n selected: childrenSelected,\n active: mergedActive,\n open: open,\n disabled: mergedDisabled\n });\n }\n\n // >>>>> Render\n return /*#__PURE__*/React.createElement(MenuContextProvider, {\n onItemClick: onMergedItemClick,\n mode: mode === 'horizontal' ? 'vertical' : mode,\n itemIcon: mergedItemIcon,\n expandIcon: mergedExpandIcon\n }, listNode);\n});\nvar SubMenu = /*#__PURE__*/React.forwardRef(function (props, ref) {\n var eventKey = props.eventKey,\n children = props.children;\n var connectedKeyPath = useFullPath(eventKey);\n var childList = parseChildren(children, connectedKeyPath);\n\n // ==================== Record KeyPath ====================\n var measure = useMeasure();\n\n // eslint-disable-next-line consistent-return\n React.useEffect(function () {\n if (measure) {\n measure.registerPath(eventKey, connectedKeyPath);\n return function () {\n measure.unregisterPath(eventKey, connectedKeyPath);\n };\n }\n }, [connectedKeyPath]);\n var renderNode;\n\n // ======================== Render ========================\n if (measure) {\n renderNode = childList;\n } else {\n renderNode = /*#__PURE__*/React.createElement(InternalSubMenu, _extends({\n ref: ref\n }, props), childList);\n }\n return /*#__PURE__*/React.createElement(PathTrackerContext.Provider, {\n value: connectedKeyPath\n }, renderNode);\n});\nif (process.env.NODE_ENV !== 'production') {\n SubMenu.displayName = 'SubMenu';\n}\nexport default SubMenu;"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}