Skip to content

Commit

Permalink
[PR feedback] Fix focus fighting bug + add E2E regression test for be…
Browse files Browse the repository at this point in the history
…havior
  • Loading branch information
cee-chen committed Jan 5, 2024
1 parent 41ed92e commit 8a2868d
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ describe('EuiDataGridHeaderCellWrapper', () => {
data-gridcell-row-index="-1"
data-gridcell-visible-row-index="-1"
data-test-subj="dataGridHeaderCell-someColumn"
onFocus={[Function]}
role="columnheader"
style={Object {}}
tabIndex={0}
Expand Down Expand Up @@ -100,6 +101,7 @@ describe('EuiDataGridHeaderCellWrapper', () => {
data-gridcell-row-index="-1"
data-gridcell-visible-row-index="-1"
data-test-subj="dataGridHeaderCell-someColumn"
onFocus={[Function]}
role="columnheader"
style={
Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import classnames from 'classnames';
import React, {
FunctionComponent,
FocusEventHandler,
useContext,
useEffect,
useRef,
Expand Down Expand Up @@ -64,12 +65,23 @@ export const EuiDataGridHeaderCellWrapper: FunctionComponent<
}
}, [isFocused]);

// For cell headers with actions, auto-focus into the button instead of the cell wrapper div
// The button text is significantly more useful to screen readers (e.g. contains sort order & hints)
const onFocus: FocusEventHandler = useCallback(
(e) => {
if (hasActionsPopover && e.target === headerRef.current) {
focusActionsButton?.();
}
},
[hasActionsPopover, focusActionsButton]
);

return (
<div
role="columnheader"
ref={headerRef}
tabIndex={isFocused && !isActionsButtonFocused ? 0 : -1}
onFocus={hasActionsPopover ? focusActionsButton : undefined}
onFocus={onFocus}
className={classes}
data-test-subj={`dataGridHeaderCell-${id}`}
data-gridcell-column-id={id}
Expand Down
27 changes: 22 additions & 5 deletions src/components/datagrid/data_grid.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,29 +139,24 @@ describe('EuiDataGrid', () => {
{
id: 'no_interactive_expandable',
display: '0 interactive',
actions: false,
},
{
id: 'one_interactive',
display: '1 interactive',
isExpandable: false,
actions: false,
},
{
id: 'one_interactive_expandable',
display: '1 interactive',
actions: false,
},
{
id: 'two_interactives',
display: '2 interactives',
isExpandable: false,
actions: false,
},
{
id: 'two_interactives_expandable',
display: '2 interactives',
actions: false,
},
];
const columnVisibility = {
Expand Down Expand Up @@ -436,6 +431,28 @@ describe('EuiDataGrid', () => {
.should('have.attr', 'data-gridcell-column-index', '5')
.should('have.attr', 'data-gridcell-row-index', '0');
});

it('column header cells', () => {
cy.realMount(<EuiDataGrid {...focusManagementBaseProps} />);
cy.repeatRealPress('Tab', 5);
cy.realPress('{rightarrow}');
cy.focused()
.parent()
.should('have.attr', 'data-gridcell-column-index', '1')
.should('have.attr', 'data-gridcell-row-index', '-1');

cy.realPress('Enter');
cy.get(
'[data-test-subj="dataGridHeaderCellActionGroup-no_interactive_expandable"]'
).should('be.visible');

cy.realPress('Tab');
cy.focused().should('have.text', 'Hide column');
cy.realPress('Tab');
cy.focused().should('have.text', 'Move left');
cy.realPress('Tab');
cy.focused().should('have.text', 'Move right');
});
});
});

Expand Down

0 comments on commit 8a2868d

Please sign in to comment.