UNPKG

@react-aria/menu

Version:
203 lines (194 loc) • 10.5 kB
import {menuData as $fc79756100351201$export$6f49b4016bfc8d56} from "./utils.mjs"; import {useRouter as $7Kjv5$useRouter, useSlotId as $7Kjv5$useSlotId, handleLinkClick as $7Kjv5$handleLinkClick, filterDOMProps as $7Kjv5$filterDOMProps, useLinkProps as $7Kjv5$useLinkProps, mergeProps as $7Kjv5$mergeProps} from "@react-aria/utils"; import {getItemCount as $7Kjv5$getItemCount} from "@react-stately/collections"; import {usePress as $7Kjv5$usePress, useHover as $7Kjv5$useHover, isFocusVisible as $7Kjv5$isFocusVisible, useKeyboard as $7Kjv5$useKeyboard, useFocus as $7Kjv5$useFocus} from "@react-aria/interactions"; import {useRef as $7Kjv5$useRef} from "react"; import {useSelectableItem as $7Kjv5$useSelectableItem} from "@react-aria/selection"; /* * Copyright 2020 Adobe. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ function $a2e5df62f93c7633$export$9d32628fc2aea7da(props, state, ref) { let { id: id, key: key, closeOnSelect: closeOnSelect, isVirtualized: isVirtualized, 'aria-haspopup': hasPopup, onPressStart: pressStartProp, onPressUp: pressUpProp, onPress: onPress, onPressChange: pressChangeProp, onPressEnd: onPressEnd, onClick: onClickProp, onHoverStart: hoverStartProp, onHoverChange: onHoverChange, onHoverEnd: onHoverEnd, onKeyDown: onKeyDown, onKeyUp: onKeyUp, onFocus: onFocus, onFocusChange: onFocusChange, onBlur: onBlur, selectionManager: selectionManager = state.selectionManager } = props; let isTrigger = !!hasPopup; let isTriggerExpanded = isTrigger && props['aria-expanded'] === 'true'; var _props_isDisabled; let isDisabled = (_props_isDisabled = props.isDisabled) !== null && _props_isDisabled !== void 0 ? _props_isDisabled : selectionManager.isDisabled(key); var _props_isSelected; let isSelected = (_props_isSelected = props.isSelected) !== null && _props_isSelected !== void 0 ? _props_isSelected : selectionManager.isSelected(key); let data = (0, $fc79756100351201$export$6f49b4016bfc8d56).get(state); let item = state.collection.getItem(key); let onClose = props.onClose || data.onClose; let router = (0, $7Kjv5$useRouter)(); let performAction = ()=>{ var _item_props; if (isTrigger) return; if (item === null || item === void 0 ? void 0 : (_item_props = item.props) === null || _item_props === void 0 ? void 0 : _item_props.onAction) item.props.onAction(); else if (props.onAction) props.onAction(key); if (data.onAction) { // Must reassign to variable otherwise `this` binding gets messed up. Something to do with WeakMap. let onAction = data.onAction; onAction(key); } }; let role = 'menuitem'; if (!isTrigger) { if (selectionManager.selectionMode === 'single') role = 'menuitemradio'; else if (selectionManager.selectionMode === 'multiple') role = 'menuitemcheckbox'; } let labelId = (0, $7Kjv5$useSlotId)(); let descriptionId = (0, $7Kjv5$useSlotId)(); let keyboardId = (0, $7Kjv5$useSlotId)(); let ariaProps = { id: id, 'aria-disabled': isDisabled || undefined, role: role, 'aria-label': props['aria-label'], 'aria-labelledby': labelId, 'aria-describedby': [ descriptionId, keyboardId ].filter(Boolean).join(' ') || undefined, 'aria-controls': props['aria-controls'], 'aria-haspopup': hasPopup, 'aria-expanded': props['aria-expanded'] }; if (selectionManager.selectionMode !== 'none' && !isTrigger) ariaProps['aria-checked'] = isSelected; if (isVirtualized) { ariaProps['aria-posinset'] = item === null || item === void 0 ? void 0 : item.index; ariaProps['aria-setsize'] = (0, $7Kjv5$getItemCount)(state.collection); } let onPressStart = (e)=>{ // Trigger native click event on keydown unless this is a link (the browser will trigger onClick then). if (e.pointerType === 'keyboard' && !selectionManager.isLink(key)) e.target.click(); pressStartProp === null || pressStartProp === void 0 ? void 0 : pressStartProp(e); }; let isPressedRef = (0, $7Kjv5$useRef)(false); let onPressChange = (isPressed)=>{ pressChangeProp === null || pressChangeProp === void 0 ? void 0 : pressChangeProp(isPressed); isPressedRef.current = isPressed; }; let onPressUp = (e)=>{ // If interacting with mouse, allow the user to mouse down on the trigger button, // drag, and release over an item (matching native behavior). if (e.pointerType === 'mouse') { if (!isPressedRef.current) e.target.click(); } // Pressing a menu item should close by default in single selection mode but not multiple // selection mode, except if overridden by the closeOnSelect prop. if (e.pointerType !== 'keyboard' && !isTrigger && onClose && (closeOnSelect !== null && closeOnSelect !== void 0 ? closeOnSelect : selectionManager.selectionMode !== 'multiple' || selectionManager.isLink(key))) onClose(); pressUpProp === null || pressUpProp === void 0 ? void 0 : pressUpProp(e); }; let onClick = (e)=>{ onClickProp === null || onClickProp === void 0 ? void 0 : onClickProp(e); performAction(); (0, $7Kjv5$handleLinkClick)(e, router, item.props.href, item === null || item === void 0 ? void 0 : item.props.routerOptions); }; let { itemProps: itemProps, isFocused: isFocused } = (0, $7Kjv5$useSelectableItem)({ id: id, selectionManager: selectionManager, key: key, ref: ref, shouldSelectOnPressUp: true, allowsDifferentPressOrigin: true, // Disable all handling of links in useSelectable item // because we handle it ourselves. The behavior of menus // is slightly different from other collections because // actions are performed on key down rather than key up. linkBehavior: 'none', shouldUseVirtualFocus: data.shouldUseVirtualFocus }); let { pressProps: pressProps, isPressed: isPressed } = (0, $7Kjv5$usePress)({ onPressStart: onPressStart, onPress: onPress, onPressUp: onPressUp, onPressChange: onPressChange, onPressEnd: onPressEnd, isDisabled: isDisabled }); let { hoverProps: hoverProps } = (0, $7Kjv5$useHover)({ isDisabled: isDisabled, onHoverStart (e) { // Hovering over an already expanded sub dialog trigger should keep focus in the dialog. if (!(0, $7Kjv5$isFocusVisible)() && !(isTriggerExpanded && hasPopup)) { selectionManager.setFocused(true); selectionManager.setFocusedKey(key); } hoverStartProp === null || hoverStartProp === void 0 ? void 0 : hoverStartProp(e); }, onHoverChange: onHoverChange, onHoverEnd: onHoverEnd }); let { keyboardProps: keyboardProps } = (0, $7Kjv5$useKeyboard)({ onKeyDown: (e)=>{ // Ignore repeating events, which may have started on the menu trigger before moving // focus to the menu item. We want to wait for a second complete key press sequence. if (e.repeat) { e.continuePropagation(); return; } switch(e.key){ case ' ': if (!isDisabled && selectionManager.selectionMode === 'none' && !isTrigger && closeOnSelect !== false && onClose) onClose(); break; case 'Enter': // The Enter key should always close on select, except if overridden. if (!isDisabled && closeOnSelect !== false && !isTrigger && onClose) onClose(); break; default: if (!isTrigger) e.continuePropagation(); onKeyDown === null || onKeyDown === void 0 ? void 0 : onKeyDown(e); break; } }, onKeyUp: onKeyUp }); let { focusProps: focusProps } = (0, $7Kjv5$useFocus)({ onBlur: onBlur, onFocus: onFocus, onFocusChange: onFocusChange }); let domProps = (0, $7Kjv5$filterDOMProps)(item === null || item === void 0 ? void 0 : item.props); delete domProps.id; let linkProps = (0, $7Kjv5$useLinkProps)(item === null || item === void 0 ? void 0 : item.props); return { menuItemProps: { ...ariaProps, ...(0, $7Kjv5$mergeProps)(domProps, linkProps, isTrigger ? { onFocus: itemProps.onFocus, 'data-collection': itemProps['data-collection'], 'data-key': itemProps['data-key'] } : itemProps, pressProps, hoverProps, keyboardProps, focusProps, // Prevent DOM focus from moving on mouse down when using virtual focus or this is a submenu/subdialog trigger. data.shouldUseVirtualFocus || isTrigger ? { onMouseDown: (e)=>e.preventDefault() } : undefined, isDisabled ? undefined : { onClick: onClick }), // If a submenu is expanded, set the tabIndex to -1 so that shift tabbing goes out of the menu instead of the parent menu item. tabIndex: itemProps.tabIndex != null && isTriggerExpanded && !data.shouldUseVirtualFocus ? -1 : itemProps.tabIndex }, labelProps: { id: labelId }, descriptionProps: { id: descriptionId }, keyboardShortcutProps: { id: keyboardId }, isFocused: isFocused, isFocusVisible: isFocused && selectionManager.isFocused && (0, $7Kjv5$isFocusVisible)() && !isTriggerExpanded, isSelected: isSelected, isPressed: isPressed, isDisabled: isDisabled }; } export {$a2e5df62f93c7633$export$9d32628fc2aea7da as useMenuItem}; //# sourceMappingURL=useMenuItem.module.js.map