@szhsin/react-menu
Version:
React component for building accessible menu, dropdown, submenu, context menu, and more
18 lines (15 loc) • 386 B
JavaScript
;
const placeArrowVertical = ({
arrowRef,
menuY,
anchorRect,
containerRect,
menuRect
}) => {
let y = anchorRect.top - containerRect.top - menuY + anchorRect.height / 2;
const offset = arrowRef.current.offsetHeight * 1.25;
y = Math.max(offset, y);
y = Math.min(y, menuRect.height - offset);
return y;
};
exports.placeArrowVertical = placeArrowVertical;