mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
43 lines
1 KiB
Vue
43 lines
1 KiB
Vue
<template>
|
|
<h1 v-t="'titles.trending'" class="font-bold text-center" />
|
|
|
|
<hr />
|
|
|
|
<div class="video-grid">
|
|
<VideoItem v-for="video in videos" :key="video.url" :video="video" height="118" width="210" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VideoItem from "@/components/VideoItem.vue";
|
|
|
|
export default {
|
|
components: {
|
|
VideoItem,
|
|
},
|
|
data() {
|
|
return {
|
|
videos: [],
|
|
};
|
|
},
|
|
mounted() {
|
|
let region = this.getPreferenceString("region", "US");
|
|
|
|
this.fetchTrending(region).then(videos => {
|
|
this.videos = videos;
|
|
this.updateWatched(this.videos);
|
|
});
|
|
},
|
|
activated() {
|
|
document.title = this.$t("titles.trending") + " - Piped";
|
|
if (this.videos.length > 0) this.updateWatched(this.videos);
|
|
},
|
|
methods: {
|
|
async fetchTrending(region) {
|
|
return await this.fetchJson(this.apiUrl() + "/trending", {
|
|
region: region || "US",
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|