-
Notifications
You must be signed in to change notification settings - Fork 46.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[react-interaction] Refactor a11y components more (#16866)
- Loading branch information
Showing
9 changed files
with
220 additions
and
180 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
packages/react-interactions/accessibility/focus-control.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* 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 | ||
*/ | ||
|
||
'use strict'; | ||
|
||
module.exports = require('./src/FocusControl'); |
139 changes: 139 additions & 0 deletions
139
packages/react-interactions/accessibility/src/FocusControl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
/** | ||
* 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'; | ||
|
||
function getTabbableNodes(scope: ReactScopeMethods) { | ||
const tabbableNodes = scope.getScopedNodes(); | ||
if (tabbableNodes === null || tabbableNodes.length === 0) { | ||
return [null, null, null, 0, null]; | ||
} | ||
const firstTabbableElem = tabbableNodes[0]; | ||
const lastTabbableElem = tabbableNodes[tabbableNodes.length - 1]; | ||
const currentIndex = tabbableNodes.indexOf(document.activeElement); | ||
let focusedElement = null; | ||
if (currentIndex !== -1) { | ||
focusedElement = tabbableNodes[currentIndex]; | ||
} | ||
return [ | ||
tabbableNodes, | ||
firstTabbableElem, | ||
lastTabbableElem, | ||
currentIndex, | ||
focusedElement, | ||
]; | ||
} | ||
|
||
export function focusFirst(scope: ReactScopeMethods): void { | ||
const [, firstTabbableElem] = getTabbableNodes(scope); | ||
focusElem(firstTabbableElem); | ||
} | ||
|
||
function focusElem(elem: null | HTMLElement): void { | ||
if (elem !== null) { | ||
elem.focus(); | ||
} | ||
} | ||
|
||
export function focusNext( | ||
scope: ReactScopeMethods, | ||
event?: KeyboardEvent, | ||
contain?: boolean, | ||
): void { | ||
const [ | ||
tabbableNodes, | ||
firstTabbableElem, | ||
lastTabbableElem, | ||
currentIndex, | ||
focusedElement, | ||
] = getTabbableNodes(scope); | ||
|
||
if (focusedElement === null) { | ||
if (event) { | ||
event.continuePropagation(); | ||
} | ||
} else if (focusedElement === lastTabbableElem) { | ||
if (contain) { | ||
focusElem(firstTabbableElem); | ||
if (event) { | ||
event.preventDefault(); | ||
} | ||
} else if (event) { | ||
event.continuePropagation(); | ||
} | ||
} else { | ||
focusElem((tabbableNodes: any)[currentIndex + 1]); | ||
if (event) { | ||
event.preventDefault(); | ||
} | ||
} | ||
} | ||
|
||
export function focusPrevious( | ||
scope: ReactScopeMethods, | ||
event?: KeyboardEvent, | ||
contain?: boolean, | ||
): void { | ||
const [ | ||
tabbableNodes, | ||
firstTabbableElem, | ||
lastTabbableElem, | ||
currentIndex, | ||
focusedElement, | ||
] = getTabbableNodes(scope); | ||
|
||
if (focusedElement === null) { | ||
if (event) { | ||
event.continuePropagation(); | ||
} | ||
} else if (focusedElement === firstTabbableElem) { | ||
if (contain) { | ||
focusElem(lastTabbableElem); | ||
if (event) { | ||
event.preventDefault(); | ||
} | ||
} else if (event) { | ||
event.continuePropagation(); | ||
} | ||
} else { | ||
focusElem((tabbableNodes: any)[currentIndex - 1]); | ||
if (event) { | ||
event.preventDefault(); | ||
} | ||
} | ||
} | ||
|
||
export function getNextController( | ||
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 getPreviousController( | ||
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]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.