Files

97 lines
3.1 KiB
JavaScript
Raw Permalink Normal View History

2026-04-05 16:14:49 -04:00
import _objectWithoutPropertiesLoose from "@babel/runtime-corejs2/helpers/esm/objectWithoutPropertiesLoose";
import _inheritsLoose from "@babel/runtime-corejs2/helpers/esm/inheritsLoose";
import _extends from "@babel/runtime-corejs2/helpers/esm/extends";
import classNames from 'classnames';
import React from 'react';
import PropTypes from 'prop-types';
import Dropdown from './Dropdown';
import splitComponentProps from './utils/splitComponentProps';
import ValidComponentChildren from './utils/ValidComponentChildren';
var propTypes = _extends({}, Dropdown.propTypes, {
// Toggle props.
title: PropTypes.node.isRequired,
noCaret: PropTypes.bool,
active: PropTypes.bool,
activeKey: PropTypes.any,
activeHref: PropTypes.string,
// Override generated docs from <Dropdown>.
/**
* @private
*/
children: PropTypes.node
});
var NavDropdown =
/*#__PURE__*/
function (_React$Component) {
_inheritsLoose(NavDropdown, _React$Component);
function NavDropdown() {
return _React$Component.apply(this, arguments) || this;
}
var _proto = NavDropdown.prototype;
_proto.isActive = function isActive(_ref, activeKey, activeHref) {
var _this = this;
var props = _ref.props;
if (props.active || activeKey != null && props.eventKey === activeKey || activeHref && props.href === activeHref) {
return true;
}
if (ValidComponentChildren.some(props.children, function (child) {
return _this.isActive(child, activeKey, activeHref);
})) {
return true;
}
return props.active;
};
_proto.render = function render() {
var _this2 = this;
var _this$props = this.props,
title = _this$props.title,
activeKey = _this$props.activeKey,
activeHref = _this$props.activeHref,
className = _this$props.className,
style = _this$props.style,
children = _this$props.children,
props = _objectWithoutPropertiesLoose(_this$props, ["title", "activeKey", "activeHref", "className", "style", "children"]);
var active = this.isActive(this, activeKey, activeHref);
delete props.active; // Accessed via this.isActive().
delete props.eventKey; // Accessed via this.isActive().
var _splitComponentProps = splitComponentProps(props, Dropdown.ControlledComponent),
dropdownProps = _splitComponentProps[0],
toggleProps = _splitComponentProps[1]; // Unlike for the other dropdowns, styling needs to go to the `<Dropdown>`
// rather than the `<Dropdown.Toggle>`.
return React.createElement(Dropdown, _extends({}, dropdownProps, {
componentClass: "li",
className: classNames(className, {
active: active
}),
style: style
}), React.createElement(Dropdown.Toggle, _extends({}, toggleProps, {
useAnchor: true
}), title), React.createElement(Dropdown.Menu, null, ValidComponentChildren.map(children, function (child) {
return React.cloneElement(child, {
active: _this2.isActive(child, activeKey, activeHref)
});
})));
};
return NavDropdown;
}(React.Component);
NavDropdown.propTypes = propTypes;
export default NavDropdown;