Piped/src/components/TrendingPage.vue

58 lines
1.8 KiB
Vue
Raw Normal View History

2020-11-17 05:15:35 +00:00
<template>
2022-07-20 20:20:10 +00:00
<h1 v-t="'titles.trending'" class="font-bold text-center my-4" />
2020-11-17 05:15:35 +00:00
<hr />
<LoadingIndicatorPage :show-content="videos.length != 0" class="video-grid">
2022-11-01 12:12:54 +00:00
<VideoItem v-for="video in videos" :key="video.url" :item="video" height="118" width="210" />
</LoadingIndicatorPage>
2020-11-17 05:15:35 +00:00
</template>
<script>
import LoadingIndicatorPage from "./LoadingIndicatorPage.vue";
2022-04-08 15:46:49 +00:00
import VideoItem from "./VideoItem.vue";
2020-11-17 05:15:35 +00:00
export default {
components: {
VideoItem,
LoadingIndicatorPage,
},
2020-11-17 05:15:35 +00:00
data() {
return {
videos: [],
2020-11-17 05:15:35 +00:00
};
},
mounted() {
if (this.$route.path == "/" && this.getPreferenceString("homepage", "trending") == "feed") return;
let region = this.getPreferenceString("region", "US");
this.fetchTrending(region).then(videos => {
this.videos = videos;
this.updateWatched(this.videos);
2023-07-19 01:54:00 +00:00
const videoIds = this.videos.map(video => video.url.substr(-11)).sort();
this.fetchDeArrowContent(videoIds).then(json => {
Object.keys(json).forEach(key => {
const video = this.videos.find(video => video.url.substr(-11) == key);
video.dearrow = json[key];
});
});
});
2020-11-17 05:15:35 +00:00
},
activated() {
document.title = this.$t("titles.trending") + " - Piped";
if (this.videos.length > 0) this.updateWatched(this.videos);
if (this.$route.path == "/") {
let homepage = this.getHomePage(this);
if (homepage !== undefined) this.$router.push(homepage);
}
},
2020-11-17 05:15:35 +00:00
methods: {
async fetchTrending(region) {
return await this.fetchJson(this.apiUrl() + "/trending", {
region: region || "US",
});
},
},
2020-11-17 05:15:35 +00:00
};
</script>