1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-17 07:40:27 +05:30
Piped/src/components/SearchSuggestions.vue

104 lines
2.8 KiB
Vue
Raw Normal View History

2021-04-01 00:44:21 +05:30
<template>
<div
class="uk-position-absolute uk-panel uk-box-shadow-large suggestions-container"
:style="[{ background: secondaryBackgroundColor }]"
>
2021-04-01 03:39:39 +05:30
<ul class="uk-list uk-margin-remove uk-text-secondary">
2021-04-06 15:40:17 +05:30
<li
v-for="(suggestion, i) in searchSuggestions"
:key="i"
:style="[selected === i ? { background: secondaryForegroundColor } : {}]"
@mouseover="onMouseOver(i)"
@mousedown.stop="onClick(i)"
2021-04-06 15:40:17 +05:30
class="uk-margin-remove suggestion"
>
2021-04-01 03:39:39 +05:30
{{ suggestion }}
</li>
</ul>
</div>
2021-04-01 00:44:21 +05:30
</template>
<script>
2021-04-06 15:40:17 +05:30
import Constants from "@/Constants.js";
2021-04-01 00:44:21 +05:30
export default {
props: {
2021-05-10 23:44:28 +05:30
searchText: String,
2021-04-06 15:40:17 +05:30
},
data() {
return {
selected: 0,
2021-05-10 23:44:28 +05:30
searchSuggestions: [],
2021-04-06 15:40:17 +05:30
};
},
methods: {
onKeyUp(e) {
if (e.key === "ArrowUp") {
if (this.selected <= 0) {
this.setSelected(this.searchSuggestions.length - 1);
2021-04-06 15:40:17 +05:30
} else {
this.setSelected(this.selected - 1);
2021-04-06 15:40:17 +05:30
}
e.preventDefault();
} else if (e.key === "ArrowDown") {
if (this.selected >= this.searchSuggestions.length - 1) {
this.setSelected(0);
2021-04-06 15:40:17 +05:30
} else {
this.setSelected(this.selected + 1);
2021-04-06 15:40:17 +05:30
}
e.preventDefault();
} else {
this.refreshSuggestions();
}
},
async refreshSuggestions() {
this.searchSuggestions = await this.fetchJson(Constants.BASE_URL + "/suggestions", {
query: this.searchText,
});
2021-04-06 15:40:17 +05:30
this.searchSuggestions.unshift(this.searchText);
this.setSelected(0);
},
onMouseOver(i) {
if (i !== this.selected) {
this.selected = i;
2021-04-06 15:40:17 +05:30
}
},
onClick(i) {
this.setSelected(i);
this.$router.push({
name: "SearchResults",
2021-05-10 23:44:28 +05:30
query: { search_query: this.searchSuggestions[i] },
});
},
setSelected(val) {
this.selected = val;
this.$emit("searchchange", this.searchSuggestions[this.selected]);
2021-05-10 23:44:28 +05:30
},
},
2021-04-01 00:44:21 +05:30
};
</script>
2021-04-01 03:39:39 +05:30
<style>
.suggestions-container {
left: 50%;
transform: translateX(-50%);
max-width: 640px;
width: 100%;
box-sizing: border-box;
2021-04-06 15:40:17 +05:30
padding: 5px 0;
}
.suggestion {
padding: 4px 15px;
}
2021-04-01 03:39:39 +05:30
@media screen and (max-width: 959px) {
.suggestions-container {
max-width: calc(100% - 60px);
}
}
@media screen and (max-width: 639px) {
.suggestions-container {
max-width: calc(100% - 30px);
}
}
</style>