Exploring the challenges in creating an accessible sortable list (drag-and-drop)

Challenges in Creating an Accessible Sortable List (Drag-and-Drop)
-
Testing with Screen Reader Users: Screen reader users were unable to use arrow keys to move items as intended in drag-and-drop functionality.
-
NVDA Simulating Mouse Events: NVDA screen reader users triggering drag-and-drop actions with keyboard keys caused confusion in determining mouse vs. keyboard events.
-
Announcement Lag: Rapid movements in drag-and-drop caused announcements to lag or announce outdated information, leading to a debounce speed of 100ms for optimal performance.
-
Keyboard Accessibility: Drag-and-drop actions were not inherently keyboard accessible, prompting the addition of a dialog with instructions for keyboard users.
-
Voice Control Challenges: Voice control worked well with non-scrollable lists but became cumbersome with scrollable lists, especially for moving items across long distances.
-
Supporting Multiple Interaction Modes: Introducing a move dialog enabled a more user-friendly experience for both voice control and non-voice control users, enhancing confidence in item manipulations.
The challenges outlined above showcase the complexity of ensuring accessibility in drag-and-drop functionalities, highlighting the importance of thorough testing and thoughtful design considerations for a diverse user base.