summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/48/frontend/components/Search.js
diff options
context:
space:
mode:
Diffstat (limited to 'stepped-solutions/48/frontend/components/Search.js')
-rwxr-xr-xstepped-solutions/48/frontend/components/Search.js67
1 files changed, 67 insertions, 0 deletions
diff --git a/stepped-solutions/48/frontend/components/Search.js b/stepped-solutions/48/frontend/components/Search.js
new file mode 100755
index 0000000..a725630
--- /dev/null
+++ b/stepped-solutions/48/frontend/components/Search.js
@@ -0,0 +1,67 @@
+import React from 'react';
+import Downshift from 'downshift';
+import Router from 'next/router';
+import { ApolloConsumer } from 'react-apollo';
+import gql from 'graphql-tag';
+import debounce from 'lodash.debounce';
+import { DropDown, DropDownItem, SearchStyles } from './styles/DropDown';
+
+const SEARCH_ITEMS_QUERY = gql`
+ query SEARCH_ITEMS_QUERY($searchTerm: String!) {
+ items(where: { OR: [{ title_contains: $searchTerm }, { description_contains: $searchTerm }] }) {
+ id
+ image
+ title
+ }
+ }
+`;
+
+class AutoComplete extends React.Component {
+ state = {
+ items: [],
+ loading: false,
+ };
+ onChange = debounce(async (e, client) => {
+ console.log('Searching...');
+ // turn loading on
+ this.setState({ loading: true });
+ // Manually query apollo client
+ const res = await client.query({
+ query: SEARCH_ITEMS_QUERY,
+ variables: { searchTerm: e.target.value },
+ });
+ this.setState({
+ items: res.data.items,
+ loading: false,
+ });
+ }, 350);
+ render() {
+ return (
+ <SearchStyles>
+ <div>
+ <ApolloConsumer>
+ {client => (
+ <input
+ type="search"
+ onChange={e => {
+ e.persist();
+ this.onChange(e, client);
+ }}
+ />
+ )}
+ </ApolloConsumer>
+ <DropDown>
+ {this.state.items.map(item => (
+ <DropDownItem key={item.id}>
+ <img width="50" src={item.image} alt={item.title} />
+ {item.title}
+ </DropDownItem>
+ ))}
+ </DropDown>
+ </div>
+ </SearchStyles>
+ );
+ }
+}
+
+export default AutoComplete;