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

fix(icon-button): remove sticky mdc ripple effects #1066

Merged
merged 2 commits into from
Jan 8, 2021

Conversation

anderssonjohan
Copy link
Contributor

@anderssonjohan anderssonjohan commented Dec 8, 2020

fix: #1065

Review:

  • Commits are atomic
  • Commits have the correct type for the changes made
  • Commits with breaking changes are marked as such

Browsers tested:

(Check any that applies, it's ok to leave boxes unchecked if testing something didn't seem relevant.)

Windows:

  • Chrome
  • Edge
  • Firefox

Linux:

  • Chrome
  • Firefox

macOS:

  • Chrome
  • Firefox
  • Safari

Mobile:

  • Chrome on Android
  • iOS

@anderssonjohan anderssonjohan force-pushed the 1065-icon-button-sticky-ripple branch 2 times, most recently from b14c3a8 to 2185c21 Compare December 8, 2020 21:32
@anderssonjohan anderssonjohan self-assigned this Dec 8, 2020
@anderssonjohan anderssonjohan added the bug Something isn't working label Dec 8, 2020
@adrianschmidt
Copy link
Contributor

And of course he's already opened a PR for it too… 😄 This is amazing ❤️

I'll look at it as soon as I can, but that might not be until cooldown.

@anderssonjohan
Copy link
Contributor Author

@adrianschmidt No rush! Please note that I changed from using @Listen('click') (in my issue) to using add/remove event handler due to our eslint rule. However, I couldn't find the reason for why @Listen should be avoided for vDOM events. I hoped to find some explanations but I could only find this: stenciljs/eslint-plugin#10 (comment)

@adrianschmidt
Copy link
Contributor

@adrianschmidt No rush! Please note that I changed from using @Listen('click') (in my issue) to using add/remove event handler due to our eslint rule. However, I couldn't find the reason for why @Listen should be avoided for vDOM events. I hoped to find some explanations but I could only find this: ionic-team/stencil-eslint#10 (comment)

Yeah, I have no idea… we should perhaps disable that rule?

@jgroth do you have any idea?

@jgroth
Copy link
Contributor

jgroth commented Dec 9, 2020

Hmm no I don't know 🤔
However I read your comment in the other thread and would guess that the reason is something like that 🙂
It feels like we could probably disable it if we want

@adrianschmidt adrianschmidt force-pushed the 1065-icon-button-sticky-ripple branch from 2185c21 to 7e67602 Compare January 8, 2021 11:26
@adrianschmidt adrianschmidt force-pushed the 1065-icon-button-sticky-ripple branch from 7e67602 to 75fa4da Compare January 8, 2021 11:37
adrianschmidt
adrianschmidt previously approved these changes Jan 8, 2021
@@ -72,10 +85,12 @@ export class IconButton {

this.mdcIconButtonRipple = new MDCRipple(element);
this.mdcIconButtonRipple.unbounded = true;
this.host.addEventListener('click', this.removeFocusedStateOnClick);
Copy link
Contributor

Choose a reason for hiding this comment

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

Since activating the button by pressing enter on a keyboard creates a synthetic click event, this removes the styling even if the user presses enter, instead of clicking. That's not optimal, but I think we can live with it. If the user interacts with the element, they hopefully know "where they are", despite the visual style disappearing.

The actual focus isn't removed, just the styling. (Which, by the way, makes me want to rename removeFocusedStateOnClick to removeFocusedStyleOnClick. I think I'll do that.)

@adrianschmidt adrianschmidt merged commit a98f488 into master Jan 8, 2021
@adrianschmidt adrianschmidt deleted the 1065-icon-button-sticky-ripple branch January 8, 2021 11:59
@lime-ci
Copy link
Contributor

lime-ci commented Jan 8, 2021

🎉 This PR is included in version 30.1.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Icon button component affected by MDC Ripple bugs
4 participants