-
Notifications
You must be signed in to change notification settings - Fork 576
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
fix(ArtistListItem): add accessibility props to the follow button #10703
base: main
Are you sure you want to change the base?
Conversation
fix accessibility issues of the follow button inside artist list card
Hi @yinuoyang01, first thanks for the contribution! Favor to ask, please don't delete the PR template, we rely on it for some automation on our end 🤖 I'll take the freedom to do it, but please remember to use it next time 😉 |
<FollowButton haptic isFollowed={!!is_followed} onPress={handleFollowArtist} /> | ||
<FollowButton haptic isFollowed={!!is_followed} onPress={handleFollowArtist} | ||
accessibilityLabel={is_followed ? "Unfollow " + name : "Follow " + name} | ||
accessibilityRole="button" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should use role
instead of accessibilityRole
and for the label the RN community is moving towards aria props, so let's use aria-label
instead 👍
accessibilityLabel={is_followed ? "Unfollow " + name : "Follow " + name} | ||
accessibilityRole="button" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree with @araujobarret, lets change that to what he suggested and ready to merge! Thanks for the contribution 😄
accessibilityLabel={is_followed ? "Unfollow " + name : "Follow " + name} | |
accessibilityRole="button" /> | |
aria-label={is_followed ? "Unfollow " + name : "Follow " + name} | |
role="button" | |
/> |
Description
fix accessibility issues of the follow button inside artist list card
PR Checklist
To the reviewers 👀
Changelog updates
Changelog updates
Cross-platform user-facing changes
iOS user-facing changes
Android user-facing changes
Dev changes
Need help with something? Have a look at our docs, or get in touch with us.