Skip to content
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

Rewrite Button to Typescript #2984

Merged
merged 12 commits into from Aug 22, 2021
Merged

Rewrite Button to Typescript #2984

merged 12 commits into from Aug 22, 2021

Conversation

davwheat
Copy link
Member

Progresses #3533, #3364

Changes proposed in this pull request

Button:

  • Prefer aria-label over title
  • Don't duplicate button content to title attribute
    • This has no effect on a11y. Content of nodes is preferred over title attributes by screen readers.
  • Warn in debug mode if button has no accessible content
  • Use modern JS/TS syntax (||=, spread, etc)

Others:

  • Add debug warning helper: fires console.warn, but only when the forum is in debug mode. Can help to inform extension developers of possible issues with their JS code.
  • Update TextEditorButton to work with changes that prefer aria-label

Reviewers should focus on

Is anything else affected by the preferring of aria-label as opposed to title? Most likely components that deeply interact with Button and those which extend it.

Confirmed

  • Frontend changes: tested on a local Flarum installation.
  • Backend changes: tests are green (run composer test).

Required changes

  • Related documentation PR: (Remove if irrelevant)
  • Related core extension PRs: (Remove if irrelevant)

@davwheat davwheat added type/cleanup type/accessibility Issues relating to accessibility (keyboard navigation, screenreaders, text contrast, etc.) labels Jul 21, 2021
@davwheat davwheat added this to the 1.1 milestone Jul 21, 2021
@davwheat davwheat self-assigned this Jul 21, 2021
@davwheat davwheat added this to In progress in Typescript rewrite via automation Jul 21, 2021
Copy link
Contributor

@tankerkiller125 tankerkiller125 left a comment

Choose a reason for hiding this comment

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

I think the warning message requires a very slight re-wording so that it isn't confusing, otherwise it looks good to me.

js/src/common/components/Button.tsx Outdated Show resolved Hide resolved
@dsevillamartin
Copy link
Member

The warning will be logged every time the button redraws... I think it'd be good to only do it once per element, but that'd probably be outside the scope of this PR.

@davwheat
Copy link
Member Author

I couldn't think of a better way to handle that, to be honest, without risking the checks not working correctly. Things like this.element aren't defined in oninit as far as I'm aware, meaning we can't check if the Tooltip component has set an aria-label attribute.

@dsevillamartin
Copy link
Member

I couldn't think of a better way to handle that, to be honest, without risking the checks not working correctly. Things like this.element aren't defined in oninit as far as I'm aware, meaning we can't check if the Tooltip component has set an aria-label attribute.

It's defined in Component.oncreate(), I believe. Warning in oncreate should do the trick.

davwheat and others added 7 commits July 30, 2021 19:58
Fires `console.warn`, but only when the forum is in debug mode. Can help to inform extension developers of possible issues with their JS code.
- Prefer `aria-label` over `title`
- Don't duplicate button content to `title` attribute
- Warn in debug mode if button has no accessible content
- Use modern JS/TS syntax (`||=`, spread, etc)
Co-authored-by: Matt Kilgore <tankerkiller125@gmail.com>
js/src/common/components/Button.tsx Outdated Show resolved Hide resolved
js/src/common/helpers/fireDebugWarning.ts Outdated Show resolved Hide resolved
@davwheat davwheat merged commit 3cf19dd into master Aug 22, 2021
Typescript rewrite automation moved this from In progress to Done Aug 22, 2021
@davwheat davwheat deleted the dw/ts-rewrite/button branch August 22, 2021 19:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/accessibility Issues relating to accessibility (keyboard navigation, screenreaders, text contrast, etc.) type/cleanup
Projects
Development

Successfully merging this pull request may close these issues.

None yet

4 participants