mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
128 lines
3.0 KiB
JavaScript
128 lines
3.0 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import type {ReactScopeMethods} from 'shared/ReactTypes';
|
|
import type {KeyboardEvent} from 'react-interactions/events/keyboard';
|
|
|
|
import getTabbableNodes from './shared/getTabbableNodes';
|
|
|
|
export function focusFirst(
|
|
scopeQuery: (type: string | Object, props: Object) => boolean,
|
|
scope: ReactScopeMethods,
|
|
): void {
|
|
const firstNode = scope.queryFirstNode(scopeQuery);
|
|
if (firstNode) {
|
|
focusElem(firstNode);
|
|
}
|
|
}
|
|
|
|
function focusElem(elem: null | HTMLElement): void {
|
|
if (elem !== null) {
|
|
elem.focus();
|
|
}
|
|
}
|
|
|
|
export function focusNext(
|
|
scopeQuery: (type: string | Object, props: Object) => boolean,
|
|
scope: ReactScopeMethods,
|
|
event?: KeyboardEvent,
|
|
contain?: boolean,
|
|
): void {
|
|
const [
|
|
tabbableNodes,
|
|
firstTabbableElem,
|
|
lastTabbableElem,
|
|
currentIndex,
|
|
focusedElement,
|
|
] = getTabbableNodes(scopeQuery, scope);
|
|
|
|
if (focusedElement === null) {
|
|
if (event) {
|
|
event.continuePropagation();
|
|
}
|
|
} else if (focusedElement === lastTabbableElem) {
|
|
if (contain === true) {
|
|
focusElem(firstTabbableElem);
|
|
if (event) {
|
|
event.preventDefault();
|
|
}
|
|
} else if (event) {
|
|
event.continuePropagation();
|
|
}
|
|
} else if (tabbableNodes) {
|
|
focusElem(tabbableNodes[currentIndex + 1]);
|
|
if (event) {
|
|
event.preventDefault();
|
|
}
|
|
}
|
|
}
|
|
|
|
export function focusPrevious(
|
|
scopeQuery: (type: string | Object, props: Object) => boolean,
|
|
scope: ReactScopeMethods,
|
|
event?: KeyboardEvent,
|
|
contain?: boolean,
|
|
): void {
|
|
const [
|
|
tabbableNodes,
|
|
firstTabbableElem,
|
|
lastTabbableElem,
|
|
currentIndex,
|
|
focusedElement,
|
|
] = getTabbableNodes(scopeQuery, scope);
|
|
|
|
if (focusedElement === null) {
|
|
if (event) {
|
|
event.continuePropagation();
|
|
}
|
|
} else if (focusedElement === firstTabbableElem) {
|
|
if (contain === true) {
|
|
focusElem(lastTabbableElem);
|
|
if (event) {
|
|
event.preventDefault();
|
|
}
|
|
} else if (event) {
|
|
event.continuePropagation();
|
|
}
|
|
} else if (tabbableNodes) {
|
|
focusElem(tabbableNodes[currentIndex - 1]);
|
|
if (event) {
|
|
event.preventDefault();
|
|
}
|
|
}
|
|
}
|
|
|
|
export function getNextScope(
|
|
scope: ReactScopeMethods,
|
|
): null | ReactScopeMethods {
|
|
const allScopes = scope.getChildrenFromRoot();
|
|
if (allScopes === null) {
|
|
return null;
|
|
}
|
|
const currentScopeIndex = allScopes.indexOf(scope);
|
|
if (currentScopeIndex === -1 || currentScopeIndex === allScopes.length - 1) {
|
|
return null;
|
|
}
|
|
return allScopes[currentScopeIndex + 1];
|
|
}
|
|
|
|
export function getPreviousScope(
|
|
scope: ReactScopeMethods,
|
|
): null | ReactScopeMethods {
|
|
const allScopes = scope.getChildrenFromRoot();
|
|
if (allScopes === null) {
|
|
return null;
|
|
}
|
|
const currentScopeIndex = allScopes.indexOf(scope);
|
|
if (currentScopeIndex <= 0) {
|
|
return null;
|
|
}
|
|
return allScopes[currentScopeIndex - 1];
|
|
}
|