-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessibility issue: unknown state of toggle buttons in web page and android app #3590
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Unfortunatelly there are more issues with the web app. |
Come on, please jitsi devs, take more care of such accessibility issues, resulting in a more inclusive application ! |
I added some more info to this related issue. |
For the webapp this is now mostly resolved: #5432 |
This issue still exists, tested with Chrome/Firefox on both Mac and PC using NVDA and VoiceOver screen readers. Issue is that since UI controls are custom DIVs and not HTML elements, and the aria-label doesn't dynamically change, a screen reader user cannot tell the current state of mute/video and other toggles. A few suggestions:
For more info on button implementation and associated ARIA, see: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/button_role |
@ssawczyn It doesn't look to have been deployed, but is fixed in local development builds of the master branch. The above PR does all of those things (except the visual focus indicator) |
@MarcoZehe can you test on beta.meet.jit.si, please? And report if more changes are needed, thanks. |
@damencho This looks much better already. There are still a few places in the More Options menu etc. where items such as the Shortcuts or some other entries are only clickable divs instead of buttons or menu items etc., but I was told by @t3chguy that he might have a follow-up pull request for those. One other question: Does stuff from this web client also go into the iOS app, or is that a completely separate codebase where issues should be filed and fixes provided separately? |
@MarcoZehe #5681 is for the More Options menu |
That is the same codebase for web, android and ios. |
@MarcoZehe @t3chguy Thanks for doing this. |
Indeed the codebase is the same but the accessibility hooks are different for react-native than for react-web and my PR focused only on Web as it is the only place I have accessibility experience at this time. |
The docs for React Native accessibility properties are here. |
Thanks! Good to know, if I find myself with an abundance of spare time to learn react native development flows and learn ATs on mobile (android, no access to ios dev) then I will update here but it does not seem likely at this time, unfortunately. |
@saghul maybe we reference to this issue instead of the meta issue without actual content? Otherwise, shall I delete this with reference? |
This PR will fix the atlaskit toggle components used in the web interface #8423 |
Even when the state is reported, I can't quite tell, using a screen reader, if I'm muted or unmuted, or if my Camera is off. For the various buttons, could we have states like, hand raised, hand lowered, like Zoom has it. Their accessibility practices are a very good basis to get an idea of what to do for these types of controls. |
Judging by the comments, I believe this should have been addressed although I can't confirm. @t3chguy do you know if the dynamic aria-label stuff ever made it into a release? For example, the aria-label on mute should say "mute" when the state is unmuted but then should toggle to "unmute" when the state is muted. I know this sounds backward, but general expectation is for the control to say what it will do if activated. Let me know if this is unclear, I know it may seem a bit confusing. |
I am using jitsi-meet-nightly and I think the aria-label has never been a thing. Instead aria-pressed is used to communicate the button toggle state. However android app has a different experience. On android it is reported as being selected. It's communicated as selected property on the corresponding AccessibilityNodeInfo or AccessibilityEvent class. The issue is that not all screen readers on android do report this property. Thus for android it would be better to tweak aria label to unmute the microphone when it's muted and tweak aria-label to mute the microphone when it's unmuted. Greetings Peter |
I use screenreader NVDA and last firefox browser.
I can read All elements in the pages of jitsimeet exclude state of toggle buttons. For example^
NVDA speeks me^ toggle mute video, but it not speeks state muted or not.
My suggestion^ add to accessibility label future state after pressing.
For example^ toggle mute video, toggle unmute video.
it needs to make also in android app.
The text was updated successfully, but these errors were encountered: