-
Couldn't load subscription status.
- Fork 4.1k
Remove 100ms lag on blur by using custom blur and focus events. #2990
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
base: main
Are you sure you want to change the base?
Conversation
This allows us to accurately catch mouse events on elements within the container, removing the need to do manual focus tracking in our code.
We can instead rely on our custom focus and blur events now.
| font-size: 13px; | ||
| user-select: none; | ||
| &:focus { | ||
| outline: none; |
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.
@adunkman Just to double check: this just removes some extra extraneous focus on some unexpected element, right? Chosen currently styles properly on focus like you'd expect (good for accessibility!), so I'm hoping this is just that!
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.
Correct! This removes a focus rectangle around the Chosen DIV itself, which only occurs when clicking on search results (after the search input has blurred but before the search result is selected). It’s a side effect of adding tabIndex — it’s quite jarring, since it’s an unexpected element to receive focus in this case.
| container_props = | ||
| 'class': container_classes.join ' ' | ||
| 'title': @form_field.title | ||
| 'tabIndex': '-1' |
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.
When attempting to click on an item in the Chosen drop but missing by a pixel or two, we don’t want the Chosen drop to close. We can add a tab index, which allows it to receive focus — resulting in the following:
- The search input has focus, and the user attempts to use their mouse to click on a result.
- The user begins clicking. The search input blurs, triggering a
focusoutevent, which is caught on the container and asetTimeoutis scheduled. - The container receives the mouse event, which focuses the container. The container triggers a
focusinevent, which is caught on the container and nothing happens (@active_fieldis true). - The
setTimeoutexpires, checking to see if the container containsdocument.activeElement, which is in this case, itself. As defined in the spec, a Node.contains()itself, and therefore the drop is not closed.
| @container.on 'focusin.chosen', (evt) => this.container_focusin(evt); return | ||
| @container.on 'focusout.chosen', (evt) => this.container_focusout(evt); return | ||
| @container.on 'chosen:blur.chosen', (evt) => this.close_field(evt); return | ||
| @container.on 'chosen:focus.chosen', (evt) => this.input_focus(evt); return |
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 relying on custom events here (chosen:blur and chosen:focus) are the most straightforward way to handle this — but we can also just simply inline the calls to input_focus and close_field in the container_focusin and container_focusout events below. Let me know which you prefer!
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.
This suggests that those events can/should be invoked from a client implementation, which I think is not the case, right? So I think inlining them below would be better.
| if not @mouse_on_container | ||
| @active_field = false | ||
| setTimeout (=> this.blur_test()), 100 | ||
|
|
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.
Since we now only trigger our chosen:focus and chosen:blur events when focus is lost on the entire container or its descendants, we no longer need to track mouse positioning.
|
Looks promising, but does is work cross browser? |
|
Also, how does it behave when having focus in the input and then pressing tab? Especially in the case when the cursor is still positioned over the Chosen select. Because I can imagine that the |
@harvesthq/chosen-developers /cc @jisraelsen
This PR changes the way focus tracking occurs, relying on
focusinandfocusoutevents on the Chosen container instead offocusandblurevents on the search input itself. The key benefit is that when the search input is blurred in the process of clicking on a search result item, focus is still maintained within the Chosen container. This allows us to drop ourmouse_on_containertracking as well as the 100ms-delayedblur_test.For a quick review of the events used here:
focusfocusinblurfocusoutI’ll drop a few inline notes to explain more!