2020-11-11 14:50:57 +05:30
|
|
|
<template>
|
2020-11-17 10:45:35 +05:30
|
|
|
<div class="uk-container uk-container-xlarge">
|
2021-04-07 17:15:40 +05:30
|
|
|
<Player ref="videoPlayer" :video="video" :sponsors="sponsors" :selectedAutoPlay="selectedAutoPlay" />
|
2020-11-22 10:01:14 +05:30
|
|
|
<h1 class="uk-text-bold">{{ video.title }}</h1>
|
2020-11-17 10:45:35 +05:30
|
|
|
|
2021-02-24 15:05:41 +05:30
|
|
|
<img :src="video.uploaderAvatar" loading="lazy" />
|
2020-11-17 10:45:35 +05:30
|
|
|
<router-link class="uk-text-bold" v-bind:to="video.uploaderUrl || '/'">
|
|
|
|
<a>{{ video.uploader }}</a>
|
2020-11-13 02:12:02 +05:30
|
|
|
</router-link>
|
2020-11-17 10:45:35 +05:30
|
|
|
|
|
|
|
<p class="uk-dark">
|
2021-04-06 19:59:15 +05:30
|
|
|
<font-awesome-icon icon="thumbs-up"></font-awesome-icon>
|
2020-11-27 12:16:36 +05:30
|
|
|
<b>{{ video.likes }}</b>
|
|
|
|
|
2021-04-06 19:59:15 +05:30
|
|
|
<font-awesome-icon icon="thumbs-down"></font-awesome-icon>
|
2020-11-27 12:16:36 +05:30
|
|
|
<b>{{ video.dislikes }}</b>
|
2020-11-17 10:45:35 +05:30
|
|
|
</p>
|
2020-11-13 02:12:02 +05:30
|
|
|
<p>
|
|
|
|
<font-awesome-icon icon="eye"></font-awesome-icon>
|
2020-11-27 12:16:36 +05:30
|
|
|
<b>{{ video.views }}</b> views
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Uploaded on <b>{{ video.uploadDate }}</b>
|
2020-11-13 02:12:02 +05:30
|
|
|
</p>
|
2021-04-07 17:15:40 +05:30
|
|
|
<a class="uk-button uk-button-small" style="background: #222" @click="showDesc = !showDesc">
|
2021-01-15 15:19:46 +05:30
|
|
|
{{ showDesc ? "+" : "-" }}
|
|
|
|
</a>
|
2021-01-20 21:19:21 +05:30
|
|
|
<p v-show="showDesc" class="uk-light" v-html="video.description"></p>
|
2021-04-07 17:15:40 +05:30
|
|
|
<a v-if="sponsors && sponsors.segments">Sponsors Segments: {{ sponsors.segments.length }}</a>
|
2020-11-17 10:45:35 +05:30
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2020-12-10 13:23:30 +05:30
|
|
|
<b>Auto Play next Video:</b>
|
2021-04-07 17:15:40 +05:30
|
|
|
<input class="uk-checkbox" v-model="selectedAutoPlay" @change="onChange($event)" type="checkbox" />
|
2020-12-10 13:23:30 +05:30
|
|
|
|
2020-11-17 10:45:35 +05:30
|
|
|
<div
|
|
|
|
class="uk-tile-default uk-text-secondary"
|
|
|
|
style="background: #0b0e0f; width: 300px"
|
|
|
|
v-bind:key="related.url"
|
|
|
|
v-for="related in video.relatedStreams"
|
|
|
|
>
|
|
|
|
<router-link class="uk-link-muted" v-bind:to="related.url">
|
|
|
|
<p class="uk-text-emphasis">{{ related.title }}</p>
|
2021-04-07 17:15:40 +05:30
|
|
|
<img style="width: 100%" v-bind:src="related.thumbnail" loading="lazy" />
|
2020-11-17 10:45:35 +05:30
|
|
|
</router-link>
|
|
|
|
<p>
|
2021-04-07 17:15:40 +05:30
|
|
|
<router-link class="uk-link-muted" v-bind:to="related.uploaderUrl || '/'">
|
2020-11-17 10:45:35 +05:30
|
|
|
<p>{{ related.uploaderName }}</p>
|
|
|
|
</router-link>
|
|
|
|
<font-awesome-icon icon="eye"></font-awesome-icon>
|
|
|
|
{{ related.views }} views
|
|
|
|
</p>
|
|
|
|
</div>
|
2020-11-13 02:12:02 +05:30
|
|
|
</div>
|
2020-11-11 14:50:57 +05:30
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Constants from "@/Constants.js";
|
2021-04-01 20:43:35 +05:30
|
|
|
import Player from "@/components/Player.vue";
|
2020-11-11 14:50:57 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "App",
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
video: {
|
2021-04-07 17:15:40 +05:30
|
|
|
title: "Loading...",
|
2020-11-11 14:50:57 +05:30
|
|
|
},
|
2020-12-14 19:11:49 +05:30
|
|
|
sponsors: null,
|
2021-01-15 15:19:46 +05:30
|
|
|
selectedAutoPlay: null,
|
2021-04-07 17:15:40 +05:30
|
|
|
showDesc: true,
|
2020-11-11 14:50:57 +05:30
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2020-12-14 19:11:49 +05:30
|
|
|
this.selectedAutoPlay = Constants.AUTO_PLAY;
|
2020-11-11 14:50:57 +05:30
|
|
|
this.getVideoData();
|
|
|
|
this.getSponsors();
|
|
|
|
},
|
|
|
|
watch: {
|
2020-11-17 10:45:35 +05:30
|
|
|
"$route.query.v": function(v) {
|
2020-11-11 14:50:57 +05:30
|
|
|
if (v) {
|
|
|
|
this.getVideoData();
|
|
|
|
this.getSponsors();
|
|
|
|
}
|
2021-04-07 17:15:40 +05:30
|
|
|
},
|
2020-11-11 14:50:57 +05:30
|
|
|
},
|
|
|
|
methods: {
|
2021-02-24 15:05:41 +05:30
|
|
|
fetchVideo() {
|
2021-04-07 17:15:40 +05:30
|
|
|
return this.fetchJson(Constants.BASE_URL + "/streams/" + this.$route.query.v);
|
2020-11-11 14:50:57 +05:30
|
|
|
},
|
|
|
|
async fetchSponsors() {
|
2021-02-25 15:24:43 +05:30
|
|
|
return await this.fetchJson(
|
2021-02-24 15:05:41 +05:30
|
|
|
Constants.BASE_URL +
|
|
|
|
"/sponsors/" +
|
|
|
|
this.$route.query.v +
|
2021-02-25 20:48:59 +05:30
|
|
|
"?category=" +
|
2021-03-04 20:10:03 +05:30
|
|
|
(localStorage && localStorage.getItem("selectedSkip")
|
2021-04-07 17:15:40 +05:30
|
|
|
? encodeURIComponent('["' + localStorage.getItem("selectedSkip").replace(",", '","') + '"]')
|
|
|
|
: encodeURIComponent('["sponsor", "interaction", "selfpromo", "music_offtopic"]')),
|
2021-02-24 15:05:41 +05:30
|
|
|
);
|
2020-11-11 14:50:57 +05:30
|
|
|
},
|
2020-12-10 13:23:30 +05:30
|
|
|
onChange() {
|
2021-04-07 17:15:40 +05:30
|
|
|
if (localStorage) localStorage.setItem("autoplay", this.selectedAutoPlay);
|
2020-12-10 13:23:30 +05:30
|
|
|
},
|
2020-11-11 14:50:57 +05:30
|
|
|
async getVideoData() {
|
|
|
|
this.fetchVideo()
|
2021-02-24 15:05:41 +05:30
|
|
|
.then(data => {
|
|
|
|
this.video = data;
|
|
|
|
})
|
2020-11-11 14:50:57 +05:30
|
|
|
.then(() => {
|
|
|
|
document.title = this.video.title + " - Piped";
|
|
|
|
|
2020-11-17 10:45:35 +05:30
|
|
|
this.video.description = this.video.description
|
|
|
|
.replaceAll("http://www.youtube.com", "")
|
2021-01-20 21:19:21 +05:30
|
|
|
.replaceAll("https://www.youtube.com", "")
|
|
|
|
.replaceAll("\n", "<br>");
|
2020-11-11 14:50:57 +05:30
|
|
|
|
2021-04-01 20:43:35 +05:30
|
|
|
this.$refs.videoPlayer.loadVideo();
|
2020-11-11 14:50:57 +05:30
|
|
|
});
|
|
|
|
},
|
|
|
|
async getSponsors() {
|
2021-02-25 20:10:40 +05:30
|
|
|
if (!localStorage || localStorage.getItem("sponsorblock") !== false)
|
|
|
|
this.fetchSponsors().then(data => (this.sponsors = data));
|
2021-04-07 17:15:40 +05:30
|
|
|
},
|
2021-04-01 20:43:35 +05:30
|
|
|
},
|
|
|
|
components: {
|
2021-04-07 17:15:40 +05:30
|
|
|
Player,
|
|
|
|
},
|
2020-11-11 14:50:57 +05:30
|
|
|
};
|
|
|
|
</script>
|