mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
66 lines
No EOL
1.3 KiB
JavaScript
66 lines
No EOL
1.3 KiB
JavaScript
import React, { PropTypes, Component } from 'react';
|
|
import Router from '../router.js'
|
|
import Formsy from 'formsy-react';
|
|
import FRC from 'formsy-react-components';
|
|
|
|
const Input = FRC.Input;
|
|
|
|
// see: http://stackoverflow.com/questions/1909441/jquery-keyup-delay
|
|
const delay = (function(){
|
|
var timer = 0;
|
|
return function(callback, ms){
|
|
clearTimeout (timer);
|
|
timer = setTimeout(callback, ms);
|
|
};
|
|
})();
|
|
|
|
class SearchForm extends Component{
|
|
|
|
constructor() {
|
|
super();
|
|
this.search = this.search.bind(this);
|
|
}
|
|
|
|
search(data) {
|
|
|
|
if (Router.getRouteName() !== "posts.list") {
|
|
Router.go("posts.list");
|
|
}
|
|
|
|
if (data.searchQuery === '') {
|
|
data.searchQuery = null;
|
|
}
|
|
|
|
delay(function(){
|
|
Router.setQueryParams({query: data.searchQuery});
|
|
}, 700 );
|
|
|
|
}
|
|
|
|
render() {
|
|
|
|
return (
|
|
<div className="search-form">
|
|
<Formsy.Form onChange={this.search}>
|
|
<Input
|
|
name="searchQuery"
|
|
value=""
|
|
placeholder={this.props.labelText}
|
|
type="text"
|
|
/>
|
|
</Formsy.Form>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
SearchForm.propTypes = {
|
|
labelText: React.PropTypes.string
|
|
}
|
|
|
|
SearchForm.defaultProps = {
|
|
labelText: "Search"
|
|
};
|
|
|
|
module.exports = SearchForm;
|
|
export default SearchForm; |