mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 15:13:21 +08:00
94 lines
2.3 KiB
JavaScript
94 lines
2.3 KiB
JavaScript
import React, { Component } from "react";
|
|
import {
|
|
NavDropdown,
|
|
MenuItem,
|
|
FormGroup,
|
|
InputGroup,
|
|
Glyphicon
|
|
} from "react-bootstrap";
|
|
import styled from "styled-components";
|
|
import { SEARCH_PATH } from "../../../app/routes";
|
|
|
|
const StyledFormGroup = styled(FormGroup)`
|
|
margin-bottom: 0px;
|
|
`;
|
|
|
|
const StyledMenuItem = styled(MenuItem)`
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
`;
|
|
|
|
const StyledNavDropdown = styled(NavDropdown)`
|
|
& > .dropdown-menu {
|
|
width: 250px;
|
|
}
|
|
`;
|
|
|
|
class SearchDropdown extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = { searchTerm: "" };
|
|
this.handleSearchTermChange = this.handleSearchTermChange.bind(this);
|
|
this.handleKeyPress = this.handleKeyPress.bind(this);
|
|
this.setFocusToInput = this.setFocusToInput.bind(this);
|
|
this.submitSearch = this.submitSearch.bind(this);
|
|
}
|
|
|
|
setFocusToInput(ev) {
|
|
this.navSearchInput.focus();
|
|
ev.stopPropagation();
|
|
ev.nativeEvent.stopImmediatePropagation();
|
|
}
|
|
|
|
handleKeyPress(ev) {
|
|
if (ev.charCode === 13) {
|
|
this.submitSearch();
|
|
}
|
|
}
|
|
|
|
handleSearchTermChange(ev) {
|
|
this.setState({ searchTerm: ev.target.value });
|
|
}
|
|
|
|
submitSearch() {
|
|
window.location = `${SEARCH_PATH}?q=${this.state.searchTerm}`;
|
|
this.setState({ searchTerm: "" });
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<StyledNavDropdown
|
|
noCaret
|
|
title={<span className="glyphicon glyphicon-search" />}
|
|
onClick={this.setFocusToInput}
|
|
id="search-dropdown"
|
|
>
|
|
<StyledMenuItem>
|
|
<StyledFormGroup>
|
|
<InputGroup>
|
|
<input
|
|
onChange={this.handleSearchTermChange}
|
|
onClick={this.setFocusToInput}
|
|
onKeyPress={this.handleKeyPress}
|
|
ref={el => {
|
|
this.navSearchInput = el;
|
|
}}
|
|
type="text"
|
|
placeholder="Search"
|
|
className="form-control"
|
|
/>
|
|
<InputGroup.Addon
|
|
onClick={this.submitSearch}
|
|
className="visible-xs visible-sm"
|
|
>
|
|
<Glyphicon glyph="menu-right" />
|
|
</InputGroup.Addon>
|
|
</InputGroup>
|
|
</StyledFormGroup>
|
|
</StyledMenuItem>
|
|
</StyledNavDropdown>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default SearchDropdown;
|