mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
118 lines
4.3 KiB
JavaScript
118 lines
4.3 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
var _excluded = ["bsPrefix", "className", "align", "alignRight", "rootCloseEvent", "flip", "show", "renderOnMount", "as", "popperConfig"];
|
|
import classNames from 'classnames';
|
|
import PropTypes from 'prop-types';
|
|
import React, { useContext } from 'react';
|
|
import { useDropdownMenu } from 'react-overlays/DropdownMenu';
|
|
import useMergedRefs from '@restart/hooks/useMergedRefs';
|
|
import warning from 'warning';
|
|
import NavbarContext from './NavbarContext';
|
|
import { useBootstrapPrefix } from './ThemeProvider';
|
|
import useWrappedRefWithWarning from './useWrappedRefWithWarning';
|
|
import usePopperMarginModifiers from './usePopperMarginModifiers';
|
|
var alignDirection = PropTypes.oneOf(['left', 'right']);
|
|
export var alignPropType = PropTypes.oneOfType([alignDirection, PropTypes.shape({
|
|
sm: alignDirection
|
|
}), PropTypes.shape({
|
|
md: alignDirection
|
|
}), PropTypes.shape({
|
|
lg: alignDirection
|
|
}), PropTypes.shape({
|
|
xl: alignDirection
|
|
})]);
|
|
var defaultProps = {
|
|
align: 'left',
|
|
alignRight: false,
|
|
flip: true
|
|
};
|
|
var DropdownMenu = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
var bsPrefix = _ref.bsPrefix,
|
|
className = _ref.className,
|
|
align = _ref.align,
|
|
alignRight = _ref.alignRight,
|
|
rootCloseEvent = _ref.rootCloseEvent,
|
|
flip = _ref.flip,
|
|
showProps = _ref.show,
|
|
renderOnMount = _ref.renderOnMount,
|
|
_ref$as = _ref.as,
|
|
Component = _ref$as === void 0 ? 'div' : _ref$as,
|
|
popperConfig = _ref.popperConfig,
|
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
|
|
var isNavbar = useContext(NavbarContext);
|
|
var prefix = useBootstrapPrefix(bsPrefix, 'dropdown-menu');
|
|
|
|
var _usePopperMarginModif = usePopperMarginModifiers(),
|
|
popperRef = _usePopperMarginModif[0],
|
|
marginModifiers = _usePopperMarginModif[1];
|
|
|
|
var alignClasses = [];
|
|
|
|
if (align) {
|
|
if (typeof align === 'object') {
|
|
var keys = Object.keys(align);
|
|
process.env.NODE_ENV !== "production" ? warning(keys.length === 1, 'There should only be 1 breakpoint when passing an object to `align`') : void 0;
|
|
|
|
if (keys.length) {
|
|
var brkPoint = keys[0];
|
|
var direction = align[brkPoint]; // .dropdown-menu-right is required for responsively aligning
|
|
// left in addition to align left classes.
|
|
// Reuse alignRight to toggle the class below.
|
|
|
|
alignRight = direction === 'left';
|
|
alignClasses.push(prefix + "-" + brkPoint + "-" + direction);
|
|
}
|
|
} else if (align === 'right') {
|
|
alignRight = true;
|
|
}
|
|
}
|
|
|
|
var _useDropdownMenu = useDropdownMenu({
|
|
flip: flip,
|
|
rootCloseEvent: rootCloseEvent,
|
|
show: showProps,
|
|
alignEnd: alignRight,
|
|
usePopper: !isNavbar && alignClasses.length === 0,
|
|
popperConfig: _extends({}, popperConfig, {
|
|
modifiers: marginModifiers.concat((popperConfig == null ? void 0 : popperConfig.modifiers) || [])
|
|
})
|
|
}),
|
|
menuProps = _useDropdownMenu[0],
|
|
_useDropdownMenu$ = _useDropdownMenu[1],
|
|
hasShown = _useDropdownMenu$.hasShown,
|
|
popper = _useDropdownMenu$.popper,
|
|
show = _useDropdownMenu$.show,
|
|
alignEnd = _useDropdownMenu$.alignEnd,
|
|
toggle = _useDropdownMenu$.toggle;
|
|
|
|
menuProps.ref = useMergedRefs(popperRef, useMergedRefs(useWrappedRefWithWarning(ref, 'DropdownMenu'), menuProps.ref));
|
|
if (!hasShown && !renderOnMount) return null; // For custom components provide additional, non-DOM, props;
|
|
|
|
if (typeof Component !== 'string') {
|
|
menuProps.show = show;
|
|
|
|
menuProps.close = function () {
|
|
return toggle == null ? void 0 : toggle(false);
|
|
};
|
|
|
|
menuProps.alignRight = alignEnd;
|
|
}
|
|
|
|
var style = props.style;
|
|
|
|
if (popper != null && popper.placement) {
|
|
// we don't need the default popper style,
|
|
// menus are display: none when not shown.
|
|
style = _extends({}, props.style, menuProps.style);
|
|
props['x-placement'] = popper.placement;
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement(Component, _extends({}, props, menuProps, {
|
|
style: style,
|
|
className: classNames.apply(void 0, [className, prefix, show && 'show', alignEnd && prefix + "-right"].concat(alignClasses))
|
|
}));
|
|
});
|
|
DropdownMenu.displayName = 'DropdownMenu';
|
|
DropdownMenu.defaultProps = defaultProps;
|
|
export default DropdownMenu; |