Skip to content

Commit ed49912

Browse files
authored
feat: Allow disable left right buttons (#504)
1 parent b3f77c7 commit ed49912

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

index.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface TabsProps
88
direction?: 'rtl' | 'ltr' | undefined;
99
disabledTabClassName?: string | undefined;
1010
disableUpDownKeys?: boolean | undefined;
11+
disableLeftRightKeys?: boolean | undefined;
1112
domRef?: ((node?: HTMLElement) => void) | undefined;
1213
environment?: Window | undefined;
1314
focusTabOnClick?: boolean | undefined;

src/components/Tabs.js

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const propTypes = {
2222
direction: PropTypes.oneOf(['rtl', 'ltr']),
2323
disabledTabClassName: PropTypes.string,
2424
disableUpDownKeys: PropTypes.bool,
25+
disableLeftRightKeys: PropTypes.bool,
2526
domRef: PropTypes.func,
2627
environment: PropTypes.object,
2728
focusTabOnClick: PropTypes.bool,
@@ -39,6 +40,7 @@ const defaultProps = {
3940
defaultIndex: null,
4041
environment: null,
4142
disableUpDownKeys: false,
43+
disableLeftRightKeys: false,
4244
};
4345

4446
const getModeFromProps = (props) => {

src/components/UncontrolledTabs.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ const propTypes = {
5757
]),
5858
disabledTabClassName: PropTypes.string,
5959
disableUpDownKeys: PropTypes.bool,
60+
disableLeftRightKeys: PropTypes.bool,
6061
domRef: PropTypes.func,
6162
focus: PropTypes.bool,
6263
forceRenderTabPanel: PropTypes.bool,
@@ -256,7 +257,7 @@ const UncontrolledTabs = (props) => {
256257
}
257258

258259
function handleKeyDown(e) {
259-
const { direction, disableUpDownKeys } = props;
260+
const { direction, disableUpDownKeys, disableLeftRightKeys } = props;
260261
if (isTabFromContainer(e.target)) {
261262
let { selectedIndex: index } = props;
262263
let preventDefault = false;
@@ -276,8 +277,8 @@ const UncontrolledTabs = (props) => {
276277
// keyCode is deprecated and only used here for IE
277278

278279
if (
279-
e.code === 'ArrowLeft' ||
280-
e.keyCode === 37 /* arrow left */ ||
280+
(!disableLeftRightKeys &&
281+
(e.keyCode === 37 || e.code === 'ArrowLeft')) /* arrow left */ ||
281282
(!disableUpDownKeys &&
282283
(e.keyCode === 38 || e.code === 'ArrowUp')) /* arrow up */
283284
) {
@@ -290,8 +291,8 @@ const UncontrolledTabs = (props) => {
290291
preventDefault = true;
291292
useSelectedIndex = true;
292293
} else if (
293-
e.code === 'ArrowRight' ||
294-
e.keyCode === 39 /* arrow right */ ||
294+
(!disableLeftRightKeys &&
295+
(e.keyCode === 39 || e.code === 'ArrowRight')) /* arrow right */ ||
295296
(!disableUpDownKeys &&
296297
(e.keyCode === 40 || e.code === 'ArrowDown')) /* arrow down */
297298
) {
@@ -380,6 +381,7 @@ const UncontrolledTabs = (props) => {
380381
selectedTabPanelClassName, // unused
381382
environment, // unused
382383
disableUpDownKeys, // unused
384+
disableLeftRightKeys, // unused
383385
...attributes
384386
} = props;
385387
return (

src/components/__tests__/Tabs-test.js

+21
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,27 @@ describe('<Tabs />', () => {
608608
assertTabSelected(1);
609609
});
610610

611+
test('should not change tabs when arrow left/right is pressed and disableLeftRightKeys is passed', async () => {
612+
render(
613+
createTabs({
614+
disableLeftRightKeys: true,
615+
}),
616+
);
617+
const firstTab = screen.getByTestId('tab1');
618+
619+
await userEvent.tab();
620+
expect(firstTab).toHaveFocus();
621+
assertTabSelected(1);
622+
623+
await userEvent.type(firstTab, '[ArrowLeft]');
624+
expect(firstTab).toHaveFocus();
625+
assertTabSelected(1);
626+
627+
await userEvent.type(firstTab, '[ArrowRight]');
628+
expect(firstTab).toHaveFocus();
629+
assertTabSelected(1);
630+
});
631+
611632
test('should render first tab once tabs are available', () => {
612633
const { rerender } = render(<Tabs></Tabs>);
613634

0 commit comments

Comments
 (0)