fix(v2): responsive search bar (#1741)

* Fix search bar on smaller devices

* Update packages/docusaurus-theme-search-algolia/src/theme/SearchBar/styles.css

Removed blank line

Co-Authored-By: Endi <endiliey@gmail.com>
This commit is contained in:
Shirshendu Bhowmick 2019-08-06 10:19:28 +05:30 committed by Endi
parent 4ecdd98cc8
commit abc80e9b00
4 changed files with 87 additions and 10 deletions

View file

@ -5,7 +5,7 @@
* LICENSE file in the root directory of this source tree.
*/
import React from 'react';
import React, {Fragment} from 'react';
import DocusaurusContext from '@docusaurus/context';
@ -16,7 +16,10 @@ class Search extends React.Component {
super(props);
this.state = {
enabled: true,
isExpanded: false,
};
this.searchBarRef = React.createRef();
this.toggleSearchIconClick = this.toggleSearchIconClick.bind(this);
}
componentDidMount() {
@ -43,16 +46,40 @@ class Search extends React.Component {
}
}
toggleSearchIconClick() {
this.setState(
oldState => ({
isExpanded: !oldState.isExpanded,
}),
() => {
this.searchBarRef.current.focus();
this.props.handleSearchBarToggle();
},
);
}
render() {
const {enabled} = this.state;
const {enabled, isExpanded} = this.state;
return enabled ? (
<input
id="search_input_react"
type="search"
placeholder="Search"
aria-label="Search"
/>
<Fragment>
<span
role="button"
className={`search-icon ${isExpanded ? 'search-icon-hidden' : ''}`}
onClick={this.toggleSearchIconClick}
onKeyDown={this.toggleSearchIconClick}
tabIndex={0}
/>
<input
id="search_input_react"
type="search"
placeholder="Search"
aria-label="Search"
className={`${isExpanded ? 'search-bar-expanded' : 'search-bar'}`}
onBlur={this.toggleSearchIconClick}
ref={this.searchBarRef}
/>
</Fragment>
) : null;
}
}

View file

@ -44,6 +44,40 @@
}
}
.search-icon {
background-image: var(--ifm-navbar-search-input-icon);
height: auto;
width: 24px;
cursor: pointer;
padding: 8px;
line-height: 32px;
background-repeat: no-repeat;
background-position: center;
display: none;
}
.search-icon-hidden {
visibility: hidden;
}
@media (max-width: 360px) {
.search-bar {
width: 0 !important;
background: none !important;;
padding: 0 !important;
transition: none !important;
}
.search-bar-expanded {
width: 9rem !important;
}
.search-icon {
display: inline;
}
}
.searchbox {
display: inline-block;
position: relative;