mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-16 23:34:40 -05:00
remove suggesttions for now ig
This commit is contained in:
parent
a771300e84
commit
5dc6a9e435
1 changed files with 2 additions and 30 deletions
|
@ -28,36 +28,8 @@ through which recipients can access the Corresponding Source.
|
||||||
@licend The above is the entire license notice
|
@licend The above is the entire license notice
|
||||||
for the JavaScript code in this page.
|
for the JavaScript code in this page.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Dismiss when the end-user clicks else where
|
|
||||||
document.body.addEventListener("click", function (evt) {
|
|
||||||
document.querySelector('.suggestions').style.opacity = '0'
|
|
||||||
});
|
|
||||||
|
|
||||||
// When the end-user starts typing, trigget the fetch function
|
|
||||||
document.querySelector('input[type="search"]').addEventListener('input', function(e) {
|
|
||||||
if (e.target.value !== '') {
|
|
||||||
document.querySelector('.suggestions').style.opacity = '1'
|
|
||||||
GetResults()
|
|
||||||
}
|
|
||||||
else {null}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Fetch
|
|
||||||
function GetResults() {
|
|
||||||
var SearchValue = document.querySelector('input[type="search"]').value
|
|
||||||
var YouTubeSuggestions = document.querySelector('.suggestions')
|
|
||||||
fetch(window.location.origin + `/api/improving-poke/suggestions?q=${SearchValue}`)
|
|
||||||
.then(response => response.json())
|
|
||||||
.then(data => {YouTubeSuggestions.innerHTML = ListOfSuggestionsYT(data)})
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create List
|
|
||||||
function ListOfSuggestionsYT(data) {
|
|
||||||
const text = data.suggestions.map(data => `<a href="/search?query=${data}">${data}</a>`).join("\n")
|
|
||||||
return `${text}`
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in a new issue