mirror of https://github.com/embarklabs/embark.git
Display a search for small screen
This commit is contained in:
parent
6a97930ceb
commit
aecc667a8c
|
@ -147,7 +147,7 @@ class Layout extends React.Component {
|
||||||
renderRightNav() {
|
renderRightNav() {
|
||||||
return (
|
return (
|
||||||
<Nav className="ml-auto" navbar>
|
<Nav className="ml-auto" navbar>
|
||||||
<NavItem className="d-sm-down-none">
|
<NavItem>
|
||||||
<SearchBar loading={this.state.searchLoading} searchSubmit={searchValue => this.searchTheExplorer(searchValue)}/>
|
<SearchBar loading={this.state.searchLoading} searchSubmit={searchValue => this.searchTheExplorer(searchValue)}/>
|
||||||
</NavItem>
|
</NavItem>
|
||||||
{this.renderSettings()}
|
{this.renderSettings()}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
width: 245px;
|
width: 245px;
|
||||||
|
display: inline-block;
|
||||||
border: 1px solid #c8ced3;
|
border: 1px solid #c8ced3;
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
}
|
}
|
||||||
|
@ -12,12 +13,18 @@
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#root .search-bar button {
|
#root .search-bar .search-bar__button {
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width:575px){
|
||||||
|
#root .search-bar .search-bar__button {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.search-bar .search-loading {
|
.search-bar .search-loading {
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
|
@ -11,7 +11,8 @@ class SearchBar extends React.Component {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
searchValue: ''
|
searchValue: '',
|
||||||
|
showForm: false
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,26 +24,45 @@ class SearchBar extends React.Component {
|
||||||
|
|
||||||
onSubmit(e) {
|
onSubmit(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
this.hideForm();
|
||||||
this.props.searchSubmit(this.state.searchValue);
|
this.props.searchSubmit(this.state.searchValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hideForm() {
|
||||||
|
this.setState({showForm: false});
|
||||||
|
}
|
||||||
|
|
||||||
onKeyPress(e) {
|
onKeyPress(e) {
|
||||||
if (e.key === 'Enter') {
|
if (e.key === 'Enter') {
|
||||||
this.onSubmit(e);
|
this.onSubmit(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
revealForm() {
|
||||||
|
this.setState({showForm: true});
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Form inline className={classNames('search-bar', 'mr-2', {hidden: this.props.hidden})}>
|
<Form inline className={classNames('search-bar', 'mr-2', {hidden: this.props.hidden})}>
|
||||||
{!this.props.loading &&
|
{!this.props.loading &&
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<Input type="text" name="search-bar" placeholder="Search by Address / Txhash / Block"
|
<div className={classNames({'d-sm-down-none': !this.state.showForm})}>
|
||||||
|
<Input type="text" name="search-bar"
|
||||||
|
placeholder="Search by Address / Txhash / Block"
|
||||||
onChange={(e) => this.onChange(e)}
|
onChange={(e) => this.onChange(e)}
|
||||||
value={this.state.searchValue} onKeyPress={e => this.onKeyPress(e)}/>
|
value={this.state.searchValue}
|
||||||
<Button color="secondary" onClick={(e) => this.onSubmit(e)}>
|
onBlur={() => this.hideForm()}
|
||||||
|
onKeyPress={e => this.onKeyPress(e)}/>
|
||||||
|
<Button className='search-bar__button' color="secondary" onClick={(e) => this.onSubmit(e)}>
|
||||||
<FontAwesome name="search"/>
|
<FontAwesome name="search"/>
|
||||||
</Button>
|
</Button>
|
||||||
|
</div>
|
||||||
|
{!this.state.showForm && <div className="d-block d-md-none">
|
||||||
|
<Button color="secondary" onClick={() => this.revealForm()}>
|
||||||
|
<FontAwesome name="search"/>
|
||||||
|
</Button>
|
||||||
|
</div>}
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
}
|
}
|
||||||
{this.props.loading &&
|
{this.props.loading &&
|
||||||
|
|
Loading…
Reference in New Issue