2021-03-31 19:14:21 +00:00
|
|
|
<template>
|
2021-12-27 15:36:18 +00:00
|
|
|
<div class="absolute suggestions-container" :style="[{ background: secondaryBackgroundColor }]">
|
|
|
|
<ul>
|
2021-04-06 10:10:17 +00:00
|
|
|
<li
|
|
|
|
v-for="(suggestion, i) in searchSuggestions"
|
|
|
|
:key="i"
|
2021-06-28 19:45:03 +00:00
|
|
|
:style="[selected === i ? { background: secondaryForegroundColor } : {}]"
|
2021-12-27 15:36:18 +00:00
|
|
|
class="suggestion"
|
2021-04-07 09:22:55 +00:00
|
|
|
@mouseover="onMouseOver(i)"
|
|
|
|
@mousedown.stop="onClick(i)"
|
2021-04-06 10:10:17 +00:00
|
|
|
>
|
2021-03-31 22:09:39 +00:00
|
|
|
{{ suggestion }}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2021-03-31 19:14:21 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
2021-10-08 18:52:51 +00:00
|
|
|
searchText: { type: String, default: "" },
|
2021-04-06 10:10:17 +00:00
|
|
|
},
|
2021-10-08 18:52:51 +00:00
|
|
|
emits: ["searchchange"],
|
2021-04-06 10:10:17 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
selected: 0,
|
2021-05-10 18:14:28 +00:00
|
|
|
searchSuggestions: [],
|
2021-04-06 10:10:17 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onKeyUp(e) {
|
|
|
|
if (e.key === "ArrowUp") {
|
|
|
|
if (this.selected <= 0) {
|
2021-04-07 09:22:55 +00:00
|
|
|
this.setSelected(this.searchSuggestions.length - 1);
|
2021-04-06 10:10:17 +00:00
|
|
|
} else {
|
2021-04-07 09:22:55 +00:00
|
|
|
this.setSelected(this.selected - 1);
|
2021-04-06 10:10:17 +00:00
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
} else if (e.key === "ArrowDown") {
|
|
|
|
if (this.selected >= this.searchSuggestions.length - 1) {
|
2021-04-07 09:22:55 +00:00
|
|
|
this.setSelected(0);
|
2021-04-06 10:10:17 +00:00
|
|
|
} else {
|
2021-04-07 09:22:55 +00:00
|
|
|
this.setSelected(this.selected + 1);
|
2021-04-06 10:10:17 +00:00
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
} else {
|
|
|
|
this.refreshSuggestions();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async refreshSuggestions() {
|
2021-07-04 18:26:02 +00:00
|
|
|
this.searchSuggestions = await this.fetchJson(this.apiUrl() + "/suggestions", {
|
2021-06-15 11:37:35 +00:00
|
|
|
query: this.searchText,
|
|
|
|
});
|
2021-04-06 10:10:17 +00:00
|
|
|
this.searchSuggestions.unshift(this.searchText);
|
2021-04-07 09:22:55 +00:00
|
|
|
this.setSelected(0);
|
|
|
|
},
|
|
|
|
onMouseOver(i) {
|
|
|
|
if (i !== this.selected) {
|
|
|
|
this.selected = i;
|
2021-04-06 10:10:17 +00:00
|
|
|
}
|
2021-04-07 09:22:55 +00:00
|
|
|
},
|
|
|
|
onClick(i) {
|
|
|
|
this.setSelected(i);
|
|
|
|
this.$router.push({
|
|
|
|
name: "SearchResults",
|
2021-05-10 18:14:28 +00:00
|
|
|
query: { search_query: this.searchSuggestions[i] },
|
2021-04-07 09:22:55 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
setSelected(val) {
|
|
|
|
this.selected = val;
|
|
|
|
this.$emit("searchchange", this.searchSuggestions[this.selected]);
|
2021-05-10 18:14:28 +00:00
|
|
|
},
|
|
|
|
},
|
2021-03-31 19:14:21 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2021-03-31 22:09:39 +00:00
|
|
|
<style>
|
|
|
|
.suggestions-container {
|
2021-12-27 15:36:18 +00:00
|
|
|
@apply left-1/2 translate-x-[-50%] transform-gpu max-w-3xl w-full box-border p-y-1.25 z-10 <md:max-w-[calc(100%-0.5rem)];
|
2021-04-06 10:10:17 +00:00
|
|
|
}
|
2021-12-27 15:36:18 +00:00
|
|
|
|
2021-04-06 10:10:17 +00:00
|
|
|
.suggestion {
|
2021-12-27 15:36:18 +00:00
|
|
|
@apply p-y-1;
|
2021-03-31 22:09:39 +00:00
|
|
|
}
|
|
|
|
</style>
|