File size: 1,177 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import FontAwesome from 'react-fontawesome';
import './SearchBar.css';
class SearchBar extends Component {
state = {
value: ''
}
// Must have this here so we can reset it
timeout = null;
doSearch = (event) => {
const value = event.target.value;
this.setState({ value })
clearTimeout(this.timeout);
// Set a timeout to wait for the user to stop writing
// So we don´t have to make unnessesary calls
this.timeout = setTimeout( () => {
this.props.callback(value);
}, 500);
}
render () {
// ES6 Destructuring state
const { value } = this.state;
return (
<div className="rmdb-searchbar">
<div className="rmdb-searchbar-content">
<FontAwesome className="rmdb-fa-search" name="search" size="2x" />
<input
type="text"
className="rmdb-searchbar-input"
placeholder="Search"
onChange={this.doSearch}
value={value}
/>
</div>
</div>
)
}
}
SearchBar.propTypes = {
callback: PropTypes.func
}
export default SearchBar; |