-
Notifications
You must be signed in to change notification settings - Fork 47.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[react-ui] FocusGrid -> ReactFocusTable + tweaks and fixes (#16806)
- Loading branch information
Showing
6 changed files
with
482 additions
and
283 deletions.
There are no files selected for viewing
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 was deleted.
Oops, something went wrong.
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,220 @@ | ||
/** | ||
* 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-ui/events/keyboard'; | ||
|
||
import React from 'react'; | ||
import {tabFocusableImpl} from './TabbableScope'; | ||
import {useKeyboard} from 'react-ui/events/keyboard'; | ||
|
||
type FocusCellProps = { | ||
children?: React.Node, | ||
}; | ||
|
||
type FocusRowProps = { | ||
children: React.Node, | ||
}; | ||
|
||
type FocusTableProps = {| | ||
children: React.Node, | ||
id?: string, | ||
onKeyboardOut?: ( | ||
direction: 'left' | 'right' | 'up' | 'down', | ||
focusTableByID: (id: string) => void, | ||
) => void, | ||
|}; | ||
|
||
const {useRef} = React; | ||
|
||
export function focusFirstCellOnTable(table: ReactScopeMethods): void { | ||
const rows = table.getChildren(); | ||
if (rows !== null) { | ||
const firstRow = rows[0]; | ||
if (firstRow !== null) { | ||
const cells = firstRow.getChildren(); | ||
if (cells !== null) { | ||
const firstCell = cells[0]; | ||
if (firstCell !== null) { | ||
const tabbableNodes = firstCell.getScopedNodes(); | ||
if (tabbableNodes !== null) { | ||
const firstElem = tabbableNodes[0]; | ||
if (firstElem !== null) { | ||
firstElem.focus(); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
function focusCell(cell: ReactScopeMethods): void { | ||
const tabbableNodes = cell.getScopedNodes(); | ||
if (tabbableNodes !== null && tabbableNodes.length > 0) { | ||
tabbableNodes[0].focus(); | ||
} | ||
} | ||
|
||
function focusCellByRowIndex(row: ReactScopeMethods, rowIndex: number): void { | ||
const cells = row.getChildren(); | ||
if (cells !== null) { | ||
const cell = cells[rowIndex]; | ||
if (cell) { | ||
focusCell(cell); | ||
} | ||
} | ||
} | ||
|
||
function getRowCells(currentCell: ReactScopeMethods) { | ||
const row = currentCell.getParent(); | ||
if (row !== null && row.getProps().type === 'row') { | ||
const cells = row.getChildren(); | ||
if (cells !== null) { | ||
const rowIndex = cells.indexOf(currentCell); | ||
return [cells, rowIndex]; | ||
} | ||
} | ||
return [null, 0]; | ||
} | ||
|
||
function getRows(currentCell: ReactScopeMethods) { | ||
const row = currentCell.getParent(); | ||
if (row !== null && row.getProps().type === 'row') { | ||
const table = row.getParent(); | ||
if (table !== null && table.getProps().type === 'table') { | ||
const rows = table.getChildren(); | ||
if (rows !== null) { | ||
const columnIndex = rows.indexOf(row); | ||
return [rows, columnIndex]; | ||
} | ||
} | ||
} | ||
return [null, 0]; | ||
} | ||
|
||
function triggerNavigateOut( | ||
currentCell: ReactScopeMethods, | ||
direction: 'left' | 'right' | 'up' | 'down', | ||
): void { | ||
const row = currentCell.getParent(); | ||
if (row !== null && row.getProps().type === 'row') { | ||
const table = row.getParent(); | ||
if (table !== null) { | ||
const props = table.getProps(); | ||
const onKeyboardOut = props.onKeyboardOut; | ||
if (props.type === 'table' && typeof onKeyboardOut === 'function') { | ||
const focusTableByID = (id: string) => { | ||
const topLevelTables = table.getChildrenFromRoot(); | ||
if (topLevelTables !== null) { | ||
for (let i = 0; i < topLevelTables.length; i++) { | ||
const topLevelTable = topLevelTables[i]; | ||
if (topLevelTable.getProps().id === id) { | ||
focusFirstCellOnTable(topLevelTable); | ||
return; | ||
} | ||
} | ||
} | ||
}; | ||
onKeyboardOut(direction, focusTableByID); | ||
} | ||
} | ||
} | ||
} | ||
|
||
export function createFocusTable(): Array<React.Component> { | ||
const TableScope = React.unstable_createScope(tabFocusableImpl); | ||
|
||
function Table({children, onKeyboardOut, id}): FocusTableProps { | ||
return ( | ||
<TableScope type="table" onKeyboardOut={onKeyboardOut} id={id}> | ||
{children} | ||
</TableScope> | ||
); | ||
} | ||
|
||
function Row({children}): FocusRowProps { | ||
return <TableScope type="row">{children}</TableScope>; | ||
} | ||
|
||
function Cell({children}): FocusCellProps { | ||
const scopeRef = useRef(null); | ||
const keyboard = useKeyboard({ | ||
onKeyDown(event: KeyboardEvent): boolean { | ||
const currentCell = scopeRef.current; | ||
switch (event.key) { | ||
case 'UpArrow': { | ||
const [cells, rowIndex] = getRowCells(currentCell); | ||
if (cells !== null) { | ||
const [columns, columnIndex] = getRows(currentCell); | ||
if (columns !== null) { | ||
if (columnIndex > 0) { | ||
const column = columns[columnIndex - 1]; | ||
focusCellByRowIndex(column, rowIndex); | ||
} else if (columnIndex === 0) { | ||
triggerNavigateOut(currentCell, 'up'); | ||
} | ||
} | ||
} | ||
return false; | ||
} | ||
case 'DownArrow': { | ||
const [cells, rowIndex] = getRowCells(currentCell); | ||
if (cells !== null) { | ||
const [columns, columnIndex] = getRows(currentCell); | ||
if (columns !== null) { | ||
if (columnIndex !== -1) { | ||
if (columnIndex === columns.length - 1) { | ||
triggerNavigateOut(currentCell, 'down'); | ||
} else { | ||
const column = columns[columnIndex + 1]; | ||
focusCellByRowIndex(column, rowIndex); | ||
} | ||
} | ||
} | ||
} | ||
return false; | ||
} | ||
case 'LeftArrow': { | ||
const [cells, rowIndex] = getRowCells(currentCell); | ||
if (cells !== null) { | ||
if (rowIndex > 0) { | ||
focusCell(cells[rowIndex - 1]); | ||
} else if (rowIndex === 0) { | ||
triggerNavigateOut(currentCell, 'left'); | ||
} | ||
} | ||
return false; | ||
} | ||
case 'RightArrow': { | ||
const [cells, rowIndex] = getRowCells(currentCell); | ||
if (cells !== null) { | ||
if (rowIndex !== -1) { | ||
if (rowIndex === cells.length - 1) { | ||
triggerNavigateOut(currentCell, 'right'); | ||
} else { | ||
focusCell(cells[rowIndex + 1]); | ||
} | ||
} | ||
} | ||
return false; | ||
} | ||
} | ||
return true; | ||
}, | ||
}); | ||
return ( | ||
<TableScope listeners={keyboard} ref={scopeRef} type="cell"> | ||
{children} | ||
</TableScope> | ||
); | ||
} | ||
|
||
return [Table, Row, Cell]; | ||
} |
Oops, something went wrong.