UNPKG

@szhsin/react-menu

Version:

React component for building accessible menu, dropdown, submenu, context menu, and more

18 lines (15 loc) 391 B
'use strict'; const placeArrowHorizontal = ({ arrowRef, menuX, anchorRect, containerRect, menuRect }) => { let x = anchorRect.left - containerRect.left - menuX + anchorRect.width / 2; const offset = arrowRef.current.offsetWidth * 1.25; x = Math.max(offset, x); x = Math.min(x, menuRect.width - offset); return x; }; exports.placeArrowHorizontal = placeArrowHorizontal;