@react-aria/selection 3.8.1 → 3.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +55 -25
- package/dist/main.js.map +1 -1
- package/dist/module.js +55 -25
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +25 -5
- package/dist/types.d.ts.map +1 -1
- package/package.json +10 -10
- package/src/useSelectableItem.ts +102 -33
package/dist/main.js
CHANGED
|
@@ -349,15 +349,15 @@ function $433b1145b0781e10$export$ecf600387e221c37(options) {
|
|
|
349
349
|
}
|
|
350
350
|
};
|
|
351
351
|
// Focus the associated DOM node when this item becomes the focusedKey
|
|
352
|
-
let isFocused = key === manager.focusedKey;
|
|
353
352
|
$glPPV$react.useEffect(()=>{
|
|
353
|
+
let isFocused = key === manager.focusedKey;
|
|
354
354
|
if (isFocused && manager.isFocused && !shouldUseVirtualFocus && document.activeElement !== ref.current) {
|
|
355
355
|
if (focus) focus();
|
|
356
356
|
else $glPPV$reactariafocus.focusSafely(ref.current);
|
|
357
357
|
}
|
|
358
358
|
}, [
|
|
359
359
|
ref,
|
|
360
|
-
|
|
360
|
+
key,
|
|
361
361
|
manager.focusedKey,
|
|
362
362
|
manager.childFocusStrategy,
|
|
363
363
|
manager.isFocused,
|
|
@@ -369,15 +369,25 @@ function $433b1145b0781e10$export$ecf600387e221c37(options) {
|
|
|
369
369
|
let itemProps = {
|
|
370
370
|
};
|
|
371
371
|
if (!shouldUseVirtualFocus) itemProps = {
|
|
372
|
-
tabIndex:
|
|
372
|
+
tabIndex: key === manager.focusedKey ? 0 : -1,
|
|
373
373
|
onFocus (e) {
|
|
374
374
|
if (e.target === ref.current) manager.setFocusedKey(key);
|
|
375
375
|
}
|
|
376
376
|
};
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
377
|
+
// With checkbox selection, onAction (i.e. navigation) becomes primary, and occurs on a single click of the row.
|
|
378
|
+
// Clicking the checkbox enters selection mode, after which clicking anywhere on any row toggles selection for that row.
|
|
379
|
+
// With highlight selection, onAction is secondary, and occurs on double click. Single click selects the row.
|
|
380
|
+
// With touch, onAction occurs on single tap, and long press enters selection mode.
|
|
381
|
+
isDisabled = isDisabled || manager.isDisabled(key);
|
|
380
382
|
let allowsSelection = !isDisabled && manager.canSelectItem(key);
|
|
383
|
+
let allowsActions = onAction && !isDisabled;
|
|
384
|
+
let hasPrimaryAction = allowsActions && (manager.selectionBehavior === 'replace' ? !allowsSelection : manager.isEmpty);
|
|
385
|
+
let hasSecondaryAction = allowsActions && allowsSelection && manager.selectionBehavior === 'replace';
|
|
386
|
+
let hasAction = hasPrimaryAction || hasSecondaryAction;
|
|
387
|
+
let modality = $glPPV$react.useRef(null);
|
|
388
|
+
let longPressEnabled = hasAction && allowsSelection;
|
|
389
|
+
let longPressEnabledOnPressStart = $glPPV$react.useRef(false);
|
|
390
|
+
let hadPrimaryActionOnPressStart = $glPPV$react.useRef(false);
|
|
381
391
|
// By default, selection occurs on pointer down. This can be strange if selecting an
|
|
382
392
|
// item causes the UI to disappear immediately (e.g. menus).
|
|
383
393
|
// If shouldSelectOnPressUp is true, we use onPressUp instead of onPressStart.
|
|
@@ -390,13 +400,16 @@ function $433b1145b0781e10$export$ecf600387e221c37(options) {
|
|
|
390
400
|
if (shouldSelectOnPressUp) {
|
|
391
401
|
itemPressProps.onPressStart = (e)=>{
|
|
392
402
|
modality.current = e.pointerType;
|
|
393
|
-
|
|
403
|
+
longPressEnabledOnPressStart.current = longPressEnabled;
|
|
404
|
+
if (e.pointerType === 'keyboard' && (!hasAction || $433b1145b0781e10$var$isSelectionKey())) onSelect(e);
|
|
394
405
|
};
|
|
395
406
|
// If allowsDifferentPressOrigin, make selection happen on pressUp (e.g. open menu on press down, selection on menu item happens on press up.)
|
|
396
407
|
// Otherwise, have selection happen onPress (prevents listview row selection when clicking on interactable elements in the row)
|
|
397
408
|
if (!allowsDifferentPressOrigin) itemPressProps.onPress = (e)=>{
|
|
398
|
-
if (e.pointerType !== '
|
|
399
|
-
|
|
409
|
+
if (hasPrimaryAction || hasSecondaryAction && e.pointerType !== 'mouse') {
|
|
410
|
+
if (e.pointerType === 'keyboard' && !$433b1145b0781e10$var$isActionKey()) return;
|
|
411
|
+
onAction();
|
|
412
|
+
} else if (e.pointerType !== 'keyboard') onSelect(e);
|
|
400
413
|
};
|
|
401
414
|
else {
|
|
402
415
|
itemPressProps.onPressUp = (e)=>{
|
|
@@ -406,16 +419,21 @@ function $433b1145b0781e10$export$ecf600387e221c37(options) {
|
|
|
406
419
|
: null;
|
|
407
420
|
}
|
|
408
421
|
} else {
|
|
409
|
-
// On touch, it feels strange to select on touch down, so we special case this.
|
|
410
422
|
itemPressProps.onPressStart = (e)=>{
|
|
411
423
|
modality.current = e.pointerType;
|
|
412
|
-
|
|
424
|
+
longPressEnabledOnPressStart.current = longPressEnabled;
|
|
425
|
+
hadPrimaryActionOnPressStart.current = hasPrimaryAction;
|
|
426
|
+
// Select on mouse down unless there is a primary action which will occur on mouse up.
|
|
427
|
+
// For keyboard, select on key down. If there is an action, the Space key selects on key down,
|
|
428
|
+
// and the Enter key performs onAction on key up.
|
|
429
|
+
if (e.pointerType === 'mouse' && !hasPrimaryAction || e.pointerType === 'keyboard' && (!onAction || $433b1145b0781e10$var$isSelectionKey())) onSelect(e);
|
|
413
430
|
};
|
|
414
431
|
itemPressProps.onPress = (e)=>{
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
432
|
+
// Selection occurs on touch up. Primary actions always occur on pointer up.
|
|
433
|
+
// Both primary and secondary actions occur on Enter key up. The only exception
|
|
434
|
+
// is secondary actions, which occur on double click with a mouse.
|
|
435
|
+
if (e.pointerType === 'touch' || e.pointerType === 'pen' || e.pointerType === 'virtual' || e.pointerType === 'keyboard' && hasAction && $433b1145b0781e10$var$isActionKey() || e.pointerType === 'mouse' && hadPrimaryActionOnPressStart.current) {
|
|
436
|
+
if (hasAction) onAction();
|
|
419
437
|
else onSelect(e);
|
|
420
438
|
}
|
|
421
439
|
};
|
|
@@ -434,9 +452,8 @@ function $433b1145b0781e10$export$ecf600387e221c37(options) {
|
|
|
434
452
|
// Long pressing an item with touch when selectionBehavior = 'replace' switches the selection behavior
|
|
435
453
|
// to 'toggle'. This changes the single tap behavior from performing an action (i.e. navigating) to
|
|
436
454
|
// selecting, and may toggle the appearance of a UI affordance like checkboxes on each item.
|
|
437
|
-
// TODO: what about when drag and drop is also enabled??
|
|
438
455
|
let { longPressProps: longPressProps } = $glPPV$reactariainteractions.useLongPress({
|
|
439
|
-
isDisabled: !
|
|
456
|
+
isDisabled: !longPressEnabled,
|
|
440
457
|
onLongPress (e) {
|
|
441
458
|
if (e.pointerType === 'touch') {
|
|
442
459
|
onSelect(e);
|
|
@@ -444,20 +461,33 @@ function $433b1145b0781e10$export$ecf600387e221c37(options) {
|
|
|
444
461
|
}
|
|
445
462
|
}
|
|
446
463
|
});
|
|
447
|
-
//
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
464
|
+
// Prevent native drag and drop on long press if we also select on long press.
|
|
465
|
+
// Once the user is in selection mode, they can long press again to drag.
|
|
466
|
+
let onDragStart = (e)=>{
|
|
467
|
+
if (modality.current === 'touch' && longPressEnabledOnPressStart.current) e.preventDefault();
|
|
468
|
+
};
|
|
451
469
|
return {
|
|
452
470
|
itemProps: $glPPV$reactariautils.mergeProps(itemProps, allowsSelection || hasPrimaryAction ? pressProps : {
|
|
453
|
-
},
|
|
471
|
+
}, longPressEnabled ? longPressProps : {
|
|
454
472
|
}, {
|
|
455
|
-
|
|
456
|
-
|
|
473
|
+
onDoubleClick: onDoubleClick,
|
|
474
|
+
onDragStart: onDragStart
|
|
457
475
|
}),
|
|
458
|
-
isPressed: isPressed
|
|
476
|
+
isPressed: isPressed,
|
|
477
|
+
isSelected: manager.isSelected(key),
|
|
478
|
+
isDisabled: isDisabled,
|
|
479
|
+
allowsSelection: allowsSelection,
|
|
480
|
+
hasAction: hasAction
|
|
459
481
|
};
|
|
460
482
|
}
|
|
483
|
+
function $433b1145b0781e10$var$isActionKey() {
|
|
484
|
+
let event = window.event;
|
|
485
|
+
return (event === null || event === void 0 ? void 0 : event.key) === 'Enter';
|
|
486
|
+
}
|
|
487
|
+
function $433b1145b0781e10$var$isSelectionKey() {
|
|
488
|
+
let event = window.event;
|
|
489
|
+
return (event === null || event === void 0 ? void 0 : event.key) === ' ' || (event === null || event === void 0 ? void 0 : event.code) === 'Space';
|
|
490
|
+
}
|
|
461
491
|
|
|
462
492
|
|
|
463
493
|
var $bd230acee196f50c$exports = {};
|
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"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","sources":["packages/@react-aria/selection/src/index.ts","packages/@react-aria/selection/src/useSelectableCollection.ts","packages/@react-aria/selection/src/utils.ts","packages/@react-aria/selection/src/useTypeSelect.ts","packages/@react-aria/selection/src/useSelectableItem.ts","packages/@react-aria/selection/src/useSelectableList.ts","packages/@react-aria/selection/src/ListKeyboardDelegate.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useSelectableCollection';\nexport * from './useSelectableItem';\nexport * from './useSelectableList';\nexport * from './ListKeyboardDelegate';\nexport * from './useTypeSelect';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusEvent, HTMLAttributes, Key, KeyboardEvent, RefObject, useEffect, useRef} from 'react';\nimport {focusSafely, getFocusableTreeWalker} from '@react-aria/focus';\nimport {FocusStrategy, KeyboardDelegate} from '@react-types/shared';\nimport {focusWithoutScrolling, mergeProps, scrollIntoView, useEvent} from '@react-aria/utils';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useLocale} from '@react-aria/i18n';\nimport {useTypeSelect} from './useTypeSelect';\n\ninterface SelectableCollectionOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A delegate object that implements behavior for keyboard focus movement.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * The ref attached to the element representing the collection.\n */\n ref: RefObject<HTMLElement>,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether the collection allows the user to select all items via keyboard shortcut.\n * @default false\n */\n disallowSelectAll?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean,\n /**\n * Whether the collection items are contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * The ref attached to the scrollable body. Used to provide automatic scrolling on item focus for non-virtualized collections.\n * If not provided, defaults to the collection ref.\n */\n scrollRef?: RefObject<HTMLElement>\n}\n\ninterface SelectableCollectionAria {\n /** Props for the collection element. */\n collectionProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with selectable collections.\n */\nexport function useSelectableCollection(options: SelectableCollectionOptions): SelectableCollectionAria {\n let {\n selectionManager: manager,\n keyboardDelegate: delegate,\n ref,\n autoFocus = false,\n shouldFocusWrap = false,\n disallowEmptySelection = false,\n disallowSelectAll = false,\n selectOnFocus = manager.selectionBehavior === 'replace',\n disallowTypeAhead = false,\n shouldUseVirtualFocus,\n allowsTabNavigation = false,\n isVirtualized,\n // If no scrollRef is provided, assume the collection ref is the scrollable region\n scrollRef = ref\n } = options;\n let {direction} = useLocale();\n\n\n let onKeyDown = (e: KeyboardEvent) => {\n // Prevent option + tab from doing anything since it doesn't move focus to the cells, only buttons/checkboxes\n if (e.altKey && e.key === 'Tab') {\n e.preventDefault();\n }\n\n // Keyboard events bubble through portals. Don't handle keyboard events\n // for elements outside the collection (e.g. menus).\n if (!ref.current.contains(e.target as HTMLElement)) {\n return;\n }\n\n const navigateToKey = (key: Key | undefined, childFocus?: FocusStrategy) => {\n if (key != null) {\n manager.setFocusedKey(key, childFocus);\n\n if (e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(key);\n } else if (selectOnFocus && !isNonContiguousSelectionModifier(e)) {\n manager.replaceSelection(key);\n }\n }\n };\n\n switch (e.key) {\n case 'ArrowDown': {\n if (delegate.getKeyBelow) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyBelow(manager.focusedKey)\n : delegate.getFirstKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getFirstKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowUp': {\n if (delegate.getKeyAbove) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyAbove(manager.focusedKey)\n : delegate.getLastKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getLastKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowLeft': {\n if (delegate.getKeyLeftOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyLeftOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'first' : 'last');\n }\n break;\n }\n case 'ArrowRight': {\n if (delegate.getKeyRightOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyRightOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'last' : 'first');\n }\n break;\n }\n case 'Home':\n if (delegate.getFirstKey) {\n e.preventDefault();\n let firstKey = delegate.getFirstKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(firstKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(firstKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(firstKey);\n }\n }\n break;\n case 'End':\n if (delegate.getLastKey) {\n e.preventDefault();\n let lastKey = delegate.getLastKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(lastKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(lastKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(lastKey);\n }\n }\n break;\n case 'PageDown':\n if (delegate.getKeyPageBelow) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageBelow(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'PageUp':\n if (delegate.getKeyPageAbove) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageAbove(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'a':\n if (isCtrlKeyPressed(e) && manager.selectionMode === 'multiple' && disallowSelectAll !== true) {\n e.preventDefault();\n manager.selectAll();\n }\n break;\n case 'Escape':\n e.preventDefault();\n if (!disallowEmptySelection) {\n manager.clearSelection();\n }\n break;\n case 'Tab': {\n if (!allowsTabNavigation) {\n // There may be elements that are \"tabbable\" inside a collection (e.g. in a grid cell).\n // However, collections should be treated as a single tab stop, with arrow key navigation internally.\n // We don't control the rendering of these, so we can't override the tabIndex to prevent tabbing.\n // Instead, we handle the Tab key, and move focus manually to the first/last tabbable element\n // in the collection, so that the browser default behavior will apply starting from that element\n // rather than the currently focused one.\n if (e.shiftKey) {\n ref.current.focus();\n } else {\n let walker = getFocusableTreeWalker(ref.current, {tabbable: true});\n let next: HTMLElement;\n let last: HTMLElement;\n do {\n last = walker.lastChild() as HTMLElement;\n if (last) {\n next = last;\n }\n } while (last);\n\n if (next && !next.contains(document.activeElement)) {\n focusWithoutScrolling(next);\n }\n }\n break;\n }\n }\n }\n };\n\n // Store the scroll position so we can restore it later.\n let scrollPos = useRef({top: 0, left: 0});\n useEvent(scrollRef, 'scroll', isVirtualized ? null : () => {\n scrollPos.current = {\n top: scrollRef.current.scrollTop,\n left: scrollRef.current.scrollLeft\n };\n });\n\n let onFocus = (e: FocusEvent) => {\n if (manager.isFocused) {\n // If a focus event bubbled through a portal, reset focus state.\n if (!e.currentTarget.contains(e.target)) {\n manager.setFocused(false);\n }\n\n return;\n }\n\n // Focus events can bubble through portals. Ignore these events.\n if (!e.currentTarget.contains(e.target)) {\n return;\n }\n\n manager.setFocused(true);\n\n if (manager.focusedKey == null) {\n let navigateToFirstKey = (key: Key | undefined) => {\n if (key != null) {\n manager.setFocusedKey(key);\n if (selectOnFocus) {\n manager.replaceSelection(key);\n }\n }\n };\n // If the user hasn't yet interacted with the collection, there will be no focusedKey set.\n // Attempt to detect whether the user is tabbing forward or backward into the collection\n // and either focus the first or last item accordingly.\n let relatedTarget = e.relatedTarget as Element;\n if (relatedTarget && (e.currentTarget.compareDocumentPosition(relatedTarget) & Node.DOCUMENT_POSITION_FOLLOWING)) {\n navigateToFirstKey(manager.lastSelectedKey ?? delegate.getLastKey());\n } else {\n navigateToFirstKey(manager.firstSelectedKey ?? delegate.getFirstKey());\n }\n } else if (!isVirtualized) {\n // Restore the scroll position to what it was before.\n scrollRef.current.scrollTop = scrollPos.current.top;\n scrollRef.current.scrollLeft = scrollPos.current.left;\n\n // Refocus and scroll the focused item into view if it exists within the scrollable region.\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n // This prevents a flash of focus on the first/last element in the collection\n focusWithoutScrolling(element);\n scrollIntoView(scrollRef.current, element);\n }\n }\n };\n\n let onBlur = (e) => {\n // Don't set blurred and then focused again if moving focus within the collection.\n if (!e.currentTarget.contains(e.relatedTarget as HTMLElement)) {\n manager.setFocused(false);\n }\n };\n\n const autoFocusRef = useRef(autoFocus);\n useEffect(() => {\n if (autoFocusRef.current) {\n let focusedKey = null;\n\n // Check focus strategy to determine which item to focus\n if (autoFocus === 'first') {\n focusedKey = delegate.getFirstKey();\n } if (autoFocus === 'last') {\n focusedKey = delegate.getLastKey();\n }\n\n // If there are any selected keys, make the first one the new focus target\n let selectedKeys = manager.selectedKeys;\n if (selectedKeys.size) {\n focusedKey = selectedKeys.values().next().value;\n }\n\n manager.setFocused(true);\n manager.setFocusedKey(focusedKey);\n\n // If no default focus key is selected, focus the collection itself.\n if (focusedKey == null && !shouldUseVirtualFocus) {\n focusSafely(ref.current);\n }\n }\n autoFocusRef.current = false;\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n // If not virtualized, scroll the focused element into view when the focusedKey changes.\n // When virtualized, Virtualizer handles this internally.\n useEffect(() => {\n if (!isVirtualized && manager.focusedKey && scrollRef?.current) {\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n scrollIntoView(scrollRef.current, element);\n }\n }\n }, [isVirtualized, scrollRef, manager.focusedKey]);\n\n let handlers = {\n onKeyDown,\n onFocus,\n onBlur,\n onMouseDown(e) {\n // Ignore events that bubbled through portals.\n if (e.currentTarget.contains(e.target)) {\n // Prevent focus going to the collection when clicking on the scrollbar.\n e.preventDefault();\n }\n }\n };\n\n let {typeSelectProps} = useTypeSelect({\n keyboardDelegate: delegate,\n selectionManager: manager\n });\n\n if (!disallowTypeAhead) {\n handlers = mergeProps(typeSelectProps, handlers);\n }\n\n // If nothing is focused within the collection, make the collection itself tabbable.\n // This will be marshalled to either the first or last item depending on where focus came from.\n // If using virtual focus, don't set a tabIndex at all so that VoiceOver on iOS 14 doesn't try\n // to move real DOM focus to the element anyway.\n let tabIndex: number;\n if (!shouldUseVirtualFocus) {\n tabIndex = manager.focusedKey == null ? 0 : -1;\n }\n\n return {\n collectionProps: {\n ...handlers,\n tabIndex\n }\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {isAppleDevice} from '@react-aria/utils';\nimport {isMac} from '@react-aria/utils';\n\ninterface Event {\n altKey: boolean,\n ctrlKey: boolean,\n metaKey: boolean\n}\n\nexport function isNonContiguousSelectionModifier(e: Event) {\n // Ctrl + Arrow Up/Arrow Down has a system wide meaning on macOS, so use Alt instead.\n // On Windows and Ubuntu, Alt + Space has a system wide meaning.\n return isAppleDevice() ? e.altKey : e.ctrlKey;\n}\n\nexport function isCtrlKeyPressed(e: Event) {\n if (isMac()) {\n return e.metaKey;\n }\n\n return e.ctrlKey;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {HTMLAttributes, Key, KeyboardEvent, useRef} from 'react';\nimport {KeyboardDelegate} from '@react-types/shared';\nimport {MultipleSelectionManager} from '@react-stately/selection';\n\ninterface TypeSelectOptions {\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * Called when an item is focused by typing.\n */\n onTypeSelect?: (key: Key) => void\n}\n\ninterface TypeSelectAria {\n /**\n * Props to be spread on the owner of the options.\n */\n typeSelectProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles typeahead interactions with collections.\n */\nexport function useTypeSelect(options: TypeSelectOptions): TypeSelectAria {\n let {keyboardDelegate, selectionManager, onTypeSelect} = options;\n let state = useRef({\n search: '',\n timeout: null\n }).current;\n\n let onKeyDown = (e: KeyboardEvent) => {\n let character = getStringForKey(e.key);\n if (!character || e.ctrlKey || e.metaKey) {\n return;\n }\n\n // Do not propagate the Spacebar event if it's meant to be part of the search.\n // When we time out, the search term becomes empty, hence the check on length.\n // Trimming is to account for the case of pressing the Spacebar more than once,\n // which should cycle through the selection/deselection of the focused item.\n if (character === ' ' && state.search.trim().length > 0) {\n e.preventDefault();\n if (!('continuePropagation' in e)) {\n e.stopPropagation();\n }\n }\n\n state.search += character;\n\n // Use the delegate to find a key to focus.\n // Prioritize items after the currently focused item, falling back to searching the whole list.\n let key = keyboardDelegate.getKeyForSearch(state.search, selectionManager.focusedKey);\n\n // If no key found, search from the top.\n if (key == null) {\n key = keyboardDelegate.getKeyForSearch(state.search);\n }\n\n if (key != null) {\n selectionManager.setFocusedKey(key);\n if (onTypeSelect) {\n onTypeSelect(key);\n }\n }\n\n clearTimeout(state.timeout);\n state.timeout = setTimeout(() => {\n state.search = '';\n }, 500);\n };\n\n return {\n typeSelectProps: {\n // Using a capturing listener to catch the keydown event before\n // other hooks in order to handle the Spacebar event.\n onKeyDownCapture: keyboardDelegate.getKeyForSearch ? onKeyDown : null\n }\n };\n}\n\nfunction getStringForKey(key: string) {\n // If the key is of length 1, it is an ASCII value.\n // Otherwise, if there are no ASCII characters in the key name,\n // it is a Unicode character.\n // See https://www.w3.org/TR/uievents-key/\n if (key.length === 1 || !/^[A-Z]/i.test(key)) {\n return key;\n }\n\n return '';\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {focusSafely} from '@react-aria/focus';\nimport {HTMLAttributes, Key, RefObject, useEffect, useRef} from 'react';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {LongPressEvent, PressEvent} from '@react-types/shared';\nimport {mergeProps} from '@react-aria/utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {PressProps, useLongPress, usePress} from '@react-aria/interactions';\n\ninterface SelectableItemOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A unique key for the item.\n */\n key: Key,\n /**\n * Ref to the item.\n */\n ref: RefObject<HTMLElement>,\n /**\n * By default, selection occurs on pointer down. This can be strange if selecting an\n * item causes the UI to disappear immediately (e.g. menus).\n */\n shouldSelectOnPressUp?: boolean,\n /**\n * Whether selection requires the pointer/mouse down and up events to occur on the same target or triggers selection on\n * the target of the pointer/mouse up event.\n */\n allowsDifferentPressOrigin?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Function to focus the item.\n */\n focus?: () => void,\n /**\n * Whether the option should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /** Whether the item is disabled. */\n isDisabled?: boolean,\n /**\n * Handler that is called when a user performs an action on the cell. The exact user event depends on\n * the collection's `selectionBehavior` prop and the interaction modality.\n */\n onAction?: () => void\n}\n\ninterface SelectableItemAria {\n /**\n * Props to be spread on the item root node.\n */\n itemProps: HTMLAttributes<HTMLElement>,\n /** Whether the item is currently in a pressed state. */\n isPressed: boolean\n}\n\n/**\n * Handles interactions with an item in a selectable collection.\n */\nexport function useSelectableItem(options: SelectableItemOptions): SelectableItemAria {\n let {\n selectionManager: manager,\n key,\n ref,\n shouldSelectOnPressUp,\n isVirtualized,\n shouldUseVirtualFocus,\n focus,\n isDisabled,\n onAction,\n allowsDifferentPressOrigin\n } = options;\n\n let onSelect = (e: PressEvent | LongPressEvent | PointerEvent) => {\n if (e.pointerType === 'keyboard' && isNonContiguousSelectionModifier(e)) {\n manager.toggleSelection(key);\n } else {\n if (manager.selectionMode === 'none') {\n return;\n }\n\n if (manager.selectionMode === 'single') {\n if (manager.isSelected(key) && !manager.disallowEmptySelection) {\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n } else if (e && e.shiftKey) {\n manager.extendSelection(key);\n } else if (manager.selectionBehavior === 'toggle' || (e && (isCtrlKeyPressed(e) || e.pointerType === 'touch' || e.pointerType === 'virtual'))) {\n // if touch or virtual (VO) then we just want to toggle, otherwise it's impossible to multi select because they don't have modifier keys\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n }\n };\n\n // Focus the associated DOM node when this item becomes the focusedKey\n let isFocused = key === manager.focusedKey;\n useEffect(() => {\n if (isFocused && manager.isFocused && !shouldUseVirtualFocus && document.activeElement !== ref.current) {\n if (focus) {\n focus();\n } else {\n focusSafely(ref.current);\n }\n }\n }, [ref, isFocused, manager.focusedKey, manager.childFocusStrategy, manager.isFocused, shouldUseVirtualFocus]);\n\n // Set tabIndex to 0 if the element is focused, or -1 otherwise so that only the last focused\n // item is tabbable. If using virtual focus, don't set a tabIndex at all so that VoiceOver\n // on iOS 14 doesn't try to move real DOM focus to the item anyway.\n let itemProps: SelectableItemAria['itemProps'] = {};\n if (!shouldUseVirtualFocus) {\n itemProps = {\n tabIndex: isFocused ? 0 : -1,\n onFocus(e) {\n if (e.target === ref.current) {\n manager.setFocusedKey(key);\n }\n }\n };\n }\n\n let modality = useRef(null);\n let hasPrimaryAction = onAction && manager.selectionMode === 'none';\n let hasSecondaryAction = onAction && manager.selectionMode !== 'none' && manager.selectionBehavior === 'replace';\n let allowsSelection = !isDisabled && manager.canSelectItem(key);\n\n // By default, selection occurs on pointer down. This can be strange if selecting an\n // item causes the UI to disappear immediately (e.g. menus).\n // If shouldSelectOnPressUp is true, we use onPressUp instead of onPressStart.\n // onPress requires a pointer down event on the same element as pointer up. For menus,\n // we want to be able to have the pointer down on the trigger that opens the menu and\n // the pointer up on the menu item rather than requiring a separate press.\n // For keyboard events, selection still occurs on key down.\n let itemPressProps: PressProps = {};\n if (shouldSelectOnPressUp) {\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n if (e.pointerType === 'keyboard') {\n onSelect(e);\n }\n };\n\n // If allowsDifferentPressOrigin, make selection happen on pressUp (e.g. open menu on press down, selection on menu item happens on press up.)\n // Otherwise, have selection happen onPress (prevents listview row selection when clicking on interactable elements in the row)\n if (!allowsDifferentPressOrigin) {\n itemPressProps.onPress = (e) => {\n if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n\n if (hasPrimaryAction) {\n onAction();\n }\n };\n } else {\n itemPressProps.onPressUp = (e) => {\n if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = hasPrimaryAction ? () => onAction() : null;\n }\n } else {\n // On touch, it feels strange to select on touch down, so we special case this.\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n if (e.pointerType !== 'touch' && e.pointerType !== 'virtual') {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = (e) => {\n if (e.pointerType === 'touch' || e.pointerType === 'virtual' || hasPrimaryAction) {\n // Single tap on touch with selectionBehavior = 'replace' performs an action, i.e. navigation.\n // Also perform action on press up when selectionMode = 'none'.\n if (hasPrimaryAction || hasSecondaryAction) {\n onAction();\n } else {\n onSelect(e);\n }\n }\n };\n }\n\n if (!isVirtualized) {\n itemProps['data-key'] = key;\n }\n\n itemPressProps.preventFocusOnPress = shouldUseVirtualFocus;\n let {pressProps, isPressed} = usePress(itemPressProps);\n\n // Double clicking with a mouse with selectionBehavior = 'replace' performs an action.\n let onDoubleClick = hasSecondaryAction ? (e) => {\n if (modality.current === 'mouse') {\n e.stopPropagation();\n e.preventDefault();\n onAction();\n }\n } : undefined;\n\n // Long pressing an item with touch when selectionBehavior = 'replace' switches the selection behavior\n // to 'toggle'. This changes the single tap behavior from performing an action (i.e. navigating) to\n // selecting, and may toggle the appearance of a UI affordance like checkboxes on each item.\n // TODO: what about when drag and drop is also enabled??\n let {longPressProps} = useLongPress({\n isDisabled: !hasSecondaryAction,\n onLongPress(e) {\n if (e.pointerType === 'touch') {\n onSelect(e);\n manager.setSelectionBehavior('toggle');\n }\n }\n });\n\n // Pressing the Enter key with selectionBehavior = 'replace' performs an action (i.e. navigation).\n let onKeyUp = hasSecondaryAction ? (e: KeyboardEvent) => {\n if (e.key === 'Enter') {\n onAction();\n }\n } : undefined;\n\n return {\n itemProps: mergeProps(\n itemProps,\n allowsSelection || hasPrimaryAction ? pressProps : {},\n hasSecondaryAction ? longPressProps : {},\n {onKeyUp, onDoubleClick}\n ),\n isPressed\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, FocusStrategy, KeyboardDelegate, Node} from '@react-types/shared';\nimport {HTMLAttributes, Key, RefObject, useMemo} from 'react';\nimport {ListKeyboardDelegate} from './ListKeyboardDelegate';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useCollator} from '@react-aria/i18n';\nimport {useSelectableCollection} from './useSelectableCollection';\n\ninterface SelectableListOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * State of the collection.\n */\n collection: Collection<Node<unknown>>,\n /**\n * The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.\n */\n disabledKeys: Set<Key>,\n /**\n * A ref to the item.\n */\n ref?: RefObject<HTMLElement>,\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate?: KeyboardDelegate,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean\n}\n\ninterface SelectableListAria {\n /**\n * Props for the option element.\n */\n listProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with a selectable list.\n */\nexport function useSelectableList(props: SelectableListOptions): SelectableListAria {\n let {\n selectionManager,\n collection,\n disabledKeys,\n ref,\n keyboardDelegate,\n autoFocus,\n shouldFocusWrap,\n isVirtualized,\n disallowEmptySelection,\n selectOnFocus = false,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation\n } = props;\n\n // By default, a KeyboardDelegate is provided which uses the DOM to query layout information (e.g. for page up/page down).\n // When virtualized, the layout object will be passed in as a prop and override this.\n let collator = useCollator({usage: 'search', sensitivity: 'base'});\n let delegate = useMemo(() => keyboardDelegate || new ListKeyboardDelegate(collection, disabledKeys, ref, collator), [keyboardDelegate, collection, disabledKeys, ref, collator]);\n\n let {collectionProps} = useSelectableCollection({\n ref,\n selectionManager,\n keyboardDelegate: delegate,\n autoFocus,\n shouldFocusWrap,\n disallowEmptySelection,\n selectOnFocus,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation,\n isVirtualized,\n scrollRef: ref\n });\n\n return {\n listProps: collectionProps\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, KeyboardDelegate, Node} from '@react-types/shared';\nimport {Key, RefObject} from 'react';\n\nexport class ListKeyboardDelegate<T> implements KeyboardDelegate {\n private collection: Collection<Node<T>>;\n private disabledKeys: Set<Key>;\n private ref: RefObject<HTMLElement>;\n private collator: Intl.Collator;\n\n constructor(collection: Collection<Node<T>>, disabledKeys: Set<Key>, ref: RefObject<HTMLElement>, collator?: Intl.Collator) {\n this.collection = collection;\n this.disabledKeys = disabledKeys;\n this.ref = ref;\n this.collator = collator;\n }\n\n getKeyBelow(key: Key) {\n key = this.collection.getKeyAfter(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getKeyAbove(key: Key) {\n key = this.collection.getKeyBefore(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n getFirstKey() {\n let key = this.collection.getFirstKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n private getItem(key: Key): HTMLElement {\n return this.ref.current.querySelector(`[data-key=\"${key}\"]`);\n }\n\n getKeyPageAbove(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.max(0, item.offsetTop + item.offsetHeight - menu.offsetHeight);\n\n while (item && item.offsetTop > pageY) {\n key = this.getKeyAbove(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyPageBelow(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.min(menu.scrollHeight, item.offsetTop - item.offsetHeight + menu.offsetHeight);\n\n while (item && item.offsetTop < pageY) {\n key = this.getKeyBelow(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyForSearch(search: string, fromKey?: Key) {\n if (!this.collator) {\n return null;\n }\n\n let collection = this.collection;\n let key = fromKey || this.getFirstKey();\n while (key != null) {\n let item = collection.getItem(key);\n let substring = item.textValue.slice(0, search.length);\n if (item.textValue && this.collator.compare(substring, search) === 0) {\n return key;\n }\n\n key = this.getKeyBelow(key);\n }\n\n return null;\n }\n}\n"],"names":[],"version":3,"file":"main.js.map"}
|
|
1
|
+
{"mappings":"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","sources":["packages/@react-aria/selection/src/index.ts","packages/@react-aria/selection/src/useSelectableCollection.ts","packages/@react-aria/selection/src/utils.ts","packages/@react-aria/selection/src/useTypeSelect.ts","packages/@react-aria/selection/src/useSelectableItem.ts","packages/@react-aria/selection/src/useSelectableList.ts","packages/@react-aria/selection/src/ListKeyboardDelegate.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useSelectableCollection';\nexport * from './useSelectableItem';\nexport * from './useSelectableList';\nexport * from './ListKeyboardDelegate';\nexport * from './useTypeSelect';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusEvent, HTMLAttributes, Key, KeyboardEvent, RefObject, useEffect, useRef} from 'react';\nimport {focusSafely, getFocusableTreeWalker} from '@react-aria/focus';\nimport {FocusStrategy, KeyboardDelegate} from '@react-types/shared';\nimport {focusWithoutScrolling, mergeProps, scrollIntoView, useEvent} from '@react-aria/utils';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useLocale} from '@react-aria/i18n';\nimport {useTypeSelect} from './useTypeSelect';\n\ninterface SelectableCollectionOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A delegate object that implements behavior for keyboard focus movement.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * The ref attached to the element representing the collection.\n */\n ref: RefObject<HTMLElement>,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether the collection allows the user to select all items via keyboard shortcut.\n * @default false\n */\n disallowSelectAll?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean,\n /**\n * Whether the collection items are contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * The ref attached to the scrollable body. Used to provide automatic scrolling on item focus for non-virtualized collections.\n * If not provided, defaults to the collection ref.\n */\n scrollRef?: RefObject<HTMLElement>\n}\n\ninterface SelectableCollectionAria {\n /** Props for the collection element. */\n collectionProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with selectable collections.\n */\nexport function useSelectableCollection(options: SelectableCollectionOptions): SelectableCollectionAria {\n let {\n selectionManager: manager,\n keyboardDelegate: delegate,\n ref,\n autoFocus = false,\n shouldFocusWrap = false,\n disallowEmptySelection = false,\n disallowSelectAll = false,\n selectOnFocus = manager.selectionBehavior === 'replace',\n disallowTypeAhead = false,\n shouldUseVirtualFocus,\n allowsTabNavigation = false,\n isVirtualized,\n // If no scrollRef is provided, assume the collection ref is the scrollable region\n scrollRef = ref\n } = options;\n let {direction} = useLocale();\n\n\n let onKeyDown = (e: KeyboardEvent) => {\n // Prevent option + tab from doing anything since it doesn't move focus to the cells, only buttons/checkboxes\n if (e.altKey && e.key === 'Tab') {\n e.preventDefault();\n }\n\n // Keyboard events bubble through portals. Don't handle keyboard events\n // for elements outside the collection (e.g. menus).\n if (!ref.current.contains(e.target as HTMLElement)) {\n return;\n }\n\n const navigateToKey = (key: Key | undefined, childFocus?: FocusStrategy) => {\n if (key != null) {\n manager.setFocusedKey(key, childFocus);\n\n if (e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(key);\n } else if (selectOnFocus && !isNonContiguousSelectionModifier(e)) {\n manager.replaceSelection(key);\n }\n }\n };\n\n switch (e.key) {\n case 'ArrowDown': {\n if (delegate.getKeyBelow) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyBelow(manager.focusedKey)\n : delegate.getFirstKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getFirstKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowUp': {\n if (delegate.getKeyAbove) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyAbove(manager.focusedKey)\n : delegate.getLastKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getLastKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowLeft': {\n if (delegate.getKeyLeftOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyLeftOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'first' : 'last');\n }\n break;\n }\n case 'ArrowRight': {\n if (delegate.getKeyRightOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyRightOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'last' : 'first');\n }\n break;\n }\n case 'Home':\n if (delegate.getFirstKey) {\n e.preventDefault();\n let firstKey = delegate.getFirstKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(firstKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(firstKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(firstKey);\n }\n }\n break;\n case 'End':\n if (delegate.getLastKey) {\n e.preventDefault();\n let lastKey = delegate.getLastKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(lastKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(lastKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(lastKey);\n }\n }\n break;\n case 'PageDown':\n if (delegate.getKeyPageBelow) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageBelow(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'PageUp':\n if (delegate.getKeyPageAbove) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageAbove(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'a':\n if (isCtrlKeyPressed(e) && manager.selectionMode === 'multiple' && disallowSelectAll !== true) {\n e.preventDefault();\n manager.selectAll();\n }\n break;\n case 'Escape':\n e.preventDefault();\n if (!disallowEmptySelection) {\n manager.clearSelection();\n }\n break;\n case 'Tab': {\n if (!allowsTabNavigation) {\n // There may be elements that are \"tabbable\" inside a collection (e.g. in a grid cell).\n // However, collections should be treated as a single tab stop, with arrow key navigation internally.\n // We don't control the rendering of these, so we can't override the tabIndex to prevent tabbing.\n // Instead, we handle the Tab key, and move focus manually to the first/last tabbable element\n // in the collection, so that the browser default behavior will apply starting from that element\n // rather than the currently focused one.\n if (e.shiftKey) {\n ref.current.focus();\n } else {\n let walker = getFocusableTreeWalker(ref.current, {tabbable: true});\n let next: HTMLElement;\n let last: HTMLElement;\n do {\n last = walker.lastChild() as HTMLElement;\n if (last) {\n next = last;\n }\n } while (last);\n\n if (next && !next.contains(document.activeElement)) {\n focusWithoutScrolling(next);\n }\n }\n break;\n }\n }\n }\n };\n\n // Store the scroll position so we can restore it later.\n let scrollPos = useRef({top: 0, left: 0});\n useEvent(scrollRef, 'scroll', isVirtualized ? null : () => {\n scrollPos.current = {\n top: scrollRef.current.scrollTop,\n left: scrollRef.current.scrollLeft\n };\n });\n\n let onFocus = (e: FocusEvent) => {\n if (manager.isFocused) {\n // If a focus event bubbled through a portal, reset focus state.\n if (!e.currentTarget.contains(e.target)) {\n manager.setFocused(false);\n }\n\n return;\n }\n\n // Focus events can bubble through portals. Ignore these events.\n if (!e.currentTarget.contains(e.target)) {\n return;\n }\n\n manager.setFocused(true);\n\n if (manager.focusedKey == null) {\n let navigateToFirstKey = (key: Key | undefined) => {\n if (key != null) {\n manager.setFocusedKey(key);\n if (selectOnFocus) {\n manager.replaceSelection(key);\n }\n }\n };\n // If the user hasn't yet interacted with the collection, there will be no focusedKey set.\n // Attempt to detect whether the user is tabbing forward or backward into the collection\n // and either focus the first or last item accordingly.\n let relatedTarget = e.relatedTarget as Element;\n if (relatedTarget && (e.currentTarget.compareDocumentPosition(relatedTarget) & Node.DOCUMENT_POSITION_FOLLOWING)) {\n navigateToFirstKey(manager.lastSelectedKey ?? delegate.getLastKey());\n } else {\n navigateToFirstKey(manager.firstSelectedKey ?? delegate.getFirstKey());\n }\n } else if (!isVirtualized) {\n // Restore the scroll position to what it was before.\n scrollRef.current.scrollTop = scrollPos.current.top;\n scrollRef.current.scrollLeft = scrollPos.current.left;\n\n // Refocus and scroll the focused item into view if it exists within the scrollable region.\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n // This prevents a flash of focus on the first/last element in the collection\n focusWithoutScrolling(element);\n scrollIntoView(scrollRef.current, element);\n }\n }\n };\n\n let onBlur = (e) => {\n // Don't set blurred and then focused again if moving focus within the collection.\n if (!e.currentTarget.contains(e.relatedTarget as HTMLElement)) {\n manager.setFocused(false);\n }\n };\n\n const autoFocusRef = useRef(autoFocus);\n useEffect(() => {\n if (autoFocusRef.current) {\n let focusedKey = null;\n\n // Check focus strategy to determine which item to focus\n if (autoFocus === 'first') {\n focusedKey = delegate.getFirstKey();\n } if (autoFocus === 'last') {\n focusedKey = delegate.getLastKey();\n }\n\n // If there are any selected keys, make the first one the new focus target\n let selectedKeys = manager.selectedKeys;\n if (selectedKeys.size) {\n focusedKey = selectedKeys.values().next().value;\n }\n\n manager.setFocused(true);\n manager.setFocusedKey(focusedKey);\n\n // If no default focus key is selected, focus the collection itself.\n if (focusedKey == null && !shouldUseVirtualFocus) {\n focusSafely(ref.current);\n }\n }\n autoFocusRef.current = false;\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n // If not virtualized, scroll the focused element into view when the focusedKey changes.\n // When virtualized, Virtualizer handles this internally.\n useEffect(() => {\n if (!isVirtualized && manager.focusedKey && scrollRef?.current) {\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n scrollIntoView(scrollRef.current, element);\n }\n }\n }, [isVirtualized, scrollRef, manager.focusedKey]);\n\n let handlers = {\n onKeyDown,\n onFocus,\n onBlur,\n onMouseDown(e) {\n // Ignore events that bubbled through portals.\n if (e.currentTarget.contains(e.target)) {\n // Prevent focus going to the collection when clicking on the scrollbar.\n e.preventDefault();\n }\n }\n };\n\n let {typeSelectProps} = useTypeSelect({\n keyboardDelegate: delegate,\n selectionManager: manager\n });\n\n if (!disallowTypeAhead) {\n handlers = mergeProps(typeSelectProps, handlers);\n }\n\n // If nothing is focused within the collection, make the collection itself tabbable.\n // This will be marshalled to either the first or last item depending on where focus came from.\n // If using virtual focus, don't set a tabIndex at all so that VoiceOver on iOS 14 doesn't try\n // to move real DOM focus to the element anyway.\n let tabIndex: number;\n if (!shouldUseVirtualFocus) {\n tabIndex = manager.focusedKey == null ? 0 : -1;\n }\n\n return {\n collectionProps: {\n ...handlers,\n tabIndex\n }\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {isAppleDevice} from '@react-aria/utils';\nimport {isMac} from '@react-aria/utils';\n\ninterface Event {\n altKey: boolean,\n ctrlKey: boolean,\n metaKey: boolean\n}\n\nexport function isNonContiguousSelectionModifier(e: Event) {\n // Ctrl + Arrow Up/Arrow Down has a system wide meaning on macOS, so use Alt instead.\n // On Windows and Ubuntu, Alt + Space has a system wide meaning.\n return isAppleDevice() ? e.altKey : e.ctrlKey;\n}\n\nexport function isCtrlKeyPressed(e: Event) {\n if (isMac()) {\n return e.metaKey;\n }\n\n return e.ctrlKey;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {HTMLAttributes, Key, KeyboardEvent, useRef} from 'react';\nimport {KeyboardDelegate} from '@react-types/shared';\nimport {MultipleSelectionManager} from '@react-stately/selection';\n\ninterface TypeSelectOptions {\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * Called when an item is focused by typing.\n */\n onTypeSelect?: (key: Key) => void\n}\n\ninterface TypeSelectAria {\n /**\n * Props to be spread on the owner of the options.\n */\n typeSelectProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles typeahead interactions with collections.\n */\nexport function useTypeSelect(options: TypeSelectOptions): TypeSelectAria {\n let {keyboardDelegate, selectionManager, onTypeSelect} = options;\n let state = useRef({\n search: '',\n timeout: null\n }).current;\n\n let onKeyDown = (e: KeyboardEvent) => {\n let character = getStringForKey(e.key);\n if (!character || e.ctrlKey || e.metaKey) {\n return;\n }\n\n // Do not propagate the Spacebar event if it's meant to be part of the search.\n // When we time out, the search term becomes empty, hence the check on length.\n // Trimming is to account for the case of pressing the Spacebar more than once,\n // which should cycle through the selection/deselection of the focused item.\n if (character === ' ' && state.search.trim().length > 0) {\n e.preventDefault();\n if (!('continuePropagation' in e)) {\n e.stopPropagation();\n }\n }\n\n state.search += character;\n\n // Use the delegate to find a key to focus.\n // Prioritize items after the currently focused item, falling back to searching the whole list.\n let key = keyboardDelegate.getKeyForSearch(state.search, selectionManager.focusedKey);\n\n // If no key found, search from the top.\n if (key == null) {\n key = keyboardDelegate.getKeyForSearch(state.search);\n }\n\n if (key != null) {\n selectionManager.setFocusedKey(key);\n if (onTypeSelect) {\n onTypeSelect(key);\n }\n }\n\n clearTimeout(state.timeout);\n state.timeout = setTimeout(() => {\n state.search = '';\n }, 500);\n };\n\n return {\n typeSelectProps: {\n // Using a capturing listener to catch the keydown event before\n // other hooks in order to handle the Spacebar event.\n onKeyDownCapture: keyboardDelegate.getKeyForSearch ? onKeyDown : null\n }\n };\n}\n\nfunction getStringForKey(key: string) {\n // If the key is of length 1, it is an ASCII value.\n // Otherwise, if there are no ASCII characters in the key name,\n // it is a Unicode character.\n // See https://www.w3.org/TR/uievents-key/\n if (key.length === 1 || !/^[A-Z]/i.test(key)) {\n return key;\n }\n\n return '';\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {focusSafely} from '@react-aria/focus';\nimport {HTMLAttributes, Key, RefObject, useEffect, useRef} from 'react';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {LongPressEvent, PressEvent} from '@react-types/shared';\nimport {mergeProps} from '@react-aria/utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {PressProps, useLongPress, usePress} from '@react-aria/interactions';\n\nexport interface SelectableItemOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A unique key for the item.\n */\n key: Key,\n /**\n * Ref to the item.\n */\n ref: RefObject<HTMLElement>,\n /**\n * By default, selection occurs on pointer down. This can be strange if selecting an\n * item causes the UI to disappear immediately (e.g. menus).\n */\n shouldSelectOnPressUp?: boolean,\n /**\n * Whether selection requires the pointer/mouse down and up events to occur on the same target or triggers selection on\n * the target of the pointer/mouse up event.\n */\n allowsDifferentPressOrigin?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Function to focus the item.\n */\n focus?: () => void,\n /**\n * Whether the option should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /** Whether the item is disabled. */\n isDisabled?: boolean,\n /**\n * Handler that is called when a user performs an action on the item. The exact user event depends on\n * the collection's `selectionBehavior` prop and the interaction modality.\n */\n onAction?: () => void\n}\n\nexport interface SelectableItemStates {\n /** Whether the item is currently in a pressed state. */\n isPressed: boolean,\n /** Whether the item is currently selected. */\n isSelected: boolean,\n /**\n * Whether the item is non-interactive, i.e. both selection and actions are disabled and the item may\n * not be focused. Dependent on `disabledKeys` and `disabledBehavior`.\n */\n isDisabled: boolean,\n /**\n * Whether the item may be selected, dependent on `selectionMode`, `disabledKeys`, and `disabledBehavior`.\n */\n allowsSelection: boolean,\n /**\n * Whether the item has an action, dependent on `onAction`, `disabledKeys`,\n * and `disabledBehavior. It may also change depending on the current selection state\n * of the list (e.g. when selection is primary). This can be used to enable or disable hover\n * styles or other visual indications of interactivity.\n */\n hasAction: boolean\n}\n\nexport interface SelectableItemAria extends SelectableItemStates {\n /**\n * Props to be spread on the item root node.\n */\n itemProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with an item in a selectable collection.\n */\nexport function useSelectableItem(options: SelectableItemOptions): SelectableItemAria {\n let {\n selectionManager: manager,\n key,\n ref,\n shouldSelectOnPressUp,\n isVirtualized,\n shouldUseVirtualFocus,\n focus,\n isDisabled,\n onAction,\n allowsDifferentPressOrigin\n } = options;\n\n let onSelect = (e: PressEvent | LongPressEvent | PointerEvent) => {\n if (e.pointerType === 'keyboard' && isNonContiguousSelectionModifier(e)) {\n manager.toggleSelection(key);\n } else {\n if (manager.selectionMode === 'none') {\n return;\n }\n\n if (manager.selectionMode === 'single') {\n if (manager.isSelected(key) && !manager.disallowEmptySelection) {\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n } else if (e && e.shiftKey) {\n manager.extendSelection(key);\n } else if (manager.selectionBehavior === 'toggle' || (e && (isCtrlKeyPressed(e) || e.pointerType === 'touch' || e.pointerType === 'virtual'))) {\n // if touch or virtual (VO) then we just want to toggle, otherwise it's impossible to multi select because they don't have modifier keys\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n }\n };\n\n // Focus the associated DOM node when this item becomes the focusedKey\n useEffect(() => {\n let isFocused = key === manager.focusedKey;\n if (isFocused && manager.isFocused && !shouldUseVirtualFocus && document.activeElement !== ref.current) {\n if (focus) {\n focus();\n } else {\n focusSafely(ref.current);\n }\n }\n }, [ref, key, manager.focusedKey, manager.childFocusStrategy, manager.isFocused, shouldUseVirtualFocus]);\n\n // Set tabIndex to 0 if the element is focused, or -1 otherwise so that only the last focused\n // item is tabbable. If using virtual focus, don't set a tabIndex at all so that VoiceOver\n // on iOS 14 doesn't try to move real DOM focus to the item anyway.\n let itemProps: SelectableItemAria['itemProps'] = {};\n if (!shouldUseVirtualFocus) {\n itemProps = {\n tabIndex: key === manager.focusedKey ? 0 : -1,\n onFocus(e) {\n if (e.target === ref.current) {\n manager.setFocusedKey(key);\n }\n }\n };\n }\n\n\n // With checkbox selection, onAction (i.e. navigation) becomes primary, and occurs on a single click of the row.\n // Clicking the checkbox enters selection mode, after which clicking anywhere on any row toggles selection for that row.\n // With highlight selection, onAction is secondary, and occurs on double click. Single click selects the row.\n // With touch, onAction occurs on single tap, and long press enters selection mode.\n isDisabled = isDisabled || manager.isDisabled(key);\n let allowsSelection = !isDisabled && manager.canSelectItem(key);\n let allowsActions = onAction && !isDisabled;\n let hasPrimaryAction = allowsActions && (\n manager.selectionBehavior === 'replace'\n ? !allowsSelection\n : manager.isEmpty\n );\n let hasSecondaryAction = allowsActions && allowsSelection && manager.selectionBehavior === 'replace';\n let hasAction = hasPrimaryAction || hasSecondaryAction;\n let modality = useRef(null);\n\n let longPressEnabled = hasAction && allowsSelection;\n let longPressEnabledOnPressStart = useRef(false);\n let hadPrimaryActionOnPressStart = useRef(false);\n\n // By default, selection occurs on pointer down. This can be strange if selecting an\n // item causes the UI to disappear immediately (e.g. menus).\n // If shouldSelectOnPressUp is true, we use onPressUp instead of onPressStart.\n // onPress requires a pointer down event on the same element as pointer up. For menus,\n // we want to be able to have the pointer down on the trigger that opens the menu and\n // the pointer up on the menu item rather than requiring a separate press.\n // For keyboard events, selection still occurs on key down.\n let itemPressProps: PressProps = {};\n if (shouldSelectOnPressUp) {\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n longPressEnabledOnPressStart.current = longPressEnabled;\n if (e.pointerType === 'keyboard' && (!hasAction || isSelectionKey())) {\n onSelect(e);\n }\n };\n\n // If allowsDifferentPressOrigin, make selection happen on pressUp (e.g. open menu on press down, selection on menu item happens on press up.)\n // Otherwise, have selection happen onPress (prevents listview row selection when clicking on interactable elements in the row)\n if (!allowsDifferentPressOrigin) {\n itemPressProps.onPress = (e) => {\n if (hasPrimaryAction || (hasSecondaryAction && e.pointerType !== 'mouse')) {\n if (e.pointerType === 'keyboard' && !isActionKey()) {\n return;\n }\n\n onAction();\n } else if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n };\n } else {\n itemPressProps.onPressUp = (e) => {\n if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = hasPrimaryAction ? () => onAction() : null;\n }\n } else {\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n longPressEnabledOnPressStart.current = longPressEnabled;\n hadPrimaryActionOnPressStart.current = hasPrimaryAction;\n\n // Select on mouse down unless there is a primary action which will occur on mouse up.\n // For keyboard, select on key down. If there is an action, the Space key selects on key down,\n // and the Enter key performs onAction on key up.\n if (\n (e.pointerType === 'mouse' && !hasPrimaryAction) ||\n (e.pointerType === 'keyboard' && (!onAction || isSelectionKey()))\n ) {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = (e) => {\n // Selection occurs on touch up. Primary actions always occur on pointer up.\n // Both primary and secondary actions occur on Enter key up. The only exception\n // is secondary actions, which occur on double click with a mouse.\n if (\n e.pointerType === 'touch' ||\n e.pointerType === 'pen' ||\n e.pointerType === 'virtual' ||\n (e.pointerType === 'keyboard' && hasAction && isActionKey()) ||\n (e.pointerType === 'mouse' && hadPrimaryActionOnPressStart.current)\n ) {\n if (hasAction) {\n onAction();\n } else {\n onSelect(e);\n }\n }\n };\n }\n\n if (!isVirtualized) {\n itemProps['data-key'] = key;\n }\n\n itemPressProps.preventFocusOnPress = shouldUseVirtualFocus;\n let {pressProps, isPressed} = usePress(itemPressProps);\n\n // Double clicking with a mouse with selectionBehavior = 'replace' performs an action.\n let onDoubleClick = hasSecondaryAction ? (e) => {\n if (modality.current === 'mouse') {\n e.stopPropagation();\n e.preventDefault();\n onAction();\n }\n } : undefined;\n\n // Long pressing an item with touch when selectionBehavior = 'replace' switches the selection behavior\n // to 'toggle'. This changes the single tap behavior from performing an action (i.e. navigating) to\n // selecting, and may toggle the appearance of a UI affordance like checkboxes on each item.\n let {longPressProps} = useLongPress({\n isDisabled: !longPressEnabled,\n onLongPress(e) {\n if (e.pointerType === 'touch') {\n onSelect(e);\n manager.setSelectionBehavior('toggle');\n }\n }\n });\n\n // Prevent native drag and drop on long press if we also select on long press.\n // Once the user is in selection mode, they can long press again to drag.\n let onDragStart = e => {\n if (modality.current === 'touch' && longPressEnabledOnPressStart.current) {\n e.preventDefault();\n }\n };\n\n return {\n itemProps: mergeProps(\n itemProps,\n allowsSelection || hasPrimaryAction ? pressProps : {},\n longPressEnabled ? longPressProps : {},\n {onDoubleClick, onDragStart}\n ),\n isPressed,\n isSelected: manager.isSelected(key),\n isDisabled,\n allowsSelection,\n hasAction\n };\n}\n\nfunction isActionKey() {\n let event = window.event as KeyboardEvent;\n return event?.key === 'Enter';\n}\n\nfunction isSelectionKey() {\n let event = window.event as KeyboardEvent;\n return event?.key === ' ' || event?.code === 'Space';\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, FocusStrategy, KeyboardDelegate, Node} from '@react-types/shared';\nimport {HTMLAttributes, Key, RefObject, useMemo} from 'react';\nimport {ListKeyboardDelegate} from './ListKeyboardDelegate';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useCollator} from '@react-aria/i18n';\nimport {useSelectableCollection} from './useSelectableCollection';\n\ninterface SelectableListOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * State of the collection.\n */\n collection: Collection<Node<unknown>>,\n /**\n * The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.\n */\n disabledKeys: Set<Key>,\n /**\n * A ref to the item.\n */\n ref?: RefObject<HTMLElement>,\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate?: KeyboardDelegate,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean\n}\n\ninterface SelectableListAria {\n /**\n * Props for the option element.\n */\n listProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with a selectable list.\n */\nexport function useSelectableList(props: SelectableListOptions): SelectableListAria {\n let {\n selectionManager,\n collection,\n disabledKeys,\n ref,\n keyboardDelegate,\n autoFocus,\n shouldFocusWrap,\n isVirtualized,\n disallowEmptySelection,\n selectOnFocus = false,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation\n } = props;\n\n // By default, a KeyboardDelegate is provided which uses the DOM to query layout information (e.g. for page up/page down).\n // When virtualized, the layout object will be passed in as a prop and override this.\n let collator = useCollator({usage: 'search', sensitivity: 'base'});\n let delegate = useMemo(() => keyboardDelegate || new ListKeyboardDelegate(collection, disabledKeys, ref, collator), [keyboardDelegate, collection, disabledKeys, ref, collator]);\n\n let {collectionProps} = useSelectableCollection({\n ref,\n selectionManager,\n keyboardDelegate: delegate,\n autoFocus,\n shouldFocusWrap,\n disallowEmptySelection,\n selectOnFocus,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation,\n isVirtualized,\n scrollRef: ref\n });\n\n return {\n listProps: collectionProps\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, KeyboardDelegate, Node} from '@react-types/shared';\nimport {Key, RefObject} from 'react';\n\nexport class ListKeyboardDelegate<T> implements KeyboardDelegate {\n private collection: Collection<Node<T>>;\n private disabledKeys: Set<Key>;\n private ref: RefObject<HTMLElement>;\n private collator: Intl.Collator;\n\n constructor(collection: Collection<Node<T>>, disabledKeys: Set<Key>, ref: RefObject<HTMLElement>, collator?: Intl.Collator) {\n this.collection = collection;\n this.disabledKeys = disabledKeys;\n this.ref = ref;\n this.collator = collator;\n }\n\n getKeyBelow(key: Key) {\n key = this.collection.getKeyAfter(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getKeyAbove(key: Key) {\n key = this.collection.getKeyBefore(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n getFirstKey() {\n let key = this.collection.getFirstKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n private getItem(key: Key): HTMLElement {\n return this.ref.current.querySelector(`[data-key=\"${key}\"]`);\n }\n\n getKeyPageAbove(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.max(0, item.offsetTop + item.offsetHeight - menu.offsetHeight);\n\n while (item && item.offsetTop > pageY) {\n key = this.getKeyAbove(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyPageBelow(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.min(menu.scrollHeight, item.offsetTop - item.offsetHeight + menu.offsetHeight);\n\n while (item && item.offsetTop < pageY) {\n key = this.getKeyBelow(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyForSearch(search: string, fromKey?: Key) {\n if (!this.collator) {\n return null;\n }\n\n let collection = this.collection;\n let key = fromKey || this.getFirstKey();\n while (key != null) {\n let item = collection.getItem(key);\n let substring = item.textValue.slice(0, search.length);\n if (item.textValue && this.collator.compare(substring, search) === 0) {\n return key;\n }\n\n key = this.getKeyBelow(key);\n }\n\n return null;\n }\n}\n"],"names":[],"version":3,"file":"main.js.map"}
|
package/dist/module.js
CHANGED
|
@@ -333,15 +333,15 @@ function $880e95eb8b93ba9a$export$ecf600387e221c37(options) {
|
|
|
333
333
|
}
|
|
334
334
|
};
|
|
335
335
|
// Focus the associated DOM node when this item becomes the focusedKey
|
|
336
|
-
let isFocused = key === manager.focusedKey;
|
|
337
336
|
$eCAIO$useEffect(()=>{
|
|
337
|
+
let isFocused = key === manager.focusedKey;
|
|
338
338
|
if (isFocused && manager.isFocused && !shouldUseVirtualFocus && document.activeElement !== ref.current) {
|
|
339
339
|
if (focus) focus();
|
|
340
340
|
else $eCAIO$focusSafely(ref.current);
|
|
341
341
|
}
|
|
342
342
|
}, [
|
|
343
343
|
ref,
|
|
344
|
-
|
|
344
|
+
key,
|
|
345
345
|
manager.focusedKey,
|
|
346
346
|
manager.childFocusStrategy,
|
|
347
347
|
manager.isFocused,
|
|
@@ -353,15 +353,25 @@ function $880e95eb8b93ba9a$export$ecf600387e221c37(options) {
|
|
|
353
353
|
let itemProps = {
|
|
354
354
|
};
|
|
355
355
|
if (!shouldUseVirtualFocus) itemProps = {
|
|
356
|
-
tabIndex:
|
|
356
|
+
tabIndex: key === manager.focusedKey ? 0 : -1,
|
|
357
357
|
onFocus (e) {
|
|
358
358
|
if (e.target === ref.current) manager.setFocusedKey(key);
|
|
359
359
|
}
|
|
360
360
|
};
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
361
|
+
// With checkbox selection, onAction (i.e. navigation) becomes primary, and occurs on a single click of the row.
|
|
362
|
+
// Clicking the checkbox enters selection mode, after which clicking anywhere on any row toggles selection for that row.
|
|
363
|
+
// With highlight selection, onAction is secondary, and occurs on double click. Single click selects the row.
|
|
364
|
+
// With touch, onAction occurs on single tap, and long press enters selection mode.
|
|
365
|
+
isDisabled = isDisabled || manager.isDisabled(key);
|
|
364
366
|
let allowsSelection = !isDisabled && manager.canSelectItem(key);
|
|
367
|
+
let allowsActions = onAction && !isDisabled;
|
|
368
|
+
let hasPrimaryAction = allowsActions && (manager.selectionBehavior === 'replace' ? !allowsSelection : manager.isEmpty);
|
|
369
|
+
let hasSecondaryAction = allowsActions && allowsSelection && manager.selectionBehavior === 'replace';
|
|
370
|
+
let hasAction = hasPrimaryAction || hasSecondaryAction;
|
|
371
|
+
let modality = $eCAIO$useRef(null);
|
|
372
|
+
let longPressEnabled = hasAction && allowsSelection;
|
|
373
|
+
let longPressEnabledOnPressStart = $eCAIO$useRef(false);
|
|
374
|
+
let hadPrimaryActionOnPressStart = $eCAIO$useRef(false);
|
|
365
375
|
// By default, selection occurs on pointer down. This can be strange if selecting an
|
|
366
376
|
// item causes the UI to disappear immediately (e.g. menus).
|
|
367
377
|
// If shouldSelectOnPressUp is true, we use onPressUp instead of onPressStart.
|
|
@@ -374,13 +384,16 @@ function $880e95eb8b93ba9a$export$ecf600387e221c37(options) {
|
|
|
374
384
|
if (shouldSelectOnPressUp) {
|
|
375
385
|
itemPressProps.onPressStart = (e)=>{
|
|
376
386
|
modality.current = e.pointerType;
|
|
377
|
-
|
|
387
|
+
longPressEnabledOnPressStart.current = longPressEnabled;
|
|
388
|
+
if (e.pointerType === 'keyboard' && (!hasAction || $880e95eb8b93ba9a$var$isSelectionKey())) onSelect(e);
|
|
378
389
|
};
|
|
379
390
|
// If allowsDifferentPressOrigin, make selection happen on pressUp (e.g. open menu on press down, selection on menu item happens on press up.)
|
|
380
391
|
// Otherwise, have selection happen onPress (prevents listview row selection when clicking on interactable elements in the row)
|
|
381
392
|
if (!allowsDifferentPressOrigin) itemPressProps.onPress = (e)=>{
|
|
382
|
-
if (e.pointerType !== '
|
|
383
|
-
|
|
393
|
+
if (hasPrimaryAction || hasSecondaryAction && e.pointerType !== 'mouse') {
|
|
394
|
+
if (e.pointerType === 'keyboard' && !$880e95eb8b93ba9a$var$isActionKey()) return;
|
|
395
|
+
onAction();
|
|
396
|
+
} else if (e.pointerType !== 'keyboard') onSelect(e);
|
|
384
397
|
};
|
|
385
398
|
else {
|
|
386
399
|
itemPressProps.onPressUp = (e)=>{
|
|
@@ -390,16 +403,21 @@ function $880e95eb8b93ba9a$export$ecf600387e221c37(options) {
|
|
|
390
403
|
: null;
|
|
391
404
|
}
|
|
392
405
|
} else {
|
|
393
|
-
// On touch, it feels strange to select on touch down, so we special case this.
|
|
394
406
|
itemPressProps.onPressStart = (e)=>{
|
|
395
407
|
modality.current = e.pointerType;
|
|
396
|
-
|
|
408
|
+
longPressEnabledOnPressStart.current = longPressEnabled;
|
|
409
|
+
hadPrimaryActionOnPressStart.current = hasPrimaryAction;
|
|
410
|
+
// Select on mouse down unless there is a primary action which will occur on mouse up.
|
|
411
|
+
// For keyboard, select on key down. If there is an action, the Space key selects on key down,
|
|
412
|
+
// and the Enter key performs onAction on key up.
|
|
413
|
+
if (e.pointerType === 'mouse' && !hasPrimaryAction || e.pointerType === 'keyboard' && (!onAction || $880e95eb8b93ba9a$var$isSelectionKey())) onSelect(e);
|
|
397
414
|
};
|
|
398
415
|
itemPressProps.onPress = (e)=>{
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
416
|
+
// Selection occurs on touch up. Primary actions always occur on pointer up.
|
|
417
|
+
// Both primary and secondary actions occur on Enter key up. The only exception
|
|
418
|
+
// is secondary actions, which occur on double click with a mouse.
|
|
419
|
+
if (e.pointerType === 'touch' || e.pointerType === 'pen' || e.pointerType === 'virtual' || e.pointerType === 'keyboard' && hasAction && $880e95eb8b93ba9a$var$isActionKey() || e.pointerType === 'mouse' && hadPrimaryActionOnPressStart.current) {
|
|
420
|
+
if (hasAction) onAction();
|
|
403
421
|
else onSelect(e);
|
|
404
422
|
}
|
|
405
423
|
};
|
|
@@ -418,9 +436,8 @@ function $880e95eb8b93ba9a$export$ecf600387e221c37(options) {
|
|
|
418
436
|
// Long pressing an item with touch when selectionBehavior = 'replace' switches the selection behavior
|
|
419
437
|
// to 'toggle'. This changes the single tap behavior from performing an action (i.e. navigating) to
|
|
420
438
|
// selecting, and may toggle the appearance of a UI affordance like checkboxes on each item.
|
|
421
|
-
// TODO: what about when drag and drop is also enabled??
|
|
422
439
|
let { longPressProps: longPressProps } = $eCAIO$useLongPress({
|
|
423
|
-
isDisabled: !
|
|
440
|
+
isDisabled: !longPressEnabled,
|
|
424
441
|
onLongPress (e) {
|
|
425
442
|
if (e.pointerType === 'touch') {
|
|
426
443
|
onSelect(e);
|
|
@@ -428,20 +445,33 @@ function $880e95eb8b93ba9a$export$ecf600387e221c37(options) {
|
|
|
428
445
|
}
|
|
429
446
|
}
|
|
430
447
|
});
|
|
431
|
-
//
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
448
|
+
// Prevent native drag and drop on long press if we also select on long press.
|
|
449
|
+
// Once the user is in selection mode, they can long press again to drag.
|
|
450
|
+
let onDragStart = (e)=>{
|
|
451
|
+
if (modality.current === 'touch' && longPressEnabledOnPressStart.current) e.preventDefault();
|
|
452
|
+
};
|
|
435
453
|
return {
|
|
436
454
|
itemProps: $eCAIO$mergeProps(itemProps, allowsSelection || hasPrimaryAction ? pressProps : {
|
|
437
|
-
},
|
|
455
|
+
}, longPressEnabled ? longPressProps : {
|
|
438
456
|
}, {
|
|
439
|
-
|
|
440
|
-
|
|
457
|
+
onDoubleClick: onDoubleClick,
|
|
458
|
+
onDragStart: onDragStart
|
|
441
459
|
}),
|
|
442
|
-
isPressed: isPressed
|
|
460
|
+
isPressed: isPressed,
|
|
461
|
+
isSelected: manager.isSelected(key),
|
|
462
|
+
isDisabled: isDisabled,
|
|
463
|
+
allowsSelection: allowsSelection,
|
|
464
|
+
hasAction: hasAction
|
|
443
465
|
};
|
|
444
466
|
}
|
|
467
|
+
function $880e95eb8b93ba9a$var$isActionKey() {
|
|
468
|
+
let event = window.event;
|
|
469
|
+
return (event === null || event === void 0 ? void 0 : event.key) === 'Enter';
|
|
470
|
+
}
|
|
471
|
+
function $880e95eb8b93ba9a$var$isSelectionKey() {
|
|
472
|
+
let event = window.event;
|
|
473
|
+
return (event === null || event === void 0 ? void 0 : event.key) === ' ' || (event === null || event === void 0 ? void 0 : event.code) === 'Space';
|
|
474
|
+
}
|
|
445
475
|
|
|
446
476
|
|
|
447
477
|
var $982254629710d113$exports = {};
|
package/dist/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"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","sources":["packages/@react-aria/selection/src/index.ts","packages/@react-aria/selection/src/useSelectableCollection.ts","packages/@react-aria/selection/src/utils.ts","packages/@react-aria/selection/src/useTypeSelect.ts","packages/@react-aria/selection/src/useSelectableItem.ts","packages/@react-aria/selection/src/useSelectableList.ts","packages/@react-aria/selection/src/ListKeyboardDelegate.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useSelectableCollection';\nexport * from './useSelectableItem';\nexport * from './useSelectableList';\nexport * from './ListKeyboardDelegate';\nexport * from './useTypeSelect';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusEvent, HTMLAttributes, Key, KeyboardEvent, RefObject, useEffect, useRef} from 'react';\nimport {focusSafely, getFocusableTreeWalker} from '@react-aria/focus';\nimport {FocusStrategy, KeyboardDelegate} from '@react-types/shared';\nimport {focusWithoutScrolling, mergeProps, scrollIntoView, useEvent} from '@react-aria/utils';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useLocale} from '@react-aria/i18n';\nimport {useTypeSelect} from './useTypeSelect';\n\ninterface SelectableCollectionOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A delegate object that implements behavior for keyboard focus movement.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * The ref attached to the element representing the collection.\n */\n ref: RefObject<HTMLElement>,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether the collection allows the user to select all items via keyboard shortcut.\n * @default false\n */\n disallowSelectAll?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean,\n /**\n * Whether the collection items are contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * The ref attached to the scrollable body. Used to provide automatic scrolling on item focus for non-virtualized collections.\n * If not provided, defaults to the collection ref.\n */\n scrollRef?: RefObject<HTMLElement>\n}\n\ninterface SelectableCollectionAria {\n /** Props for the collection element. */\n collectionProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with selectable collections.\n */\nexport function useSelectableCollection(options: SelectableCollectionOptions): SelectableCollectionAria {\n let {\n selectionManager: manager,\n keyboardDelegate: delegate,\n ref,\n autoFocus = false,\n shouldFocusWrap = false,\n disallowEmptySelection = false,\n disallowSelectAll = false,\n selectOnFocus = manager.selectionBehavior === 'replace',\n disallowTypeAhead = false,\n shouldUseVirtualFocus,\n allowsTabNavigation = false,\n isVirtualized,\n // If no scrollRef is provided, assume the collection ref is the scrollable region\n scrollRef = ref\n } = options;\n let {direction} = useLocale();\n\n\n let onKeyDown = (e: KeyboardEvent) => {\n // Prevent option + tab from doing anything since it doesn't move focus to the cells, only buttons/checkboxes\n if (e.altKey && e.key === 'Tab') {\n e.preventDefault();\n }\n\n // Keyboard events bubble through portals. Don't handle keyboard events\n // for elements outside the collection (e.g. menus).\n if (!ref.current.contains(e.target as HTMLElement)) {\n return;\n }\n\n const navigateToKey = (key: Key | undefined, childFocus?: FocusStrategy) => {\n if (key != null) {\n manager.setFocusedKey(key, childFocus);\n\n if (e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(key);\n } else if (selectOnFocus && !isNonContiguousSelectionModifier(e)) {\n manager.replaceSelection(key);\n }\n }\n };\n\n switch (e.key) {\n case 'ArrowDown': {\n if (delegate.getKeyBelow) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyBelow(manager.focusedKey)\n : delegate.getFirstKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getFirstKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowUp': {\n if (delegate.getKeyAbove) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyAbove(manager.focusedKey)\n : delegate.getLastKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getLastKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowLeft': {\n if (delegate.getKeyLeftOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyLeftOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'first' : 'last');\n }\n break;\n }\n case 'ArrowRight': {\n if (delegate.getKeyRightOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyRightOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'last' : 'first');\n }\n break;\n }\n case 'Home':\n if (delegate.getFirstKey) {\n e.preventDefault();\n let firstKey = delegate.getFirstKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(firstKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(firstKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(firstKey);\n }\n }\n break;\n case 'End':\n if (delegate.getLastKey) {\n e.preventDefault();\n let lastKey = delegate.getLastKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(lastKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(lastKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(lastKey);\n }\n }\n break;\n case 'PageDown':\n if (delegate.getKeyPageBelow) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageBelow(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'PageUp':\n if (delegate.getKeyPageAbove) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageAbove(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'a':\n if (isCtrlKeyPressed(e) && manager.selectionMode === 'multiple' && disallowSelectAll !== true) {\n e.preventDefault();\n manager.selectAll();\n }\n break;\n case 'Escape':\n e.preventDefault();\n if (!disallowEmptySelection) {\n manager.clearSelection();\n }\n break;\n case 'Tab': {\n if (!allowsTabNavigation) {\n // There may be elements that are \"tabbable\" inside a collection (e.g. in a grid cell).\n // However, collections should be treated as a single tab stop, with arrow key navigation internally.\n // We don't control the rendering of these, so we can't override the tabIndex to prevent tabbing.\n // Instead, we handle the Tab key, and move focus manually to the first/last tabbable element\n // in the collection, so that the browser default behavior will apply starting from that element\n // rather than the currently focused one.\n if (e.shiftKey) {\n ref.current.focus();\n } else {\n let walker = getFocusableTreeWalker(ref.current, {tabbable: true});\n let next: HTMLElement;\n let last: HTMLElement;\n do {\n last = walker.lastChild() as HTMLElement;\n if (last) {\n next = last;\n }\n } while (last);\n\n if (next && !next.contains(document.activeElement)) {\n focusWithoutScrolling(next);\n }\n }\n break;\n }\n }\n }\n };\n\n // Store the scroll position so we can restore it later.\n let scrollPos = useRef({top: 0, left: 0});\n useEvent(scrollRef, 'scroll', isVirtualized ? null : () => {\n scrollPos.current = {\n top: scrollRef.current.scrollTop,\n left: scrollRef.current.scrollLeft\n };\n });\n\n let onFocus = (e: FocusEvent) => {\n if (manager.isFocused) {\n // If a focus event bubbled through a portal, reset focus state.\n if (!e.currentTarget.contains(e.target)) {\n manager.setFocused(false);\n }\n\n return;\n }\n\n // Focus events can bubble through portals. Ignore these events.\n if (!e.currentTarget.contains(e.target)) {\n return;\n }\n\n manager.setFocused(true);\n\n if (manager.focusedKey == null) {\n let navigateToFirstKey = (key: Key | undefined) => {\n if (key != null) {\n manager.setFocusedKey(key);\n if (selectOnFocus) {\n manager.replaceSelection(key);\n }\n }\n };\n // If the user hasn't yet interacted with the collection, there will be no focusedKey set.\n // Attempt to detect whether the user is tabbing forward or backward into the collection\n // and either focus the first or last item accordingly.\n let relatedTarget = e.relatedTarget as Element;\n if (relatedTarget && (e.currentTarget.compareDocumentPosition(relatedTarget) & Node.DOCUMENT_POSITION_FOLLOWING)) {\n navigateToFirstKey(manager.lastSelectedKey ?? delegate.getLastKey());\n } else {\n navigateToFirstKey(manager.firstSelectedKey ?? delegate.getFirstKey());\n }\n } else if (!isVirtualized) {\n // Restore the scroll position to what it was before.\n scrollRef.current.scrollTop = scrollPos.current.top;\n scrollRef.current.scrollLeft = scrollPos.current.left;\n\n // Refocus and scroll the focused item into view if it exists within the scrollable region.\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n // This prevents a flash of focus on the first/last element in the collection\n focusWithoutScrolling(element);\n scrollIntoView(scrollRef.current, element);\n }\n }\n };\n\n let onBlur = (e) => {\n // Don't set blurred and then focused again if moving focus within the collection.\n if (!e.currentTarget.contains(e.relatedTarget as HTMLElement)) {\n manager.setFocused(false);\n }\n };\n\n const autoFocusRef = useRef(autoFocus);\n useEffect(() => {\n if (autoFocusRef.current) {\n let focusedKey = null;\n\n // Check focus strategy to determine which item to focus\n if (autoFocus === 'first') {\n focusedKey = delegate.getFirstKey();\n } if (autoFocus === 'last') {\n focusedKey = delegate.getLastKey();\n }\n\n // If there are any selected keys, make the first one the new focus target\n let selectedKeys = manager.selectedKeys;\n if (selectedKeys.size) {\n focusedKey = selectedKeys.values().next().value;\n }\n\n manager.setFocused(true);\n manager.setFocusedKey(focusedKey);\n\n // If no default focus key is selected, focus the collection itself.\n if (focusedKey == null && !shouldUseVirtualFocus) {\n focusSafely(ref.current);\n }\n }\n autoFocusRef.current = false;\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n // If not virtualized, scroll the focused element into view when the focusedKey changes.\n // When virtualized, Virtualizer handles this internally.\n useEffect(() => {\n if (!isVirtualized && manager.focusedKey && scrollRef?.current) {\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n scrollIntoView(scrollRef.current, element);\n }\n }\n }, [isVirtualized, scrollRef, manager.focusedKey]);\n\n let handlers = {\n onKeyDown,\n onFocus,\n onBlur,\n onMouseDown(e) {\n // Ignore events that bubbled through portals.\n if (e.currentTarget.contains(e.target)) {\n // Prevent focus going to the collection when clicking on the scrollbar.\n e.preventDefault();\n }\n }\n };\n\n let {typeSelectProps} = useTypeSelect({\n keyboardDelegate: delegate,\n selectionManager: manager\n });\n\n if (!disallowTypeAhead) {\n handlers = mergeProps(typeSelectProps, handlers);\n }\n\n // If nothing is focused within the collection, make the collection itself tabbable.\n // This will be marshalled to either the first or last item depending on where focus came from.\n // If using virtual focus, don't set a tabIndex at all so that VoiceOver on iOS 14 doesn't try\n // to move real DOM focus to the element anyway.\n let tabIndex: number;\n if (!shouldUseVirtualFocus) {\n tabIndex = manager.focusedKey == null ? 0 : -1;\n }\n\n return {\n collectionProps: {\n ...handlers,\n tabIndex\n }\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {isAppleDevice} from '@react-aria/utils';\nimport {isMac} from '@react-aria/utils';\n\ninterface Event {\n altKey: boolean,\n ctrlKey: boolean,\n metaKey: boolean\n}\n\nexport function isNonContiguousSelectionModifier(e: Event) {\n // Ctrl + Arrow Up/Arrow Down has a system wide meaning on macOS, so use Alt instead.\n // On Windows and Ubuntu, Alt + Space has a system wide meaning.\n return isAppleDevice() ? e.altKey : e.ctrlKey;\n}\n\nexport function isCtrlKeyPressed(e: Event) {\n if (isMac()) {\n return e.metaKey;\n }\n\n return e.ctrlKey;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {HTMLAttributes, Key, KeyboardEvent, useRef} from 'react';\nimport {KeyboardDelegate} from '@react-types/shared';\nimport {MultipleSelectionManager} from '@react-stately/selection';\n\ninterface TypeSelectOptions {\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * Called when an item is focused by typing.\n */\n onTypeSelect?: (key: Key) => void\n}\n\ninterface TypeSelectAria {\n /**\n * Props to be spread on the owner of the options.\n */\n typeSelectProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles typeahead interactions with collections.\n */\nexport function useTypeSelect(options: TypeSelectOptions): TypeSelectAria {\n let {keyboardDelegate, selectionManager, onTypeSelect} = options;\n let state = useRef({\n search: '',\n timeout: null\n }).current;\n\n let onKeyDown = (e: KeyboardEvent) => {\n let character = getStringForKey(e.key);\n if (!character || e.ctrlKey || e.metaKey) {\n return;\n }\n\n // Do not propagate the Spacebar event if it's meant to be part of the search.\n // When we time out, the search term becomes empty, hence the check on length.\n // Trimming is to account for the case of pressing the Spacebar more than once,\n // which should cycle through the selection/deselection of the focused item.\n if (character === ' ' && state.search.trim().length > 0) {\n e.preventDefault();\n if (!('continuePropagation' in e)) {\n e.stopPropagation();\n }\n }\n\n state.search += character;\n\n // Use the delegate to find a key to focus.\n // Prioritize items after the currently focused item, falling back to searching the whole list.\n let key = keyboardDelegate.getKeyForSearch(state.search, selectionManager.focusedKey);\n\n // If no key found, search from the top.\n if (key == null) {\n key = keyboardDelegate.getKeyForSearch(state.search);\n }\n\n if (key != null) {\n selectionManager.setFocusedKey(key);\n if (onTypeSelect) {\n onTypeSelect(key);\n }\n }\n\n clearTimeout(state.timeout);\n state.timeout = setTimeout(() => {\n state.search = '';\n }, 500);\n };\n\n return {\n typeSelectProps: {\n // Using a capturing listener to catch the keydown event before\n // other hooks in order to handle the Spacebar event.\n onKeyDownCapture: keyboardDelegate.getKeyForSearch ? onKeyDown : null\n }\n };\n}\n\nfunction getStringForKey(key: string) {\n // If the key is of length 1, it is an ASCII value.\n // Otherwise, if there are no ASCII characters in the key name,\n // it is a Unicode character.\n // See https://www.w3.org/TR/uievents-key/\n if (key.length === 1 || !/^[A-Z]/i.test(key)) {\n return key;\n }\n\n return '';\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {focusSafely} from '@react-aria/focus';\nimport {HTMLAttributes, Key, RefObject, useEffect, useRef} from 'react';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {LongPressEvent, PressEvent} from '@react-types/shared';\nimport {mergeProps} from '@react-aria/utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {PressProps, useLongPress, usePress} from '@react-aria/interactions';\n\ninterface SelectableItemOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A unique key for the item.\n */\n key: Key,\n /**\n * Ref to the item.\n */\n ref: RefObject<HTMLElement>,\n /**\n * By default, selection occurs on pointer down. This can be strange if selecting an\n * item causes the UI to disappear immediately (e.g. menus).\n */\n shouldSelectOnPressUp?: boolean,\n /**\n * Whether selection requires the pointer/mouse down and up events to occur on the same target or triggers selection on\n * the target of the pointer/mouse up event.\n */\n allowsDifferentPressOrigin?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Function to focus the item.\n */\n focus?: () => void,\n /**\n * Whether the option should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /** Whether the item is disabled. */\n isDisabled?: boolean,\n /**\n * Handler that is called when a user performs an action on the cell. The exact user event depends on\n * the collection's `selectionBehavior` prop and the interaction modality.\n */\n onAction?: () => void\n}\n\ninterface SelectableItemAria {\n /**\n * Props to be spread on the item root node.\n */\n itemProps: HTMLAttributes<HTMLElement>,\n /** Whether the item is currently in a pressed state. */\n isPressed: boolean\n}\n\n/**\n * Handles interactions with an item in a selectable collection.\n */\nexport function useSelectableItem(options: SelectableItemOptions): SelectableItemAria {\n let {\n selectionManager: manager,\n key,\n ref,\n shouldSelectOnPressUp,\n isVirtualized,\n shouldUseVirtualFocus,\n focus,\n isDisabled,\n onAction,\n allowsDifferentPressOrigin\n } = options;\n\n let onSelect = (e: PressEvent | LongPressEvent | PointerEvent) => {\n if (e.pointerType === 'keyboard' && isNonContiguousSelectionModifier(e)) {\n manager.toggleSelection(key);\n } else {\n if (manager.selectionMode === 'none') {\n return;\n }\n\n if (manager.selectionMode === 'single') {\n if (manager.isSelected(key) && !manager.disallowEmptySelection) {\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n } else if (e && e.shiftKey) {\n manager.extendSelection(key);\n } else if (manager.selectionBehavior === 'toggle' || (e && (isCtrlKeyPressed(e) || e.pointerType === 'touch' || e.pointerType === 'virtual'))) {\n // if touch or virtual (VO) then we just want to toggle, otherwise it's impossible to multi select because they don't have modifier keys\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n }\n };\n\n // Focus the associated DOM node when this item becomes the focusedKey\n let isFocused = key === manager.focusedKey;\n useEffect(() => {\n if (isFocused && manager.isFocused && !shouldUseVirtualFocus && document.activeElement !== ref.current) {\n if (focus) {\n focus();\n } else {\n focusSafely(ref.current);\n }\n }\n }, [ref, isFocused, manager.focusedKey, manager.childFocusStrategy, manager.isFocused, shouldUseVirtualFocus]);\n\n // Set tabIndex to 0 if the element is focused, or -1 otherwise so that only the last focused\n // item is tabbable. If using virtual focus, don't set a tabIndex at all so that VoiceOver\n // on iOS 14 doesn't try to move real DOM focus to the item anyway.\n let itemProps: SelectableItemAria['itemProps'] = {};\n if (!shouldUseVirtualFocus) {\n itemProps = {\n tabIndex: isFocused ? 0 : -1,\n onFocus(e) {\n if (e.target === ref.current) {\n manager.setFocusedKey(key);\n }\n }\n };\n }\n\n let modality = useRef(null);\n let hasPrimaryAction = onAction && manager.selectionMode === 'none';\n let hasSecondaryAction = onAction && manager.selectionMode !== 'none' && manager.selectionBehavior === 'replace';\n let allowsSelection = !isDisabled && manager.canSelectItem(key);\n\n // By default, selection occurs on pointer down. This can be strange if selecting an\n // item causes the UI to disappear immediately (e.g. menus).\n // If shouldSelectOnPressUp is true, we use onPressUp instead of onPressStart.\n // onPress requires a pointer down event on the same element as pointer up. For menus,\n // we want to be able to have the pointer down on the trigger that opens the menu and\n // the pointer up on the menu item rather than requiring a separate press.\n // For keyboard events, selection still occurs on key down.\n let itemPressProps: PressProps = {};\n if (shouldSelectOnPressUp) {\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n if (e.pointerType === 'keyboard') {\n onSelect(e);\n }\n };\n\n // If allowsDifferentPressOrigin, make selection happen on pressUp (e.g. open menu on press down, selection on menu item happens on press up.)\n // Otherwise, have selection happen onPress (prevents listview row selection when clicking on interactable elements in the row)\n if (!allowsDifferentPressOrigin) {\n itemPressProps.onPress = (e) => {\n if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n\n if (hasPrimaryAction) {\n onAction();\n }\n };\n } else {\n itemPressProps.onPressUp = (e) => {\n if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = hasPrimaryAction ? () => onAction() : null;\n }\n } else {\n // On touch, it feels strange to select on touch down, so we special case this.\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n if (e.pointerType !== 'touch' && e.pointerType !== 'virtual') {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = (e) => {\n if (e.pointerType === 'touch' || e.pointerType === 'virtual' || hasPrimaryAction) {\n // Single tap on touch with selectionBehavior = 'replace' performs an action, i.e. navigation.\n // Also perform action on press up when selectionMode = 'none'.\n if (hasPrimaryAction || hasSecondaryAction) {\n onAction();\n } else {\n onSelect(e);\n }\n }\n };\n }\n\n if (!isVirtualized) {\n itemProps['data-key'] = key;\n }\n\n itemPressProps.preventFocusOnPress = shouldUseVirtualFocus;\n let {pressProps, isPressed} = usePress(itemPressProps);\n\n // Double clicking with a mouse with selectionBehavior = 'replace' performs an action.\n let onDoubleClick = hasSecondaryAction ? (e) => {\n if (modality.current === 'mouse') {\n e.stopPropagation();\n e.preventDefault();\n onAction();\n }\n } : undefined;\n\n // Long pressing an item with touch when selectionBehavior = 'replace' switches the selection behavior\n // to 'toggle'. This changes the single tap behavior from performing an action (i.e. navigating) to\n // selecting, and may toggle the appearance of a UI affordance like checkboxes on each item.\n // TODO: what about when drag and drop is also enabled??\n let {longPressProps} = useLongPress({\n isDisabled: !hasSecondaryAction,\n onLongPress(e) {\n if (e.pointerType === 'touch') {\n onSelect(e);\n manager.setSelectionBehavior('toggle');\n }\n }\n });\n\n // Pressing the Enter key with selectionBehavior = 'replace' performs an action (i.e. navigation).\n let onKeyUp = hasSecondaryAction ? (e: KeyboardEvent) => {\n if (e.key === 'Enter') {\n onAction();\n }\n } : undefined;\n\n return {\n itemProps: mergeProps(\n itemProps,\n allowsSelection || hasPrimaryAction ? pressProps : {},\n hasSecondaryAction ? longPressProps : {},\n {onKeyUp, onDoubleClick}\n ),\n isPressed\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, FocusStrategy, KeyboardDelegate, Node} from '@react-types/shared';\nimport {HTMLAttributes, Key, RefObject, useMemo} from 'react';\nimport {ListKeyboardDelegate} from './ListKeyboardDelegate';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useCollator} from '@react-aria/i18n';\nimport {useSelectableCollection} from './useSelectableCollection';\n\ninterface SelectableListOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * State of the collection.\n */\n collection: Collection<Node<unknown>>,\n /**\n * The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.\n */\n disabledKeys: Set<Key>,\n /**\n * A ref to the item.\n */\n ref?: RefObject<HTMLElement>,\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate?: KeyboardDelegate,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean\n}\n\ninterface SelectableListAria {\n /**\n * Props for the option element.\n */\n listProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with a selectable list.\n */\nexport function useSelectableList(props: SelectableListOptions): SelectableListAria {\n let {\n selectionManager,\n collection,\n disabledKeys,\n ref,\n keyboardDelegate,\n autoFocus,\n shouldFocusWrap,\n isVirtualized,\n disallowEmptySelection,\n selectOnFocus = false,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation\n } = props;\n\n // By default, a KeyboardDelegate is provided which uses the DOM to query layout information (e.g. for page up/page down).\n // When virtualized, the layout object will be passed in as a prop and override this.\n let collator = useCollator({usage: 'search', sensitivity: 'base'});\n let delegate = useMemo(() => keyboardDelegate || new ListKeyboardDelegate(collection, disabledKeys, ref, collator), [keyboardDelegate, collection, disabledKeys, ref, collator]);\n\n let {collectionProps} = useSelectableCollection({\n ref,\n selectionManager,\n keyboardDelegate: delegate,\n autoFocus,\n shouldFocusWrap,\n disallowEmptySelection,\n selectOnFocus,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation,\n isVirtualized,\n scrollRef: ref\n });\n\n return {\n listProps: collectionProps\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, KeyboardDelegate, Node} from '@react-types/shared';\nimport {Key, RefObject} from 'react';\n\nexport class ListKeyboardDelegate<T> implements KeyboardDelegate {\n private collection: Collection<Node<T>>;\n private disabledKeys: Set<Key>;\n private ref: RefObject<HTMLElement>;\n private collator: Intl.Collator;\n\n constructor(collection: Collection<Node<T>>, disabledKeys: Set<Key>, ref: RefObject<HTMLElement>, collator?: Intl.Collator) {\n this.collection = collection;\n this.disabledKeys = disabledKeys;\n this.ref = ref;\n this.collator = collator;\n }\n\n getKeyBelow(key: Key) {\n key = this.collection.getKeyAfter(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getKeyAbove(key: Key) {\n key = this.collection.getKeyBefore(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n getFirstKey() {\n let key = this.collection.getFirstKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n private getItem(key: Key): HTMLElement {\n return this.ref.current.querySelector(`[data-key=\"${key}\"]`);\n }\n\n getKeyPageAbove(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.max(0, item.offsetTop + item.offsetHeight - menu.offsetHeight);\n\n while (item && item.offsetTop > pageY) {\n key = this.getKeyAbove(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyPageBelow(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.min(menu.scrollHeight, item.offsetTop - item.offsetHeight + menu.offsetHeight);\n\n while (item && item.offsetTop < pageY) {\n key = this.getKeyBelow(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyForSearch(search: string, fromKey?: Key) {\n if (!this.collator) {\n return null;\n }\n\n let collection = this.collection;\n let key = fromKey || this.getFirstKey();\n while (key != null) {\n let item = collection.getItem(key);\n let substring = item.textValue.slice(0, search.length);\n if (item.textValue && this.collator.compare(substring, search) === 0) {\n return key;\n }\n\n key = this.getKeyBelow(key);\n }\n\n return null;\n }\n}\n"],"names":[],"version":3,"file":"module.js.map"}
|
|
1
|
+
{"mappings":"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","sources":["packages/@react-aria/selection/src/index.ts","packages/@react-aria/selection/src/useSelectableCollection.ts","packages/@react-aria/selection/src/utils.ts","packages/@react-aria/selection/src/useTypeSelect.ts","packages/@react-aria/selection/src/useSelectableItem.ts","packages/@react-aria/selection/src/useSelectableList.ts","packages/@react-aria/selection/src/ListKeyboardDelegate.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useSelectableCollection';\nexport * from './useSelectableItem';\nexport * from './useSelectableList';\nexport * from './ListKeyboardDelegate';\nexport * from './useTypeSelect';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {FocusEvent, HTMLAttributes, Key, KeyboardEvent, RefObject, useEffect, useRef} from 'react';\nimport {focusSafely, getFocusableTreeWalker} from '@react-aria/focus';\nimport {FocusStrategy, KeyboardDelegate} from '@react-types/shared';\nimport {focusWithoutScrolling, mergeProps, scrollIntoView, useEvent} from '@react-aria/utils';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useLocale} from '@react-aria/i18n';\nimport {useTypeSelect} from './useTypeSelect';\n\ninterface SelectableCollectionOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A delegate object that implements behavior for keyboard focus movement.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * The ref attached to the element representing the collection.\n */\n ref: RefObject<HTMLElement>,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether the collection allows the user to select all items via keyboard shortcut.\n * @default false\n */\n disallowSelectAll?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean,\n /**\n * Whether the collection items are contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * The ref attached to the scrollable body. Used to provide automatic scrolling on item focus for non-virtualized collections.\n * If not provided, defaults to the collection ref.\n */\n scrollRef?: RefObject<HTMLElement>\n}\n\ninterface SelectableCollectionAria {\n /** Props for the collection element. */\n collectionProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with selectable collections.\n */\nexport function useSelectableCollection(options: SelectableCollectionOptions): SelectableCollectionAria {\n let {\n selectionManager: manager,\n keyboardDelegate: delegate,\n ref,\n autoFocus = false,\n shouldFocusWrap = false,\n disallowEmptySelection = false,\n disallowSelectAll = false,\n selectOnFocus = manager.selectionBehavior === 'replace',\n disallowTypeAhead = false,\n shouldUseVirtualFocus,\n allowsTabNavigation = false,\n isVirtualized,\n // If no scrollRef is provided, assume the collection ref is the scrollable region\n scrollRef = ref\n } = options;\n let {direction} = useLocale();\n\n\n let onKeyDown = (e: KeyboardEvent) => {\n // Prevent option + tab from doing anything since it doesn't move focus to the cells, only buttons/checkboxes\n if (e.altKey && e.key === 'Tab') {\n e.preventDefault();\n }\n\n // Keyboard events bubble through portals. Don't handle keyboard events\n // for elements outside the collection (e.g. menus).\n if (!ref.current.contains(e.target as HTMLElement)) {\n return;\n }\n\n const navigateToKey = (key: Key | undefined, childFocus?: FocusStrategy) => {\n if (key != null) {\n manager.setFocusedKey(key, childFocus);\n\n if (e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(key);\n } else if (selectOnFocus && !isNonContiguousSelectionModifier(e)) {\n manager.replaceSelection(key);\n }\n }\n };\n\n switch (e.key) {\n case 'ArrowDown': {\n if (delegate.getKeyBelow) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyBelow(manager.focusedKey)\n : delegate.getFirstKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getFirstKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowUp': {\n if (delegate.getKeyAbove) {\n e.preventDefault();\n let nextKey = manager.focusedKey != null\n ? delegate.getKeyAbove(manager.focusedKey)\n : delegate.getLastKey?.();\n if (nextKey == null && shouldFocusWrap) {\n nextKey = delegate.getLastKey?.(manager.focusedKey);\n }\n navigateToKey(nextKey);\n }\n break;\n }\n case 'ArrowLeft': {\n if (delegate.getKeyLeftOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyLeftOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'first' : 'last');\n }\n break;\n }\n case 'ArrowRight': {\n if (delegate.getKeyRightOf) {\n e.preventDefault();\n let nextKey = delegate.getKeyRightOf(manager.focusedKey);\n navigateToKey(nextKey, direction === 'rtl' ? 'last' : 'first');\n }\n break;\n }\n case 'Home':\n if (delegate.getFirstKey) {\n e.preventDefault();\n let firstKey = delegate.getFirstKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(firstKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(firstKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(firstKey);\n }\n }\n break;\n case 'End':\n if (delegate.getLastKey) {\n e.preventDefault();\n let lastKey = delegate.getLastKey(manager.focusedKey, isCtrlKeyPressed(e));\n manager.setFocusedKey(lastKey);\n if (isCtrlKeyPressed(e) && e.shiftKey && manager.selectionMode === 'multiple') {\n manager.extendSelection(lastKey);\n } else if (selectOnFocus) {\n manager.replaceSelection(lastKey);\n }\n }\n break;\n case 'PageDown':\n if (delegate.getKeyPageBelow) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageBelow(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'PageUp':\n if (delegate.getKeyPageAbove) {\n e.preventDefault();\n let nextKey = delegate.getKeyPageAbove(manager.focusedKey);\n navigateToKey(nextKey);\n }\n break;\n case 'a':\n if (isCtrlKeyPressed(e) && manager.selectionMode === 'multiple' && disallowSelectAll !== true) {\n e.preventDefault();\n manager.selectAll();\n }\n break;\n case 'Escape':\n e.preventDefault();\n if (!disallowEmptySelection) {\n manager.clearSelection();\n }\n break;\n case 'Tab': {\n if (!allowsTabNavigation) {\n // There may be elements that are \"tabbable\" inside a collection (e.g. in a grid cell).\n // However, collections should be treated as a single tab stop, with arrow key navigation internally.\n // We don't control the rendering of these, so we can't override the tabIndex to prevent tabbing.\n // Instead, we handle the Tab key, and move focus manually to the first/last tabbable element\n // in the collection, so that the browser default behavior will apply starting from that element\n // rather than the currently focused one.\n if (e.shiftKey) {\n ref.current.focus();\n } else {\n let walker = getFocusableTreeWalker(ref.current, {tabbable: true});\n let next: HTMLElement;\n let last: HTMLElement;\n do {\n last = walker.lastChild() as HTMLElement;\n if (last) {\n next = last;\n }\n } while (last);\n\n if (next && !next.contains(document.activeElement)) {\n focusWithoutScrolling(next);\n }\n }\n break;\n }\n }\n }\n };\n\n // Store the scroll position so we can restore it later.\n let scrollPos = useRef({top: 0, left: 0});\n useEvent(scrollRef, 'scroll', isVirtualized ? null : () => {\n scrollPos.current = {\n top: scrollRef.current.scrollTop,\n left: scrollRef.current.scrollLeft\n };\n });\n\n let onFocus = (e: FocusEvent) => {\n if (manager.isFocused) {\n // If a focus event bubbled through a portal, reset focus state.\n if (!e.currentTarget.contains(e.target)) {\n manager.setFocused(false);\n }\n\n return;\n }\n\n // Focus events can bubble through portals. Ignore these events.\n if (!e.currentTarget.contains(e.target)) {\n return;\n }\n\n manager.setFocused(true);\n\n if (manager.focusedKey == null) {\n let navigateToFirstKey = (key: Key | undefined) => {\n if (key != null) {\n manager.setFocusedKey(key);\n if (selectOnFocus) {\n manager.replaceSelection(key);\n }\n }\n };\n // If the user hasn't yet interacted with the collection, there will be no focusedKey set.\n // Attempt to detect whether the user is tabbing forward or backward into the collection\n // and either focus the first or last item accordingly.\n let relatedTarget = e.relatedTarget as Element;\n if (relatedTarget && (e.currentTarget.compareDocumentPosition(relatedTarget) & Node.DOCUMENT_POSITION_FOLLOWING)) {\n navigateToFirstKey(manager.lastSelectedKey ?? delegate.getLastKey());\n } else {\n navigateToFirstKey(manager.firstSelectedKey ?? delegate.getFirstKey());\n }\n } else if (!isVirtualized) {\n // Restore the scroll position to what it was before.\n scrollRef.current.scrollTop = scrollPos.current.top;\n scrollRef.current.scrollLeft = scrollPos.current.left;\n\n // Refocus and scroll the focused item into view if it exists within the scrollable region.\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n // This prevents a flash of focus on the first/last element in the collection\n focusWithoutScrolling(element);\n scrollIntoView(scrollRef.current, element);\n }\n }\n };\n\n let onBlur = (e) => {\n // Don't set blurred and then focused again if moving focus within the collection.\n if (!e.currentTarget.contains(e.relatedTarget as HTMLElement)) {\n manager.setFocused(false);\n }\n };\n\n const autoFocusRef = useRef(autoFocus);\n useEffect(() => {\n if (autoFocusRef.current) {\n let focusedKey = null;\n\n // Check focus strategy to determine which item to focus\n if (autoFocus === 'first') {\n focusedKey = delegate.getFirstKey();\n } if (autoFocus === 'last') {\n focusedKey = delegate.getLastKey();\n }\n\n // If there are any selected keys, make the first one the new focus target\n let selectedKeys = manager.selectedKeys;\n if (selectedKeys.size) {\n focusedKey = selectedKeys.values().next().value;\n }\n\n manager.setFocused(true);\n manager.setFocusedKey(focusedKey);\n\n // If no default focus key is selected, focus the collection itself.\n if (focusedKey == null && !shouldUseVirtualFocus) {\n focusSafely(ref.current);\n }\n }\n autoFocusRef.current = false;\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n // If not virtualized, scroll the focused element into view when the focusedKey changes.\n // When virtualized, Virtualizer handles this internally.\n useEffect(() => {\n if (!isVirtualized && manager.focusedKey && scrollRef?.current) {\n let element = scrollRef.current.querySelector(`[data-key=\"${manager.focusedKey}\"]`) as HTMLElement;\n if (element) {\n scrollIntoView(scrollRef.current, element);\n }\n }\n }, [isVirtualized, scrollRef, manager.focusedKey]);\n\n let handlers = {\n onKeyDown,\n onFocus,\n onBlur,\n onMouseDown(e) {\n // Ignore events that bubbled through portals.\n if (e.currentTarget.contains(e.target)) {\n // Prevent focus going to the collection when clicking on the scrollbar.\n e.preventDefault();\n }\n }\n };\n\n let {typeSelectProps} = useTypeSelect({\n keyboardDelegate: delegate,\n selectionManager: manager\n });\n\n if (!disallowTypeAhead) {\n handlers = mergeProps(typeSelectProps, handlers);\n }\n\n // If nothing is focused within the collection, make the collection itself tabbable.\n // This will be marshalled to either the first or last item depending on where focus came from.\n // If using virtual focus, don't set a tabIndex at all so that VoiceOver on iOS 14 doesn't try\n // to move real DOM focus to the element anyway.\n let tabIndex: number;\n if (!shouldUseVirtualFocus) {\n tabIndex = manager.focusedKey == null ? 0 : -1;\n }\n\n return {\n collectionProps: {\n ...handlers,\n tabIndex\n }\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {isAppleDevice} from '@react-aria/utils';\nimport {isMac} from '@react-aria/utils';\n\ninterface Event {\n altKey: boolean,\n ctrlKey: boolean,\n metaKey: boolean\n}\n\nexport function isNonContiguousSelectionModifier(e: Event) {\n // Ctrl + Arrow Up/Arrow Down has a system wide meaning on macOS, so use Alt instead.\n // On Windows and Ubuntu, Alt + Space has a system wide meaning.\n return isAppleDevice() ? e.altKey : e.ctrlKey;\n}\n\nexport function isCtrlKeyPressed(e: Event) {\n if (isMac()) {\n return e.metaKey;\n }\n\n return e.ctrlKey;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {HTMLAttributes, Key, KeyboardEvent, useRef} from 'react';\nimport {KeyboardDelegate} from '@react-types/shared';\nimport {MultipleSelectionManager} from '@react-stately/selection';\n\ninterface TypeSelectOptions {\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate: KeyboardDelegate,\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * Called when an item is focused by typing.\n */\n onTypeSelect?: (key: Key) => void\n}\n\ninterface TypeSelectAria {\n /**\n * Props to be spread on the owner of the options.\n */\n typeSelectProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles typeahead interactions with collections.\n */\nexport function useTypeSelect(options: TypeSelectOptions): TypeSelectAria {\n let {keyboardDelegate, selectionManager, onTypeSelect} = options;\n let state = useRef({\n search: '',\n timeout: null\n }).current;\n\n let onKeyDown = (e: KeyboardEvent) => {\n let character = getStringForKey(e.key);\n if (!character || e.ctrlKey || e.metaKey) {\n return;\n }\n\n // Do not propagate the Spacebar event if it's meant to be part of the search.\n // When we time out, the search term becomes empty, hence the check on length.\n // Trimming is to account for the case of pressing the Spacebar more than once,\n // which should cycle through the selection/deselection of the focused item.\n if (character === ' ' && state.search.trim().length > 0) {\n e.preventDefault();\n if (!('continuePropagation' in e)) {\n e.stopPropagation();\n }\n }\n\n state.search += character;\n\n // Use the delegate to find a key to focus.\n // Prioritize items after the currently focused item, falling back to searching the whole list.\n let key = keyboardDelegate.getKeyForSearch(state.search, selectionManager.focusedKey);\n\n // If no key found, search from the top.\n if (key == null) {\n key = keyboardDelegate.getKeyForSearch(state.search);\n }\n\n if (key != null) {\n selectionManager.setFocusedKey(key);\n if (onTypeSelect) {\n onTypeSelect(key);\n }\n }\n\n clearTimeout(state.timeout);\n state.timeout = setTimeout(() => {\n state.search = '';\n }, 500);\n };\n\n return {\n typeSelectProps: {\n // Using a capturing listener to catch the keydown event before\n // other hooks in order to handle the Spacebar event.\n onKeyDownCapture: keyboardDelegate.getKeyForSearch ? onKeyDown : null\n }\n };\n}\n\nfunction getStringForKey(key: string) {\n // If the key is of length 1, it is an ASCII value.\n // Otherwise, if there are no ASCII characters in the key name,\n // it is a Unicode character.\n // See https://www.w3.org/TR/uievents-key/\n if (key.length === 1 || !/^[A-Z]/i.test(key)) {\n return key;\n }\n\n return '';\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {focusSafely} from '@react-aria/focus';\nimport {HTMLAttributes, Key, RefObject, useEffect, useRef} from 'react';\nimport {isCtrlKeyPressed, isNonContiguousSelectionModifier} from './utils';\nimport {LongPressEvent, PressEvent} from '@react-types/shared';\nimport {mergeProps} from '@react-aria/utils';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {PressProps, useLongPress, usePress} from '@react-aria/interactions';\n\nexport interface SelectableItemOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * A unique key for the item.\n */\n key: Key,\n /**\n * Ref to the item.\n */\n ref: RefObject<HTMLElement>,\n /**\n * By default, selection occurs on pointer down. This can be strange if selecting an\n * item causes the UI to disappear immediately (e.g. menus).\n */\n shouldSelectOnPressUp?: boolean,\n /**\n * Whether selection requires the pointer/mouse down and up events to occur on the same target or triggers selection on\n * the target of the pointer/mouse up event.\n */\n allowsDifferentPressOrigin?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Function to focus the item.\n */\n focus?: () => void,\n /**\n * Whether the option should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /** Whether the item is disabled. */\n isDisabled?: boolean,\n /**\n * Handler that is called when a user performs an action on the item. The exact user event depends on\n * the collection's `selectionBehavior` prop and the interaction modality.\n */\n onAction?: () => void\n}\n\nexport interface SelectableItemStates {\n /** Whether the item is currently in a pressed state. */\n isPressed: boolean,\n /** Whether the item is currently selected. */\n isSelected: boolean,\n /**\n * Whether the item is non-interactive, i.e. both selection and actions are disabled and the item may\n * not be focused. Dependent on `disabledKeys` and `disabledBehavior`.\n */\n isDisabled: boolean,\n /**\n * Whether the item may be selected, dependent on `selectionMode`, `disabledKeys`, and `disabledBehavior`.\n */\n allowsSelection: boolean,\n /**\n * Whether the item has an action, dependent on `onAction`, `disabledKeys`,\n * and `disabledBehavior. It may also change depending on the current selection state\n * of the list (e.g. when selection is primary). This can be used to enable or disable hover\n * styles or other visual indications of interactivity.\n */\n hasAction: boolean\n}\n\nexport interface SelectableItemAria extends SelectableItemStates {\n /**\n * Props to be spread on the item root node.\n */\n itemProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with an item in a selectable collection.\n */\nexport function useSelectableItem(options: SelectableItemOptions): SelectableItemAria {\n let {\n selectionManager: manager,\n key,\n ref,\n shouldSelectOnPressUp,\n isVirtualized,\n shouldUseVirtualFocus,\n focus,\n isDisabled,\n onAction,\n allowsDifferentPressOrigin\n } = options;\n\n let onSelect = (e: PressEvent | LongPressEvent | PointerEvent) => {\n if (e.pointerType === 'keyboard' && isNonContiguousSelectionModifier(e)) {\n manager.toggleSelection(key);\n } else {\n if (manager.selectionMode === 'none') {\n return;\n }\n\n if (manager.selectionMode === 'single') {\n if (manager.isSelected(key) && !manager.disallowEmptySelection) {\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n } else if (e && e.shiftKey) {\n manager.extendSelection(key);\n } else if (manager.selectionBehavior === 'toggle' || (e && (isCtrlKeyPressed(e) || e.pointerType === 'touch' || e.pointerType === 'virtual'))) {\n // if touch or virtual (VO) then we just want to toggle, otherwise it's impossible to multi select because they don't have modifier keys\n manager.toggleSelection(key);\n } else {\n manager.replaceSelection(key);\n }\n }\n };\n\n // Focus the associated DOM node when this item becomes the focusedKey\n useEffect(() => {\n let isFocused = key === manager.focusedKey;\n if (isFocused && manager.isFocused && !shouldUseVirtualFocus && document.activeElement !== ref.current) {\n if (focus) {\n focus();\n } else {\n focusSafely(ref.current);\n }\n }\n }, [ref, key, manager.focusedKey, manager.childFocusStrategy, manager.isFocused, shouldUseVirtualFocus]);\n\n // Set tabIndex to 0 if the element is focused, or -1 otherwise so that only the last focused\n // item is tabbable. If using virtual focus, don't set a tabIndex at all so that VoiceOver\n // on iOS 14 doesn't try to move real DOM focus to the item anyway.\n let itemProps: SelectableItemAria['itemProps'] = {};\n if (!shouldUseVirtualFocus) {\n itemProps = {\n tabIndex: key === manager.focusedKey ? 0 : -1,\n onFocus(e) {\n if (e.target === ref.current) {\n manager.setFocusedKey(key);\n }\n }\n };\n }\n\n\n // With checkbox selection, onAction (i.e. navigation) becomes primary, and occurs on a single click of the row.\n // Clicking the checkbox enters selection mode, after which clicking anywhere on any row toggles selection for that row.\n // With highlight selection, onAction is secondary, and occurs on double click. Single click selects the row.\n // With touch, onAction occurs on single tap, and long press enters selection mode.\n isDisabled = isDisabled || manager.isDisabled(key);\n let allowsSelection = !isDisabled && manager.canSelectItem(key);\n let allowsActions = onAction && !isDisabled;\n let hasPrimaryAction = allowsActions && (\n manager.selectionBehavior === 'replace'\n ? !allowsSelection\n : manager.isEmpty\n );\n let hasSecondaryAction = allowsActions && allowsSelection && manager.selectionBehavior === 'replace';\n let hasAction = hasPrimaryAction || hasSecondaryAction;\n let modality = useRef(null);\n\n let longPressEnabled = hasAction && allowsSelection;\n let longPressEnabledOnPressStart = useRef(false);\n let hadPrimaryActionOnPressStart = useRef(false);\n\n // By default, selection occurs on pointer down. This can be strange if selecting an\n // item causes the UI to disappear immediately (e.g. menus).\n // If shouldSelectOnPressUp is true, we use onPressUp instead of onPressStart.\n // onPress requires a pointer down event on the same element as pointer up. For menus,\n // we want to be able to have the pointer down on the trigger that opens the menu and\n // the pointer up on the menu item rather than requiring a separate press.\n // For keyboard events, selection still occurs on key down.\n let itemPressProps: PressProps = {};\n if (shouldSelectOnPressUp) {\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n longPressEnabledOnPressStart.current = longPressEnabled;\n if (e.pointerType === 'keyboard' && (!hasAction || isSelectionKey())) {\n onSelect(e);\n }\n };\n\n // If allowsDifferentPressOrigin, make selection happen on pressUp (e.g. open menu on press down, selection on menu item happens on press up.)\n // Otherwise, have selection happen onPress (prevents listview row selection when clicking on interactable elements in the row)\n if (!allowsDifferentPressOrigin) {\n itemPressProps.onPress = (e) => {\n if (hasPrimaryAction || (hasSecondaryAction && e.pointerType !== 'mouse')) {\n if (e.pointerType === 'keyboard' && !isActionKey()) {\n return;\n }\n\n onAction();\n } else if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n };\n } else {\n itemPressProps.onPressUp = (e) => {\n if (e.pointerType !== 'keyboard') {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = hasPrimaryAction ? () => onAction() : null;\n }\n } else {\n itemPressProps.onPressStart = (e) => {\n modality.current = e.pointerType;\n longPressEnabledOnPressStart.current = longPressEnabled;\n hadPrimaryActionOnPressStart.current = hasPrimaryAction;\n\n // Select on mouse down unless there is a primary action which will occur on mouse up.\n // For keyboard, select on key down. If there is an action, the Space key selects on key down,\n // and the Enter key performs onAction on key up.\n if (\n (e.pointerType === 'mouse' && !hasPrimaryAction) ||\n (e.pointerType === 'keyboard' && (!onAction || isSelectionKey()))\n ) {\n onSelect(e);\n }\n };\n\n itemPressProps.onPress = (e) => {\n // Selection occurs on touch up. Primary actions always occur on pointer up.\n // Both primary and secondary actions occur on Enter key up. The only exception\n // is secondary actions, which occur on double click with a mouse.\n if (\n e.pointerType === 'touch' ||\n e.pointerType === 'pen' ||\n e.pointerType === 'virtual' ||\n (e.pointerType === 'keyboard' && hasAction && isActionKey()) ||\n (e.pointerType === 'mouse' && hadPrimaryActionOnPressStart.current)\n ) {\n if (hasAction) {\n onAction();\n } else {\n onSelect(e);\n }\n }\n };\n }\n\n if (!isVirtualized) {\n itemProps['data-key'] = key;\n }\n\n itemPressProps.preventFocusOnPress = shouldUseVirtualFocus;\n let {pressProps, isPressed} = usePress(itemPressProps);\n\n // Double clicking with a mouse with selectionBehavior = 'replace' performs an action.\n let onDoubleClick = hasSecondaryAction ? (e) => {\n if (modality.current === 'mouse') {\n e.stopPropagation();\n e.preventDefault();\n onAction();\n }\n } : undefined;\n\n // Long pressing an item with touch when selectionBehavior = 'replace' switches the selection behavior\n // to 'toggle'. This changes the single tap behavior from performing an action (i.e. navigating) to\n // selecting, and may toggle the appearance of a UI affordance like checkboxes on each item.\n let {longPressProps} = useLongPress({\n isDisabled: !longPressEnabled,\n onLongPress(e) {\n if (e.pointerType === 'touch') {\n onSelect(e);\n manager.setSelectionBehavior('toggle');\n }\n }\n });\n\n // Prevent native drag and drop on long press if we also select on long press.\n // Once the user is in selection mode, they can long press again to drag.\n let onDragStart = e => {\n if (modality.current === 'touch' && longPressEnabledOnPressStart.current) {\n e.preventDefault();\n }\n };\n\n return {\n itemProps: mergeProps(\n itemProps,\n allowsSelection || hasPrimaryAction ? pressProps : {},\n longPressEnabled ? longPressProps : {},\n {onDoubleClick, onDragStart}\n ),\n isPressed,\n isSelected: manager.isSelected(key),\n isDisabled,\n allowsSelection,\n hasAction\n };\n}\n\nfunction isActionKey() {\n let event = window.event as KeyboardEvent;\n return event?.key === 'Enter';\n}\n\nfunction isSelectionKey() {\n let event = window.event as KeyboardEvent;\n return event?.key === ' ' || event?.code === 'Space';\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, FocusStrategy, KeyboardDelegate, Node} from '@react-types/shared';\nimport {HTMLAttributes, Key, RefObject, useMemo} from 'react';\nimport {ListKeyboardDelegate} from './ListKeyboardDelegate';\nimport {MultipleSelectionManager} from '@react-stately/selection';\nimport {useCollator} from '@react-aria/i18n';\nimport {useSelectableCollection} from './useSelectableCollection';\n\ninterface SelectableListOptions {\n /**\n * An interface for reading and updating multiple selection state.\n */\n selectionManager: MultipleSelectionManager,\n /**\n * State of the collection.\n */\n collection: Collection<Node<unknown>>,\n /**\n * The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.\n */\n disabledKeys: Set<Key>,\n /**\n * A ref to the item.\n */\n ref?: RefObject<HTMLElement>,\n /**\n * A delegate that returns collection item keys with respect to visual layout.\n */\n keyboardDelegate?: KeyboardDelegate,\n /**\n * Whether the collection or one of its items should be automatically focused upon render.\n * @default false\n */\n autoFocus?: boolean | FocusStrategy,\n /**\n * Whether focus should wrap around when the end/start is reached.\n * @default false\n */\n shouldFocusWrap?: boolean,\n /**\n * Whether the option is contained in a virtual scroller.\n */\n isVirtualized?: boolean,\n /**\n * Whether the collection allows empty selection.\n * @default false\n */\n disallowEmptySelection?: boolean,\n /**\n * Whether selection should occur automatically on focus.\n * @default false\n */\n selectOnFocus?: boolean,\n /**\n * Whether typeahead is disabled.\n * @default false\n */\n disallowTypeAhead?: boolean,\n /**\n * Whether the collection items should use virtual focus instead of being focused directly.\n */\n shouldUseVirtualFocus?: boolean,\n /**\n * Whether navigation through tab key is enabled.\n */\n allowsTabNavigation?: boolean\n}\n\ninterface SelectableListAria {\n /**\n * Props for the option element.\n */\n listProps: HTMLAttributes<HTMLElement>\n}\n\n/**\n * Handles interactions with a selectable list.\n */\nexport function useSelectableList(props: SelectableListOptions): SelectableListAria {\n let {\n selectionManager,\n collection,\n disabledKeys,\n ref,\n keyboardDelegate,\n autoFocus,\n shouldFocusWrap,\n isVirtualized,\n disallowEmptySelection,\n selectOnFocus = false,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation\n } = props;\n\n // By default, a KeyboardDelegate is provided which uses the DOM to query layout information (e.g. for page up/page down).\n // When virtualized, the layout object will be passed in as a prop and override this.\n let collator = useCollator({usage: 'search', sensitivity: 'base'});\n let delegate = useMemo(() => keyboardDelegate || new ListKeyboardDelegate(collection, disabledKeys, ref, collator), [keyboardDelegate, collection, disabledKeys, ref, collator]);\n\n let {collectionProps} = useSelectableCollection({\n ref,\n selectionManager,\n keyboardDelegate: delegate,\n autoFocus,\n shouldFocusWrap,\n disallowEmptySelection,\n selectOnFocus,\n disallowTypeAhead,\n shouldUseVirtualFocus,\n allowsTabNavigation,\n isVirtualized,\n scrollRef: ref\n });\n\n return {\n listProps: collectionProps\n };\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Collection, KeyboardDelegate, Node} from '@react-types/shared';\nimport {Key, RefObject} from 'react';\n\nexport class ListKeyboardDelegate<T> implements KeyboardDelegate {\n private collection: Collection<Node<T>>;\n private disabledKeys: Set<Key>;\n private ref: RefObject<HTMLElement>;\n private collator: Intl.Collator;\n\n constructor(collection: Collection<Node<T>>, disabledKeys: Set<Key>, ref: RefObject<HTMLElement>, collator?: Intl.Collator) {\n this.collection = collection;\n this.disabledKeys = disabledKeys;\n this.ref = ref;\n this.collator = collator;\n }\n\n getKeyBelow(key: Key) {\n key = this.collection.getKeyAfter(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getKeyAbove(key: Key) {\n key = this.collection.getKeyBefore(key);\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n getFirstKey() {\n let key = this.collection.getFirstKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyAfter(key);\n }\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n while (key != null) {\n let item = this.collection.getItem(key);\n if (item.type === 'item' && !this.disabledKeys.has(key)) {\n return key;\n }\n\n key = this.collection.getKeyBefore(key);\n }\n }\n\n private getItem(key: Key): HTMLElement {\n return this.ref.current.querySelector(`[data-key=\"${key}\"]`);\n }\n\n getKeyPageAbove(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.max(0, item.offsetTop + item.offsetHeight - menu.offsetHeight);\n\n while (item && item.offsetTop > pageY) {\n key = this.getKeyAbove(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyPageBelow(key: Key) {\n let menu = this.ref.current;\n let item = this.getItem(key);\n if (!item) {\n return null;\n }\n\n let pageY = Math.min(menu.scrollHeight, item.offsetTop - item.offsetHeight + menu.offsetHeight);\n\n while (item && item.offsetTop < pageY) {\n key = this.getKeyBelow(key);\n item = this.getItem(key);\n }\n\n return key;\n }\n\n getKeyForSearch(search: string, fromKey?: Key) {\n if (!this.collator) {\n return null;\n }\n\n let collection = this.collection;\n let key = fromKey || this.getFirstKey();\n while (key != null) {\n let item = collection.getItem(key);\n let substring = item.textValue.slice(0, search.length);\n if (item.textValue && this.collator.compare(substring, search) === 0) {\n return key;\n }\n\n key = this.getKeyBelow(key);\n }\n\n return null;\n }\n}\n"],"names":[],"version":3,"file":"module.js.map"}
|
package/dist/types.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ interface SelectableCollectionAria {
|
|
|
94
94
|
* Handles interactions with selectable collections.
|
|
95
95
|
*/
|
|
96
96
|
export function useSelectableCollection(options: SelectableCollectionOptions): SelectableCollectionAria;
|
|
97
|
-
interface SelectableItemOptions {
|
|
97
|
+
export interface SelectableItemOptions {
|
|
98
98
|
/**
|
|
99
99
|
* An interface for reading and updating multiple selection state.
|
|
100
100
|
*/
|
|
@@ -132,18 +132,38 @@ interface SelectableItemOptions {
|
|
|
132
132
|
/** Whether the item is disabled. */
|
|
133
133
|
isDisabled?: boolean;
|
|
134
134
|
/**
|
|
135
|
-
* Handler that is called when a user performs an action on the
|
|
135
|
+
* Handler that is called when a user performs an action on the item. The exact user event depends on
|
|
136
136
|
* the collection's `selectionBehavior` prop and the interaction modality.
|
|
137
137
|
*/
|
|
138
138
|
onAction?: () => void;
|
|
139
139
|
}
|
|
140
|
-
interface
|
|
140
|
+
export interface SelectableItemStates {
|
|
141
|
+
/** Whether the item is currently in a pressed state. */
|
|
142
|
+
isPressed: boolean;
|
|
143
|
+
/** Whether the item is currently selected. */
|
|
144
|
+
isSelected: boolean;
|
|
145
|
+
/**
|
|
146
|
+
* Whether the item is non-interactive, i.e. both selection and actions are disabled and the item may
|
|
147
|
+
* not be focused. Dependent on `disabledKeys` and `disabledBehavior`.
|
|
148
|
+
*/
|
|
149
|
+
isDisabled: boolean;
|
|
150
|
+
/**
|
|
151
|
+
* Whether the item may be selected, dependent on `selectionMode`, `disabledKeys`, and `disabledBehavior`.
|
|
152
|
+
*/
|
|
153
|
+
allowsSelection: boolean;
|
|
154
|
+
/**
|
|
155
|
+
* Whether the item has an action, dependent on `onAction`, `disabledKeys`,
|
|
156
|
+
* and `disabledBehavior. It may also change depending on the current selection state
|
|
157
|
+
* of the list (e.g. when selection is primary). This can be used to enable or disable hover
|
|
158
|
+
* styles or other visual indications of interactivity.
|
|
159
|
+
*/
|
|
160
|
+
hasAction: boolean;
|
|
161
|
+
}
|
|
162
|
+
export interface SelectableItemAria extends SelectableItemStates {
|
|
141
163
|
/**
|
|
142
164
|
* Props to be spread on the item root node.
|
|
143
165
|
*/
|
|
144
166
|
itemProps: HTMLAttributes<HTMLElement>;
|
|
145
|
-
/** Whether the item is currently in a pressed state. */
|
|
146
|
-
isPressed: boolean;
|
|
147
167
|
}
|
|
148
168
|
/**
|
|
149
169
|
* Handles interactions with an item in a selectable collection.
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;ACgBA;IACE;;OAEG;IACH,gBAAgB,EAAE,gBAAgB,CAAC;IACnC;;OAEG;IACH,gBAAgB,EAAE,wBAAwB,CAAC;IAC3C;;OAEG;IACH,YAAY,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAA;CAClC;AAED;IACE;;OAEG;IACH,eAAe,EAAE,eAAe,WAAW,CAAC,CAAA;CAC7C;AAED;;GAEG;AACH,8BAA8B,OAAO,EAAE,iBAAiB,GAAG,cAAc,CAuDxE;AC3ED;IACE;;OAEG;IACH,gBAAgB,EAAE,wBAAwB,CAAC;IAC3C;;OAEG;IACH,gBAAgB,EAAE,gBAAgB,CAAC;IACnC;;OAEG;IACH,GAAG,EAAE,UAAU,WAAW,CAAC,CAAC;IAC5B;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,aAAa,CAAC;IACpC;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,SAAS,CAAC,EAAE,UAAU,WAAW,CAAC,CAAA;CACnC;AAED;IACE,wCAAwC;IACxC,eAAe,EAAE,eAAe,WAAW,CAAC,CAAA;CAC7C;AAED;;GAEG;AACH,wCAAwC,OAAO,EAAE,2BAA2B,GAAG,wBAAwB,CAwTtG;AC/XD;IACE;;OAEG;IACH,gBAAgB,EAAE,wBAAwB,CAAC;IAC3C;;OAEG;IACH,GAAG,EAAE,GAAG,CAAC;IACT;;OAEG;IACH,GAAG,EAAE,UAAU,WAAW,CAAC,CAAC;IAC5B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;;OAGG;IACH,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,IAAI,CAAC;IACnB;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,oCAAoC;IACpC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;CACtB;AAED;IACE
|
|
1
|
+
{"mappings":"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","sources":["packages/@react-aria/selection/src/packages/@react-aria/selection/src/utils.ts","packages/@react-aria/selection/src/packages/@react-aria/selection/src/useTypeSelect.ts","packages/@react-aria/selection/src/packages/@react-aria/selection/src/useSelectableCollection.ts","packages/@react-aria/selection/src/packages/@react-aria/selection/src/useSelectableItem.ts","packages/@react-aria/selection/src/packages/@react-aria/selection/src/ListKeyboardDelegate.ts","packages/@react-aria/selection/src/packages/@react-aria/selection/src/useSelectableList.ts","packages/@react-aria/selection/src/packages/@react-aria/selection/src/index.ts","packages/@react-aria/selection/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './useSelectableCollection';\nexport * from './useSelectableItem';\nexport * from './useSelectableList';\nexport * from './ListKeyboardDelegate';\nexport * from './useTypeSelect';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-aria/selection",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.1",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -18,19 +18,19 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@babel/runtime": "^7.6.2",
|
|
21
|
-
"@react-aria/focus": "^3.
|
|
22
|
-
"@react-aria/i18n": "^3.
|
|
23
|
-
"@react-aria/interactions": "^3.
|
|
24
|
-
"@react-aria/utils": "^3.
|
|
25
|
-
"@react-stately/collections": "^3.
|
|
26
|
-
"@react-stately/selection": "^3.
|
|
27
|
-
"@react-types/shared": "^3.
|
|
21
|
+
"@react-aria/focus": "^3.6.1",
|
|
22
|
+
"@react-aria/i18n": "^3.4.1",
|
|
23
|
+
"@react-aria/interactions": "^3.9.1",
|
|
24
|
+
"@react-aria/utils": "^3.13.1",
|
|
25
|
+
"@react-stately/collections": "^3.4.1",
|
|
26
|
+
"@react-stately/selection": "^3.10.1",
|
|
27
|
+
"@react-types/shared": "^3.13.1"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"react": "^16.8.0 || ^17.0.0-rc.1"
|
|
30
|
+
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "715c3f563ccf8c2e0102d3e18403d9db21a05a71"
|
|
36
36
|
}
|
package/src/useSelectableItem.ts
CHANGED
|
@@ -18,7 +18,7 @@ import {mergeProps} from '@react-aria/utils';
|
|
|
18
18
|
import {MultipleSelectionManager} from '@react-stately/selection';
|
|
19
19
|
import {PressProps, useLongPress, usePress} from '@react-aria/interactions';
|
|
20
20
|
|
|
21
|
-
interface SelectableItemOptions {
|
|
21
|
+
export interface SelectableItemOptions {
|
|
22
22
|
/**
|
|
23
23
|
* An interface for reading and updating multiple selection state.
|
|
24
24
|
*/
|
|
@@ -56,19 +56,40 @@ interface SelectableItemOptions {
|
|
|
56
56
|
/** Whether the item is disabled. */
|
|
57
57
|
isDisabled?: boolean,
|
|
58
58
|
/**
|
|
59
|
-
* Handler that is called when a user performs an action on the
|
|
59
|
+
* Handler that is called when a user performs an action on the item. The exact user event depends on
|
|
60
60
|
* the collection's `selectionBehavior` prop and the interaction modality.
|
|
61
61
|
*/
|
|
62
62
|
onAction?: () => void
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
-
interface
|
|
65
|
+
export interface SelectableItemStates {
|
|
66
|
+
/** Whether the item is currently in a pressed state. */
|
|
67
|
+
isPressed: boolean,
|
|
68
|
+
/** Whether the item is currently selected. */
|
|
69
|
+
isSelected: boolean,
|
|
70
|
+
/**
|
|
71
|
+
* Whether the item is non-interactive, i.e. both selection and actions are disabled and the item may
|
|
72
|
+
* not be focused. Dependent on `disabledKeys` and `disabledBehavior`.
|
|
73
|
+
*/
|
|
74
|
+
isDisabled: boolean,
|
|
75
|
+
/**
|
|
76
|
+
* Whether the item may be selected, dependent on `selectionMode`, `disabledKeys`, and `disabledBehavior`.
|
|
77
|
+
*/
|
|
78
|
+
allowsSelection: boolean,
|
|
79
|
+
/**
|
|
80
|
+
* Whether the item has an action, dependent on `onAction`, `disabledKeys`,
|
|
81
|
+
* and `disabledBehavior. It may also change depending on the current selection state
|
|
82
|
+
* of the list (e.g. when selection is primary). This can be used to enable or disable hover
|
|
83
|
+
* styles or other visual indications of interactivity.
|
|
84
|
+
*/
|
|
85
|
+
hasAction: boolean
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface SelectableItemAria extends SelectableItemStates {
|
|
66
89
|
/**
|
|
67
90
|
* Props to be spread on the item root node.
|
|
68
91
|
*/
|
|
69
|
-
itemProps: HTMLAttributes<HTMLElement
|
|
70
|
-
/** Whether the item is currently in a pressed state. */
|
|
71
|
-
isPressed: boolean
|
|
92
|
+
itemProps: HTMLAttributes<HTMLElement>
|
|
72
93
|
}
|
|
73
94
|
|
|
74
95
|
/**
|
|
@@ -114,8 +135,8 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
114
135
|
};
|
|
115
136
|
|
|
116
137
|
// Focus the associated DOM node when this item becomes the focusedKey
|
|
117
|
-
let isFocused = key === manager.focusedKey;
|
|
118
138
|
useEffect(() => {
|
|
139
|
+
let isFocused = key === manager.focusedKey;
|
|
119
140
|
if (isFocused && manager.isFocused && !shouldUseVirtualFocus && document.activeElement !== ref.current) {
|
|
120
141
|
if (focus) {
|
|
121
142
|
focus();
|
|
@@ -123,7 +144,7 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
123
144
|
focusSafely(ref.current);
|
|
124
145
|
}
|
|
125
146
|
}
|
|
126
|
-
}, [ref,
|
|
147
|
+
}, [ref, key, manager.focusedKey, manager.childFocusStrategy, manager.isFocused, shouldUseVirtualFocus]);
|
|
127
148
|
|
|
128
149
|
// Set tabIndex to 0 if the element is focused, or -1 otherwise so that only the last focused
|
|
129
150
|
// item is tabbable. If using virtual focus, don't set a tabIndex at all so that VoiceOver
|
|
@@ -131,7 +152,7 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
131
152
|
let itemProps: SelectableItemAria['itemProps'] = {};
|
|
132
153
|
if (!shouldUseVirtualFocus) {
|
|
133
154
|
itemProps = {
|
|
134
|
-
tabIndex:
|
|
155
|
+
tabIndex: key === manager.focusedKey ? 0 : -1,
|
|
135
156
|
onFocus(e) {
|
|
136
157
|
if (e.target === ref.current) {
|
|
137
158
|
manager.setFocusedKey(key);
|
|
@@ -140,10 +161,26 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
140
161
|
};
|
|
141
162
|
}
|
|
142
163
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
164
|
+
|
|
165
|
+
// With checkbox selection, onAction (i.e. navigation) becomes primary, and occurs on a single click of the row.
|
|
166
|
+
// Clicking the checkbox enters selection mode, after which clicking anywhere on any row toggles selection for that row.
|
|
167
|
+
// With highlight selection, onAction is secondary, and occurs on double click. Single click selects the row.
|
|
168
|
+
// With touch, onAction occurs on single tap, and long press enters selection mode.
|
|
169
|
+
isDisabled = isDisabled || manager.isDisabled(key);
|
|
146
170
|
let allowsSelection = !isDisabled && manager.canSelectItem(key);
|
|
171
|
+
let allowsActions = onAction && !isDisabled;
|
|
172
|
+
let hasPrimaryAction = allowsActions && (
|
|
173
|
+
manager.selectionBehavior === 'replace'
|
|
174
|
+
? !allowsSelection
|
|
175
|
+
: manager.isEmpty
|
|
176
|
+
);
|
|
177
|
+
let hasSecondaryAction = allowsActions && allowsSelection && manager.selectionBehavior === 'replace';
|
|
178
|
+
let hasAction = hasPrimaryAction || hasSecondaryAction;
|
|
179
|
+
let modality = useRef(null);
|
|
180
|
+
|
|
181
|
+
let longPressEnabled = hasAction && allowsSelection;
|
|
182
|
+
let longPressEnabledOnPressStart = useRef(false);
|
|
183
|
+
let hadPrimaryActionOnPressStart = useRef(false);
|
|
147
184
|
|
|
148
185
|
// By default, selection occurs on pointer down. This can be strange if selecting an
|
|
149
186
|
// item causes the UI to disappear immediately (e.g. menus).
|
|
@@ -156,7 +193,8 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
156
193
|
if (shouldSelectOnPressUp) {
|
|
157
194
|
itemPressProps.onPressStart = (e) => {
|
|
158
195
|
modality.current = e.pointerType;
|
|
159
|
-
|
|
196
|
+
longPressEnabledOnPressStart.current = longPressEnabled;
|
|
197
|
+
if (e.pointerType === 'keyboard' && (!hasAction || isSelectionKey())) {
|
|
160
198
|
onSelect(e);
|
|
161
199
|
}
|
|
162
200
|
};
|
|
@@ -165,12 +203,14 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
165
203
|
// Otherwise, have selection happen onPress (prevents listview row selection when clicking on interactable elements in the row)
|
|
166
204
|
if (!allowsDifferentPressOrigin) {
|
|
167
205
|
itemPressProps.onPress = (e) => {
|
|
168
|
-
if (e.pointerType !== '
|
|
169
|
-
|
|
170
|
-
|
|
206
|
+
if (hasPrimaryAction || (hasSecondaryAction && e.pointerType !== 'mouse')) {
|
|
207
|
+
if (e.pointerType === 'keyboard' && !isActionKey()) {
|
|
208
|
+
return;
|
|
209
|
+
}
|
|
171
210
|
|
|
172
|
-
if (hasPrimaryAction) {
|
|
173
211
|
onAction();
|
|
212
|
+
} else if (e.pointerType !== 'keyboard') {
|
|
213
|
+
onSelect(e);
|
|
174
214
|
}
|
|
175
215
|
};
|
|
176
216
|
} else {
|
|
@@ -183,19 +223,34 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
183
223
|
itemPressProps.onPress = hasPrimaryAction ? () => onAction() : null;
|
|
184
224
|
}
|
|
185
225
|
} else {
|
|
186
|
-
// On touch, it feels strange to select on touch down, so we special case this.
|
|
187
226
|
itemPressProps.onPressStart = (e) => {
|
|
188
227
|
modality.current = e.pointerType;
|
|
189
|
-
|
|
228
|
+
longPressEnabledOnPressStart.current = longPressEnabled;
|
|
229
|
+
hadPrimaryActionOnPressStart.current = hasPrimaryAction;
|
|
230
|
+
|
|
231
|
+
// Select on mouse down unless there is a primary action which will occur on mouse up.
|
|
232
|
+
// For keyboard, select on key down. If there is an action, the Space key selects on key down,
|
|
233
|
+
// and the Enter key performs onAction on key up.
|
|
234
|
+
if (
|
|
235
|
+
(e.pointerType === 'mouse' && !hasPrimaryAction) ||
|
|
236
|
+
(e.pointerType === 'keyboard' && (!onAction || isSelectionKey()))
|
|
237
|
+
) {
|
|
190
238
|
onSelect(e);
|
|
191
239
|
}
|
|
192
240
|
};
|
|
193
241
|
|
|
194
242
|
itemPressProps.onPress = (e) => {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
243
|
+
// Selection occurs on touch up. Primary actions always occur on pointer up.
|
|
244
|
+
// Both primary and secondary actions occur on Enter key up. The only exception
|
|
245
|
+
// is secondary actions, which occur on double click with a mouse.
|
|
246
|
+
if (
|
|
247
|
+
e.pointerType === 'touch' ||
|
|
248
|
+
e.pointerType === 'pen' ||
|
|
249
|
+
e.pointerType === 'virtual' ||
|
|
250
|
+
(e.pointerType === 'keyboard' && hasAction && isActionKey()) ||
|
|
251
|
+
(e.pointerType === 'mouse' && hadPrimaryActionOnPressStart.current)
|
|
252
|
+
) {
|
|
253
|
+
if (hasAction) {
|
|
199
254
|
onAction();
|
|
200
255
|
} else {
|
|
201
256
|
onSelect(e);
|
|
@@ -223,9 +278,8 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
223
278
|
// Long pressing an item with touch when selectionBehavior = 'replace' switches the selection behavior
|
|
224
279
|
// to 'toggle'. This changes the single tap behavior from performing an action (i.e. navigating) to
|
|
225
280
|
// selecting, and may toggle the appearance of a UI affordance like checkboxes on each item.
|
|
226
|
-
// TODO: what about when drag and drop is also enabled??
|
|
227
281
|
let {longPressProps} = useLongPress({
|
|
228
|
-
isDisabled: !
|
|
282
|
+
isDisabled: !longPressEnabled,
|
|
229
283
|
onLongPress(e) {
|
|
230
284
|
if (e.pointerType === 'touch') {
|
|
231
285
|
onSelect(e);
|
|
@@ -234,20 +288,35 @@ export function useSelectableItem(options: SelectableItemOptions): SelectableIte
|
|
|
234
288
|
}
|
|
235
289
|
});
|
|
236
290
|
|
|
237
|
-
//
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
291
|
+
// Prevent native drag and drop on long press if we also select on long press.
|
|
292
|
+
// Once the user is in selection mode, they can long press again to drag.
|
|
293
|
+
let onDragStart = e => {
|
|
294
|
+
if (modality.current === 'touch' && longPressEnabledOnPressStart.current) {
|
|
295
|
+
e.preventDefault();
|
|
241
296
|
}
|
|
242
|
-
}
|
|
297
|
+
};
|
|
243
298
|
|
|
244
299
|
return {
|
|
245
300
|
itemProps: mergeProps(
|
|
246
301
|
itemProps,
|
|
247
302
|
allowsSelection || hasPrimaryAction ? pressProps : {},
|
|
248
|
-
|
|
249
|
-
{
|
|
303
|
+
longPressEnabled ? longPressProps : {},
|
|
304
|
+
{onDoubleClick, onDragStart}
|
|
250
305
|
),
|
|
251
|
-
isPressed
|
|
306
|
+
isPressed,
|
|
307
|
+
isSelected: manager.isSelected(key),
|
|
308
|
+
isDisabled,
|
|
309
|
+
allowsSelection,
|
|
310
|
+
hasAction
|
|
252
311
|
};
|
|
253
312
|
}
|
|
313
|
+
|
|
314
|
+
function isActionKey() {
|
|
315
|
+
let event = window.event as KeyboardEvent;
|
|
316
|
+
return event?.key === 'Enter';
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
function isSelectionKey() {
|
|
320
|
+
let event = window.event as KeyboardEvent;
|
|
321
|
+
return event?.key === ' ' || event?.code === 'Space';
|
|
322
|
+
}
|