Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Accessibility improvements: Button elements & a rel attributes #43

Merged
merged 6 commits into from
Dec 12, 2017

Conversation

richardwestenra
Copy link
Contributor

@richardwestenra richardwestenra commented Dec 10, 2017

Closes #45

Description

  1. Change the default close button & icon elements to use <button> elements, either instead of a div, or as an added wrapper around the <i> icon element.
    This is mainly to make these elements focusable, tabbable and clickable with a keyboard. Among other things, this change will improve accessibility for visually-impaired screenreader users, as well as users with reduced motor skills who might prefer to use a keyboard instead of a mouse.
  2. Add 'rel' attribute param to the link option. Allowing developers to add the rel attribute will enable them to set rel="noopener noreferrer" on external links, especially those which open in a new tab. This helps mitigate a security vulnerability and potentially improves performance too.
  3. Improve contrast of button foreground/background colours, to help meet WCAG text contrast guidelines.

Notes

  1. I've tried to keep the styling as close as possible to the existing styling. I've retained the default focus outline (which is very important for keyboard a11y). I would've liked to add extra hover/focus/active styles for the buttons but I'm not sure how to do that with the existing inline style setup, plus that's probably best kept for another PR.
  2. I've made the rel attribute a string prop so developers can set whatever rel content they want, in case they want to set something else like rel="external" or rel="home" or whatever.

This is mainly to make these elements focusable, tabbable and clickable with a keyboard. Among other things, this change will improve accessibility for visually-impaired screenreader users, as well as users with reduced motor skills who might prefer to use a keyboard instead of a mouse.
Allowing developers to add the rel attribute will enable them to set rel="noopener noreferrer" on external links, especially those which open in a new tab. This helps mitigate a security vulnerability and potentially improves performance too.

More info:
- https://mathiasbynens.github.io/rel-noopener/
- https://www.jitbit.com/alexblog/256-targetblank---the-most-underestimated-vulnerability-ever/
- https://jakearchibald.com/2016/performance-benefits-of-rel-noopener/

Note that I've made this a string prop so developers can set whatever rel content they want, in case they want to set something else like rel="external" or rel="home" or whatever.
@nemobot nemobot added the WIP label Dec 10, 2017
@FrancescoCioria
Copy link
Contributor

Hi @richardwestenra and thanks for this great PR!

The code looks 👍
I'll try it locally asap

@richardwestenra
Copy link
Contributor Author

Thanks @FrancescoCioria! Note that I just noticed and fixed a missing comma. Hopefully that'll fix the broken build?

@FrancescoCioria
Copy link
Contributor

Hopefully that'll fix the broken build?

that was definitely a mistake, but the CI is failing for other reasons and I don't think it's because of your PR... I'll look into it and see if I can fix it

@@ -13,7 +13,8 @@ export type Props = {
link?: {
msg?: string,
url: string,
target?: '_blank' | '_self' | '_parent' | '_top' | 'framename'
target?: '_blank' | '_self' | '_parent' | '_top' | 'framename',
rel: string,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be optional, you can mark it as optional by adding the ? before the colon

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@FrancescoCioria good catch, thanks! I've just fixed it.

@FrancescoCioria
Copy link
Contributor

I tested and it looks fine 🎉 💅

@FrancescoCioria FrancescoCioria merged commit 18095b8 into buildo:master Dec 12, 2017
@nemobot
Copy link

nemobot commented Dec 12, 2017

@nemobot nemobot removed the WIP label Dec 12, 2017
@richardwestenra richardwestenra deleted the feature/a11y branch December 12, 2017 17:03
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Accessibility improvements: Button elements & a rel attributes
3 participants