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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
import React from 'react';
import Downshift from 'downshift';
import Router from 'next/router';
import { ApolloConsumer } from 'react-apollo';
import styled, { keyframes } from 'styled-components';
import debounce from 'lodash.debounce';
import { SEARCH_ITEMS_QUERY } from '../queries/queries.graphql';
function routeToItem(item) {
Router.push({
pathname: '/item',
query: {
id: item.id,
},
});
}
const DropDown = styled.div`
position: absolute;
width: 100%;
z-index: 2;
border: 1px solid ${props => props.theme.lightgrey};
`;
const DropDownItem = styled.div`
border-bottom: 1px solid ${props => props.theme.lightgrey};
background: ${props => (props.highlighted ? '#f7f7f7' : 'white')};
padding: 1rem;
transition: all 0.2s;
${props => (props.highlighted ? 'padding-left: 2rem;' : null)};
display: flex;
align-items: center;
border-left: 10px solid ${props => (props.highlighted ? props.theme.lightgrey : 'white')};
img {
margin-right: 10px;
}
`;
const glow = keyframes`
from {
box-shadow: 0 0 0px yellow;
}
to {
box-shadow: 0 0 10px 1px yellow;
}
`;
const SearchStyles = styled.div`
position: relative;
input {
width: 100%;
padding: 10px;
border: 0;
font-size: 2rem;
&.loading {
animation: ${glow} 0.5s ease-in-out infinite alternate;
}
}
`;
class AutoComplete extends React.Component {
state = {
items: [],
loading: false,
};
onChange = async (e, client) => {
if (!e.target.value) {
return this.setState({ items: [] });
}
this.setState({ loading: true });
this.search(client, e.target.value);
};
search = debounce(async (client, searchTerm) => {
const res = await client.query({
query: SEARCH_ITEMS_QUERY,
variables: { searchTerm },
});
this.setState({ items: res.data.items, loading: false });
}, 350);
render() {
return (
<SearchStyles>
<Downshift onChange={routeToItem} itemToString={i => (i === null ? '' : i.title)}>
{({ getInputProps, getItemProps, isOpen, inputValue, highlightedIndex }) => (
<div>
{/* This is the searchInput */}
<ApolloConsumer>
{client => (
<input
{...getInputProps({
placeholder: 'Search For Item',
id: 'search',
className: this.state.loading ? 'loading' : '',
onChange: e => {
e.persist();
this.onChange(e, client);
},
})}
/>
)}
</ApolloConsumer>
{/* This is the Dropdown */}
{isOpen && (
<DropDown>
{this.state.items.map((item, index) => (
<DropDownItem
{...getItemProps({ item })}
key={item.id}
highlighted={highlightedIndex === index}
>
<img width="50" src={item.image} alt={item.title} />
{item.title}
</DropDownItem>
))}
{/* Found Nothing State */}
{!this.state.items.length &&
!this.state.loading && (
<DropDownItem>Nothing Found for {inputValue}...</DropDownItem>
)}
</DropDown>
)}
</div>
)}
</Downshift>
</SearchStyles>
);
}
}
export default AutoComplete;
|