You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
4.5 KiB

import classNames from 'classnames';
import * as React from 'react';
import { useContext } from 'react';
import { useDropdownMenu } from '@restart/ui/DropdownMenu';
import useIsomorphicEffect from '@restart/hooks/useIsomorphicEffect';
import useMergedRefs from '@restart/hooks/useMergedRefs';
import warning from 'warning';
import DropdownContext from './DropdownContext';
import InputGroupContext from './InputGroupContext';
import NavbarContext from './NavbarContext';
import { useBootstrapPrefix } from './ThemeProvider';
import useWrappedRefWithWarning from './useWrappedRefWithWarning';
import { alignPropType } from './types';
import { jsx as _jsx } from "react/jsx-runtime";
const defaultProps = {
flip: true
};
export function getDropdownMenuPlacement(alignEnd, dropDirection, isRTL) {
const topStart = isRTL ? 'top-end' : 'top-start';
const topEnd = isRTL ? 'top-start' : 'top-end';
const bottomStart = isRTL ? 'bottom-end' : 'bottom-start';
const bottomEnd = isRTL ? 'bottom-start' : 'bottom-end';
const leftStart = isRTL ? 'right-start' : 'left-start';
const leftEnd = isRTL ? 'right-end' : 'left-end';
const rightStart = isRTL ? 'left-start' : 'right-start';
const rightEnd = isRTL ? 'left-end' : 'right-end';
let placement = alignEnd ? bottomEnd : bottomStart;
if (dropDirection === 'up') placement = alignEnd ? topEnd : topStart;else if (dropDirection === 'end') placement = alignEnd ? rightEnd : rightStart;else if (dropDirection === 'start') placement = alignEnd ? leftEnd : leftStart;
return placement;
}
const DropdownMenu = /*#__PURE__*/React.forwardRef(({
bsPrefix,
className,
align,
rootCloseEvent,
flip,
show: showProps,
renderOnMount,
// Need to define the default "as" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595
as: Component = 'div',
popperConfig,
variant,
...props
}, ref) => {
let alignEnd = false;
const isNavbar = useContext(NavbarContext);
const prefix = useBootstrapPrefix(bsPrefix, 'dropdown-menu');
const {
align: contextAlign,
drop,
isRTL
} = useContext(DropdownContext);
align = align || contextAlign;
const isInputGroup = useContext(InputGroupContext);
const alignClasses = [];
if (align) {
if (typeof align === 'object') {
const 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) {
const brkPoint = keys[0];
const direction = align[brkPoint]; // .dropdown-menu-end is required for responsively aligning
// left in addition to align left classes.
alignEnd = direction === 'start';
alignClasses.push(`${prefix}-${brkPoint}-${direction}`);
}
} else if (align === 'end') {
alignEnd = true;
}
}
const placement = getDropdownMenuPlacement(alignEnd, drop, isRTL);
const [menuProps, {
hasShown,
popper,
show,
toggle
}] = useDropdownMenu({
flip,
rootCloseEvent,
show: showProps,
usePopper: !isNavbar && alignClasses.length === 0,
offset: [0, 2],
popperConfig,
placement
});
menuProps.ref = useMergedRefs(useWrappedRefWithWarning(ref, 'DropdownMenu'), menuProps.ref);
useIsomorphicEffect(() => {
// Popper's initial position for the menu is incorrect when
// renderOnMount=true. Need to call update() to correct it.
if (show) popper == null ? void 0 : popper.update();
}, [show]);
if (!hasShown && !renderOnMount && !isInputGroup) return null; // For custom components provide additional, non-DOM, props;
if (typeof Component !== 'string') {
menuProps.show = show;
menuProps.close = () => toggle == null ? void 0 : toggle(false);
menuProps.align = align;
}
let style = props.style;
if (popper != null && popper.placement) {
// we don't need the default popper style,
// menus are display: none when not shown.
style = { ...props.style,
...menuProps.style
};
props['x-placement'] = popper.placement;
}
return /*#__PURE__*/_jsx(Component, { ...props,
...menuProps,
style: style // Bootstrap css requires this data attrib to style responsive menus.
,
...((alignClasses.length || isNavbar) && {
'data-bs-popper': 'static'
}),
className: classNames(className, prefix, show && 'show', alignEnd && `${prefix}-end`, variant && `${prefix}-${variant}`, ...alignClasses)
});
});
DropdownMenu.displayName = 'DropdownMenu';
DropdownMenu.defaultProps = defaultProps;
export default DropdownMenu;