2020-12-09 13:33:29 +00:00
|
|
|
<template>
|
|
|
|
<h1 class="uk-text-center">
|
|
|
|
{{ $route.query.search_query }}
|
|
|
|
</h1>
|
|
|
|
|
2021-10-08 18:52:51 +00:00
|
|
|
<label for="ddlSearchFilters"
|
|
|
|
><b>{{ $t("actions.filter") }}: </b></label
|
|
|
|
>
|
2021-06-14 19:45:19 +00:00
|
|
|
<select
|
2021-09-05 21:31:46 +00:00
|
|
|
id="ddlSearchFilters"
|
2021-10-08 18:52:51 +00:00
|
|
|
v-model="selectedFilter"
|
2021-06-14 19:45:19 +00:00
|
|
|
default="all"
|
|
|
|
class="uk-select uk-width-auto"
|
|
|
|
style="height: 100%"
|
|
|
|
@change="updateResults()"
|
|
|
|
>
|
2021-10-08 18:52:51 +00:00
|
|
|
<option v-for="filter in availableFilters" :key="filter" :value="filter">
|
2021-06-14 19:45:19 +00:00
|
|
|
{{ filter.replace("_", " ") }}
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2021-10-10 01:20:00 +00:00
|
|
|
<div v-if="results && results.corrected" style="height: 7vh">
|
|
|
|
{{ $t("search.did_you_mean") }}
|
|
|
|
<i>
|
|
|
|
<router-link :to="{ name: 'SearchResults', query: { search_query: results.suggestion } }">
|
|
|
|
{{ results.suggestion }}
|
|
|
|
</router-link>
|
|
|
|
</i>
|
|
|
|
</div>
|
|
|
|
|
2021-10-31 17:44:36 +00:00
|
|
|
<div v-if="results" class="uk-grid uk-grid-xl">
|
2020-12-09 13:33:29 +00:00
|
|
|
<div
|
2021-10-08 18:52:51 +00:00
|
|
|
v-for="result in results.items"
|
|
|
|
:key="result.url"
|
2021-06-28 19:45:03 +00:00
|
|
|
:style="[{ background: backgroundColor }]"
|
2020-12-09 13:33:29 +00:00
|
|
|
class="uk-width-1-2 uk-width-1-3@s uk-width-1-4@m uk-width-1-5@l uk-width-1-6@xl"
|
|
|
|
>
|
2021-09-03 19:27:22 +00:00
|
|
|
<VideoItem v-if="shouldUseVideoItem(result)" :video="result" height="94" width="168" />
|
2021-10-08 18:52:51 +00:00
|
|
|
<div v-if="!shouldUseVideoItem(result)" class="uk-text-secondary">
|
|
|
|
<router-link class="uk-text-emphasis" :to="result.url">
|
2021-07-21 10:15:07 +00:00
|
|
|
<div class="uk-position-relative">
|
2021-10-08 18:52:51 +00:00
|
|
|
<img style="width: 100%" :src="result.thumbnail" loading="lazy" />
|
2021-07-21 10:15:07 +00:00
|
|
|
</div>
|
2021-05-28 19:32:10 +00:00
|
|
|
<p>
|
|
|
|
{{ result.name }} <font-awesome-icon
|
|
|
|
v-if="result.verified"
|
|
|
|
icon="check"
|
|
|
|
></font-awesome-icon>
|
|
|
|
</p>
|
2020-12-09 13:33:29 +00:00
|
|
|
</router-link>
|
2021-05-28 19:32:10 +00:00
|
|
|
<p v-if="result.description">{{ result.description }}</p>
|
2021-10-08 18:52:51 +00:00
|
|
|
<router-link v-if="result.uploaderUrl" class="uk-link-muted" :to="result.uploaderUrl">
|
2021-05-28 19:32:10 +00:00
|
|
|
<p>
|
|
|
|
{{ result.uploader }} <font-awesome-icon
|
|
|
|
v-if="result.uploaderVerified"
|
|
|
|
icon="check"
|
|
|
|
></font-awesome-icon>
|
|
|
|
</p>
|
2020-12-09 13:33:29 +00:00
|
|
|
</router-link>
|
2021-05-06 17:40:32 +00:00
|
|
|
|
2021-05-28 19:32:10 +00:00
|
|
|
<a v-if="result.uploaderName" class="uk-text-muted">{{ result.uploaderName }}</a>
|
2021-09-05 20:53:59 +00:00
|
|
|
<b v-if="result.videos >= 0"
|
|
|
|
><br v-if="result.uploaderName" />{{ result.videos }} {{ $t("video.videos") }}</b
|
|
|
|
>
|
2021-05-28 19:32:10 +00:00
|
|
|
|
2021-05-06 17:40:32 +00:00
|
|
|
<br />
|
2020-12-09 13:33:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-09-03 19:27:22 +00:00
|
|
|
import VideoItem from "@/components/VideoItem.vue";
|
|
|
|
|
2020-12-09 13:33:29 +00:00
|
|
|
export default {
|
2021-10-08 18:52:51 +00:00
|
|
|
components: {
|
|
|
|
VideoItem,
|
|
|
|
},
|
2020-12-09 13:33:29 +00:00
|
|
|
data() {
|
|
|
|
return {
|
2021-04-07 11:45:40 +00:00
|
|
|
results: null,
|
2021-06-14 19:45:19 +00:00
|
|
|
availableFilters: [
|
|
|
|
"all",
|
|
|
|
"videos",
|
|
|
|
"channels",
|
|
|
|
"playlists",
|
|
|
|
"music_songs",
|
|
|
|
"music_videos",
|
|
|
|
"music_albums",
|
|
|
|
"music_playlists",
|
|
|
|
],
|
|
|
|
selectedFilter: "all",
|
2020-12-09 13:33:29 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.updateResults();
|
2021-07-07 14:18:09 +00:00
|
|
|
},
|
|
|
|
activated() {
|
2020-12-14 07:15:09 +00:00
|
|
|
window.addEventListener("scroll", this.handleScroll);
|
|
|
|
},
|
2021-07-07 14:18:09 +00:00
|
|
|
deactivated() {
|
2020-12-14 07:15:09 +00:00
|
|
|
window.removeEventListener("scroll", this.handleScroll);
|
2020-12-09 13:33:29 +00:00
|
|
|
},
|
2021-09-05 20:53:59 +00:00
|
|
|
unmounted() {
|
|
|
|
window.removeEventListener("scroll", this.handleScroll);
|
|
|
|
},
|
2020-12-09 13:33:29 +00:00
|
|
|
methods: {
|
|
|
|
async fetchResults() {
|
2021-07-04 18:26:02 +00:00
|
|
|
return await await this.fetchJson(this.apiUrl() + "/search", {
|
2021-06-15 11:37:35 +00:00
|
|
|
q: this.$route.query.search_query,
|
|
|
|
filter: this.selectedFilter,
|
|
|
|
});
|
2020-12-09 13:33:29 +00:00
|
|
|
},
|
|
|
|
async updateResults() {
|
2020-12-14 07:15:09 +00:00
|
|
|
document.title = this.$route.query.search_query + " - Piped";
|
2021-04-07 11:45:40 +00:00
|
|
|
this.results = this.fetchResults().then(json => (this.results = json));
|
2020-12-14 07:15:09 +00:00
|
|
|
},
|
|
|
|
handleScroll() {
|
|
|
|
if (this.loading || !this.results || !this.results.nextpage) return;
|
2021-04-07 11:45:40 +00:00
|
|
|
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
|
2020-12-14 07:15:09 +00:00
|
|
|
this.loading = true;
|
2021-07-04 18:26:02 +00:00
|
|
|
this.fetchJson(this.apiUrl() + "/nextpage/search", {
|
2021-06-15 11:37:35 +00:00
|
|
|
nextpage: this.results.nextpage,
|
|
|
|
q: this.$route.query.search_query,
|
|
|
|
filter: this.selectedFilter,
|
|
|
|
}).then(json => {
|
2021-02-24 09:35:41 +00:00
|
|
|
this.results.nextpage = json.nextpage;
|
|
|
|
this.results.id = json.id;
|
|
|
|
this.loading = false;
|
|
|
|
json.items.map(stream => this.results.items.push(stream));
|
|
|
|
});
|
2020-12-14 07:15:09 +00:00
|
|
|
}
|
2021-04-07 11:45:40 +00:00
|
|
|
},
|
2021-09-03 19:27:22 +00:00
|
|
|
shouldUseVideoItem(item) {
|
|
|
|
return item.title;
|
|
|
|
},
|
|
|
|
},
|
2020-12-09 13:33:29 +00:00
|
|
|
};
|
|
|
|
</script>
|