2020-11-17 10:45:35 +05:30
|
|
|
<template>
|
|
|
|
<h1 class="uk-text-bold uk-text-center">Trending</h1>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2020-11-22 10:05:16 +05:30
|
|
|
<div class="uk-grid-xl" uk-grid="parallax: 0">
|
2020-11-17 10:45:35 +05:30
|
|
|
<div
|
2020-11-18 19:10:04 +05:30
|
|
|
style="background: #0b0e0f"
|
|
|
|
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"
|
2020-11-17 10:45:35 +05:30
|
|
|
v-bind:key="video.url"
|
|
|
|
v-for="video in videos"
|
|
|
|
>
|
2021-06-17 00:44:46 +05:30
|
|
|
<VideoItem :video="video" height="118" width="210" />
|
2020-11-17 10:45:35 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Constants from "@/Constants.js";
|
2021-06-17 00:44:46 +05:30
|
|
|
import VideoItem from "@/components/VideoItem.vue";
|
2020-11-17 10:45:35 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-07 17:15:40 +05:30
|
|
|
videos: [],
|
2020-11-17 10:45:35 +05:30
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
document.title = "Trending - Piped";
|
|
|
|
|
|
|
|
this.fetchTrending().then(videos => (this.videos = videos));
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async fetchTrending() {
|
2021-02-24 15:05:41 +05:30
|
|
|
return await this.fetchJson(Constants.BASE_URL + "/trending");
|
2021-04-07 17:15:40 +05:30
|
|
|
},
|
|
|
|
},
|
2021-06-17 00:44:46 +05:30
|
|
|
components: {
|
|
|
|
VideoItem,
|
|
|
|
},
|
2020-11-17 10:45:35 +05:30
|
|
|
};
|
|
|
|
</script>
|