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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
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
}
}
`;
function routeToItem(item) {
Router.push({
pathname: '/item',
query: {
id: item.id,
},
});
}
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>
<Downshift onChange={routeToItem} itemToString={item => (item === null ? '' : item.title)}>
{({ getInputProps, getItemProps, isOpen, inputValue, highlightedIndex }) => (
<div>
<ApolloConsumer>
{client => (
<input
{...getInputProps({
type: 'search',
placeholder: 'Search For An Item',
id: 'search',
className: this.state.loading ? 'loading' : '',
onChange: e => {
e.persist();
this.onChange(e, client);
},
})}
/>
)}
</ApolloConsumer>
{isOpen && (
<DropDown>
{this.state.items.map((item, index) => (
<DropDownItem
{...getItemProps({ item })}
key={item.id}
highlighted={index === highlightedIndex}
>
<img width="50" src={item.image} alt={item.title} />
{item.title}
</DropDownItem>
))}
{!this.state.items.length &&
!this.state.loading && <DropDownItem> Nothing Found {inputValue}</DropDownItem>}
</DropDown>
)}
</div>
)}
</Downshift>
</SearchStyles>
);
}
}
export default AutoComplete;
|