2020-11-11 09:20:57 +00:00
|
|
|
<template>
|
2020-11-17 05:15:35 +00:00
|
|
|
<div class="uk-container uk-container-xlarge">
|
2021-04-07 11:45:40 +00:00
|
|
|
<Player ref="videoPlayer" :video="video" :sponsors="sponsors" :selectedAutoPlay="selectedAutoPlay" />
|
2020-11-22 04:31:14 +00:00
|
|
|
<h1 class="uk-text-bold">{{ video.title }}</h1>
|
2020-11-17 05:15:35 +00:00
|
|
|
|
2021-02-24 09:35:41 +00:00
|
|
|
<img :src="video.uploaderAvatar" loading="lazy" />
|
2020-11-17 05:15:35 +00:00
|
|
|
<router-link class="uk-text-bold" v-bind:to="video.uploaderUrl || '/'">
|
|
|
|
<a>{{ video.uploader }}</a>
|
2020-11-12 20:42:02 +00:00
|
|
|
</router-link>
|
2020-11-17 05:15:35 +00:00
|
|
|
|
|
|
|
<p class="uk-dark">
|
2021-04-06 14:29:15 +00:00
|
|
|
<font-awesome-icon icon="thumbs-up"></font-awesome-icon>
|
2021-06-02 18:52:58 +00:00
|
|
|
<b>{{ addCommas(video.likes) }}</b>
|
2020-11-27 06:46:36 +00:00
|
|
|
|
2021-04-06 14:29:15 +00:00
|
|
|
<font-awesome-icon icon="thumbs-down"></font-awesome-icon>
|
2021-06-02 18:52:58 +00:00
|
|
|
<b>{{ addCommas(video.dislikes) }}</b>
|
2020-11-17 05:15:35 +00:00
|
|
|
</p>
|
2020-11-12 20:42:02 +00:00
|
|
|
<p>
|
|
|
|
<font-awesome-icon icon="eye"></font-awesome-icon>
|
2021-06-02 18:52:58 +00:00
|
|
|
<b>{{ addCommas(video.views) }}</b> views
|
2020-11-27 06:46:36 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Uploaded on <b>{{ video.uploadDate }}</b>
|
2020-11-12 20:42:02 +00:00
|
|
|
</p>
|
2021-04-07 11:45:40 +00:00
|
|
|
<a class="uk-button uk-button-small" style="background: #222" @click="showDesc = !showDesc">
|
2021-01-15 09:49:46 +00:00
|
|
|
{{ showDesc ? "+" : "-" }}
|
|
|
|
</a>
|
2021-01-20 15:49:21 +00:00
|
|
|
<p v-show="showDesc" class="uk-light" v-html="video.description"></p>
|
2021-04-07 11:45:40 +00:00
|
|
|
<a v-if="sponsors && sponsors.segments">Sponsors Segments: {{ sponsors.segments.length }}</a>
|
2020-11-17 05:15:35 +00:00
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2020-12-10 07:53:30 +00:00
|
|
|
<b>Auto Play next Video:</b>
|
2021-04-07 11:45:40 +00:00
|
|
|
<input class="uk-checkbox" v-model="selectedAutoPlay" @change="onChange($event)" type="checkbox" />
|
2020-12-10 07:53:30 +00:00
|
|
|
|
2021-05-25 19:46:21 +00:00
|
|
|
<hr />
|
|
|
|
|
|
|
|
<div uk-grid>
|
2021-05-26 08:24:20 +00:00
|
|
|
<div class="uk-width-4-5@xl uk-width-3-4@l uk-width-2-3" v-if="comments" ref="comments">
|
2021-05-25 19:46:21 +00:00
|
|
|
<div
|
|
|
|
class="uk-tile-default uk-align-left uk-width-expand"
|
|
|
|
style="background: #0b0e0f"
|
|
|
|
v-bind:key="comment.commentId"
|
|
|
|
v-for="comment in comments.comments"
|
|
|
|
>
|
|
|
|
<div align="left">
|
2021-05-26 19:02:12 +00:00
|
|
|
<div v-if="comment.pinned">
|
|
|
|
<font-awesome-icon icon="thumbtack"></font-awesome-icon> Pinned by
|
|
|
|
{{ video.uploader }}
|
|
|
|
</div>
|
2021-05-25 19:46:21 +00:00
|
|
|
<img
|
|
|
|
:src="comment.thumbnail"
|
2021-05-27 20:12:36 +00:00
|
|
|
style="width: 10vmin"
|
2021-05-25 19:46:21 +00:00
|
|
|
height="176"
|
|
|
|
width="176"
|
|
|
|
loading="lazy"
|
|
|
|
alt="avatar"
|
|
|
|
/>
|
2021-05-26 19:02:12 +00:00
|
|
|
<br />
|
2021-05-25 19:46:21 +00:00
|
|
|
<router-link class="uk-link-muted" v-bind:to="comment.commentorUrl">
|
2021-05-26 19:02:12 +00:00
|
|
|
{{ comment.author }} </router-link
|
|
|
|
> <font-awesome-icon v-if="comment.verified" icon="check"></font-awesome-icon>
|
2021-05-25 19:46:21 +00:00
|
|
|
</div>
|
|
|
|
<p>{{ comment.commentText }}</p>
|
2021-05-26 19:02:12 +00:00
|
|
|
<div>
|
2021-05-30 22:06:35 +00:00
|
|
|
<b>{{ numberFormat(comment.likeCount) }}</b>
|
2021-05-26 19:02:12 +00:00
|
|
|
|
|
|
|
<font-awesome-icon icon="thumbs-up"></font-awesome-icon>
|
|
|
|
|
|
|
|
<font-awesome-icon v-if="comment.hearted" icon="heart"></font-awesome-icon>
|
|
|
|
</div>
|
2021-05-25 19:46:21 +00:00
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-05-26 08:10:22 +00:00
|
|
|
<div class="uk-width-1-5@xl uk-width-1-4@l uk-width-1-3" v-if="video">
|
2021-05-25 19:46:21 +00:00
|
|
|
<div
|
|
|
|
class="uk-tile-default uk-width-auto"
|
|
|
|
style="background: #0b0e0f"
|
|
|
|
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>
|
|
|
|
<img style="width: 100%" v-bind:src="related.thumbnail" loading="lazy" />
|
|
|
|
</router-link>
|
|
|
|
<p>
|
|
|
|
<router-link class="uk-link-muted" v-bind:to="related.uploaderUrl || '/'">
|
|
|
|
<p>{{ related.uploaderName }}</p>
|
|
|
|
</router-link>
|
|
|
|
<font-awesome-icon icon="eye"></font-awesome-icon>
|
2021-06-02 18:43:28 +00:00
|
|
|
{{ numberFormat(related.views) }} views
|
2021-05-25 19:46:21 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-17 05:15:35 +00:00
|
|
|
</div>
|
2020-11-12 20:42:02 +00:00
|
|
|
</div>
|
2020-11-11 09:20:57 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Constants from "@/Constants.js";
|
2021-04-01 15:13:35 +00:00
|
|
|
import Player from "@/components/Player.vue";
|
2020-11-11 09:20:57 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "App",
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
video: {
|
2021-04-07 11:45:40 +00:00
|
|
|
title: "Loading...",
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
2020-12-14 13:41:49 +00:00
|
|
|
sponsors: null,
|
2021-01-15 09:49:46 +00:00
|
|
|
selectedAutoPlay: null,
|
2021-04-07 11:45:40 +00:00
|
|
|
showDesc: true,
|
2021-05-25 19:46:21 +00:00
|
|
|
comments: null,
|
2020-11-11 09:20:57 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2020-12-14 13:41:49 +00:00
|
|
|
this.selectedAutoPlay = Constants.AUTO_PLAY;
|
2020-11-11 09:20:57 +00:00
|
|
|
this.getVideoData();
|
|
|
|
this.getSponsors();
|
2021-05-25 19:46:21 +00:00
|
|
|
this.getComments();
|
2021-05-26 08:10:22 +00:00
|
|
|
window.addEventListener("scroll", this.handleScroll);
|
|
|
|
},
|
|
|
|
unmounted() {
|
|
|
|
window.removeEventListener("scroll", this.handleScroll);
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
|
|
|
watch: {
|
2020-11-17 05:15:35 +00:00
|
|
|
"$route.query.v": function(v) {
|
2020-11-11 09:20:57 +00:00
|
|
|
if (v) {
|
|
|
|
this.getVideoData();
|
|
|
|
this.getSponsors();
|
2021-05-25 19:46:21 +00:00
|
|
|
this.getComments();
|
2020-11-11 09:20:57 +00:00
|
|
|
}
|
2021-04-07 11:45:40 +00:00
|
|
|
},
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2021-02-24 09:35:41 +00:00
|
|
|
fetchVideo() {
|
2021-04-07 11:45:40 +00:00
|
|
|
return this.fetchJson(Constants.BASE_URL + "/streams/" + this.$route.query.v);
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
|
|
|
async fetchSponsors() {
|
2021-02-25 09:54:43 +00:00
|
|
|
return await this.fetchJson(
|
2021-02-24 09:35:41 +00:00
|
|
|
Constants.BASE_URL +
|
|
|
|
"/sponsors/" +
|
|
|
|
this.$route.query.v +
|
2021-02-25 15:18:59 +00:00
|
|
|
"?category=" +
|
2021-04-21 13:38:50 +00:00
|
|
|
(localStorage && localStorage.getItem("selectedSkip") !== null
|
2021-04-07 11:45:40 +00:00
|
|
|
? encodeURIComponent('["' + localStorage.getItem("selectedSkip").replace(",", '","') + '"]')
|
|
|
|
: encodeURIComponent('["sponsor", "interaction", "selfpromo", "music_offtopic"]')),
|
2021-02-24 09:35:41 +00:00
|
|
|
);
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
2021-05-25 19:46:21 +00:00
|
|
|
fetchComments() {
|
|
|
|
return this.fetchJson(Constants.BASE_URL + "/comments/" + this.$route.query.v);
|
|
|
|
},
|
2020-12-10 07:53:30 +00:00
|
|
|
onChange() {
|
2021-04-07 11:45:40 +00:00
|
|
|
if (localStorage) localStorage.setItem("autoplay", this.selectedAutoPlay);
|
2020-12-10 07:53:30 +00:00
|
|
|
},
|
2020-11-11 09:20:57 +00:00
|
|
|
async getVideoData() {
|
|
|
|
this.fetchVideo()
|
2021-02-24 09:35:41 +00:00
|
|
|
.then(data => {
|
|
|
|
this.video = data;
|
|
|
|
})
|
2020-11-11 09:20:57 +00:00
|
|
|
.then(() => {
|
|
|
|
document.title = this.video.title + " - Piped";
|
|
|
|
|
2020-11-17 05:15:35 +00:00
|
|
|
this.video.description = this.video.description
|
|
|
|
.replaceAll("http://www.youtube.com", "")
|
2021-01-20 15:49:21 +00:00
|
|
|
.replaceAll("https://www.youtube.com", "")
|
|
|
|
.replaceAll("\n", "<br>");
|
2020-11-11 09:20:57 +00:00
|
|
|
|
2021-04-01 15:13:35 +00:00
|
|
|
this.$refs.videoPlayer.loadVideo();
|
2020-11-11 09:20:57 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
async getSponsors() {
|
2021-02-25 14:40:40 +00:00
|
|
|
if (!localStorage || localStorage.getItem("sponsorblock") !== false)
|
|
|
|
this.fetchSponsors().then(data => (this.sponsors = data));
|
2021-04-07 11:45:40 +00:00
|
|
|
},
|
2021-05-25 19:46:21 +00:00
|
|
|
async getComments() {
|
|
|
|
this.fetchComments().then(data => (this.comments = data));
|
|
|
|
},
|
2021-05-26 08:10:22 +00:00
|
|
|
handleScroll() {
|
|
|
|
if (this.loading || !this.comments || !this.comments.nextpage) return;
|
2021-05-26 08:24:20 +00:00
|
|
|
if (window.innerHeight + window.scrollY >= this.$refs.comments.offsetHeight - window.innerHeight) {
|
2021-05-26 08:10:22 +00:00
|
|
|
this.loading = true;
|
|
|
|
this.fetchJson(
|
|
|
|
Constants.BASE_URL +
|
|
|
|
"/nextpage/comments/" +
|
|
|
|
this.$route.query.v +
|
|
|
|
"?url=" +
|
|
|
|
encodeURIComponent(this.comments.nextpage),
|
|
|
|
).then(json => {
|
|
|
|
this.comments.nextpage = json.nextpage;
|
|
|
|
this.loading = false;
|
|
|
|
json.comments.map(comment => this.comments.comments.push(comment));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2021-04-01 15:13:35 +00:00
|
|
|
},
|
|
|
|
components: {
|
2021-04-07 11:45:40 +00:00
|
|
|
Player,
|
|
|
|
},
|
2020-11-11 09:20:57 +00:00
|
|
|
};
|
|
|
|
</script>
|