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(v2): remove focus on search input when hovering over it #2262

Merged
merged 3 commits into from
Feb 1, 2020

Conversation

lex111
Copy link
Contributor

@lex111 lex111 commented Feb 1, 2020

Motivation

PR #2188 brought an unpleasant side effect - when you hover over the search field, auto focus occurred on this field.

Have you read the Contributing Guidelines on pull requests?

Yes

Test Plan

Check the search input work - when hovering, when focus, also consider mobiles.

Related PRs

(If this PR adds or changes functionality, please take some time to update the docs at https://github.com/facebook/docusaurus, and link to your PR here.)

@lex111 lex111 added the pr: bug fix This PR fixes a bug in a past release. label Feb 1, 2020
@lex111 lex111 requested a review from yangshun February 1, 2020 03:19
@facebook-github-bot facebook-github-bot added the CLA Signed Signed Facebook CLA label Feb 1, 2020
@@ -87,8 +94,8 @@ const Search = props => {
className={classnames('search-icon', {
'search-icon-hidden': props.isSearchBarExpanded,
})}
onClick={toggleSearchIconClick}
onKeyDown={toggleSearchIconClick}
onClick={handleSearchIcon}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Rename handler for consistency.

@@ -77,7 +78,13 @@ const Search = props => {

const handleSearchInputBlur = useCallback(() => {
props.handleSearchBarToggle(!props.isSearchBarExpanded);
}, [algoliaLoaded]);
}, [props.isSearchBarExpanded]);
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Fix also proper deps.

@docusaurus-bot
Copy link
Contributor

Deploy preview for docusaurus-2 ready!

Built with commit 4b8ca8e

https://deploy-preview-2262--docusaurus-2.netlify.com

Copy link
Contributor

@yangshun yangshun left a comment

Choose a reason for hiding this comment

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

Oops lol. Thanks for fixing!

@yangshun yangshun merged commit de4a25c into facebook:master Feb 1, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed Signed Facebook CLA pr: bug fix This PR fixes a bug in a past release.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants