Skip to content
Advertisement

Accordion component keyboard commands

I have an accordion component which is working correctly using the ‘tab’ to navigate through the controls, and on ‘enter’ and ‘spacebar’ the accordion expands. I am trying to figure out a way to navigate to the next accordion using the ‘up’ and ‘down’ arrow keys. I am familiar with Javascript but I have not been able to achieve this with my existing code. Any help I can get is greatly appreciated.

Here’s a CodePen to my accordion component. https://codepen.io/ozman2182/pen/vYgvGOd

JavaScript

Advertisement

Answer

In the example at the end of this answer I have added the code required to make the arrow keys cycle up and down through the list (and loop around).

I have also added Home and End keys to go to the start and end of the list (as that is expected behaviour).

In summary we:

  • grab all the buttons with .querySelectorAll('.unr-accordion--heading>button');
  • add an event listener for “keydown”
  • see if the keyCode is 38 (up) or 40 (down), if it is we apply a “direction” of -1 (to go up one item in our list of buttons) or +1 (to go down).
  • if the keyCode is 36 (“Home”) – we set a direction of -999 so we can check it later
  • if the keyCode is 35 (“End”) – we set a direction of 999 so we can check it later
  • if a direction is set (up or down arrow was pressed or home / end) we then loop through all the buttons.
  • if the button in the current stage of the loop equals document.activeElement (the currently focused item) then we know we are both in the accordion and on a button and the arrow keys should function.
  • We then check if the direction is up and we are focused on the first item in the buttons list (direction == -1 && x == 0) or if the “direction” is -999 (the home key), so we can loop to the bottom of the list of buttons and focus that one. We exit the loop if so with break;
  • If not we then check if the direction is down and we are focused on the last item in the buttons list (direction == 1 && x == max) or if the “direction” is +999 (the end key), so we can loop to the top of the list of buttons and focus that one. We exit the loop if so with break;
  • finally if neither of the above are true we just move focus by the direction (-1 for up, +1 for down) and then exit the loop.

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement