-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-input.js
156 lines (138 loc) · 3.55 KB
/
search-input.js
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import { html, css, LitElement } from 'https://unpkg.com/lit-element?module';
class SearchInput extends LitElement {
static styles = css`
.input-group {
display: flex;
}
.search-input {
flex: 1;
padding-right: 8px;
}
.search-button {
padding: 8px;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
}
.suggestions {
position: relative;
}
.suggestion-item {
padding: 8px;
cursor: pointer;
}
.suggestion-item:hover {
background-color: #f2f2f2;
}
.hidden {
display: none;
}
`;
constructor() {
super();
this.query = '';
this.suggestions = [];
this.showSuggestions = false; // Track visibility of suggestions
this.jsonData = [
'Apple',
'Banana',
'Cherry',
'Grapes',
'Lemon',
'Mango',
'Orange',
'Peach',
'Pear',
'Strawberry',
'Watermelon',
'Kiwi',
'Pineapple',
'Blueberry',
'Raspberry',
'Blackberry',
'Cranberry',
'Coconut',
'Pomegranate',
'Fig'
];
}
handleInputChange(event) {
this.query = event.target.value;
this.updateSuggestions();
}
handleSearch() {
// Perform search logic with the query value
console.log('Search query:', this.query);
}
handleSuggestionClick(suggestion) {
this.query = suggestion;
this.showSuggestions = false; // Hide suggestions when clicked
this.postToServer(suggestion);
this.requestUpdate(); // Manually request an update to reflect the changes
}
postToServer(data) {
// Replace with your actual server endpoint URL
const url = 'https://example.com/api/post';
const payload = { data };
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(payload)
})
.then(response => response.json())
.then(result => {
console.log('Post response:', result);
// Handle the response from the server as needed
})
.catch(error => {
console.error('Error:', error);
// Handle any error that occurred during the request
});
}
updateSuggestions() {
this.suggestions = this.jsonData
.filter(item => item.toLowerCase().includes(this.query.toLowerCase()))
.slice(0, 7);
this.showSuggestions = this.suggestions.length > 0; // Show suggestions if there are any
this.requestUpdate();
}
render() {
return html`
<div class="input-group">
<input
type="text"
class="search-input form-control"
placeholder="Search"
.value="${this.query}"
@input="${this.handleInputChange}"
autocomplete="off"
/>
<button class="search-button" @click="${this.handleSearch}">
<i class="fas fa-search"></i>
</button>
</div>
<!-- Autocomplete suggestions -->
<div class="suggestions ${this.showSuggestions ? '' : 'hidden'}">
${this.suggestions.map(
suggestion => html`
<div
class="suggestion-item"
@click="${() => this.handleSuggestionClick(suggestion)}"
>
${suggestion}
</div>
`
)}
</div>
<!-- Add necessary dependencies for the search icon -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
`;
}
}
customElements.define('search-input', SearchInput);