2020-11-11 09:20:57 +00:00
|
|
|
<template>
|
2021-08-04 05:13:22 +00:00
|
|
|
<div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 999" v-if="video && isEmbed">
|
|
|
|
<Player
|
|
|
|
ref="videoPlayer"
|
|
|
|
:video="video"
|
|
|
|
:sponsors="sponsors"
|
|
|
|
:selectedAutoPlay="false"
|
|
|
|
:selectedAutoLoop="selectedAutoLoop"
|
|
|
|
:isEmbed="isEmbed"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="uk-container uk-container-xlarge" v-if="video && !isEmbed">
|
2021-06-06 19:12:03 +00:00
|
|
|
<ErrorHandler v-if="video && video.error" :message="video.message" :error="video.error" />
|
2020-11-17 05:15:35 +00:00
|
|
|
|
2021-06-06 18:47:43 +00:00
|
|
|
<div v-show="!video.error">
|
2021-07-04 18:42:10 +00:00
|
|
|
<Player
|
|
|
|
ref="videoPlayer"
|
|
|
|
:video="video"
|
|
|
|
:sponsors="sponsors"
|
|
|
|
:selectedAutoPlay="selectedAutoPlay"
|
|
|
|
:selectedAutoLoop="selectedAutoLoop"
|
|
|
|
/>
|
2021-07-29 19:26:56 +00:00
|
|
|
<div class="uk-text-bold uk-margin-small-top uk-text-large uk-text-emphasis uk-text-break">
|
|
|
|
{{ video.title }}
|
|
|
|
</div>
|
2021-06-06 18:47:43 +00:00
|
|
|
|
2021-07-18 17:47:39 +00:00
|
|
|
<div class="uk-flex uk-flex-middle">
|
|
|
|
<div class="uk-margin-small-right">{{ addCommas(video.views) }} views</div>
|
|
|
|
<div class="uk-margin-small-right">{{ video.uploadDate }}</div>
|
|
|
|
<div class="uk-flex-1"></div>
|
|
|
|
<div class="uk-margin-small-left">
|
|
|
|
<font-awesome-icon class="uk-margin-small-right" icon="thumbs-up"></font-awesome-icon>
|
|
|
|
<b>{{ addCommas(video.likes) }}</b>
|
2021-06-30 20:26:04 +00:00
|
|
|
</div>
|
2021-07-18 17:47:39 +00:00
|
|
|
<div class="uk-margin-small-left">
|
|
|
|
<font-awesome-icon class="uk-margin-small-right" icon="thumbs-down"></font-awesome-icon>
|
|
|
|
<b>{{ addCommas(video.dislikes) }}</b>
|
2021-06-30 20:26:04 +00:00
|
|
|
</div>
|
2021-07-18 17:47:39 +00:00
|
|
|
<a
|
|
|
|
:href="'https://youtu.be/' + getVideoId()"
|
|
|
|
class="uk-margin-small-left uk-button uk-button-small"
|
|
|
|
style="background: #222"
|
|
|
|
>
|
2021-08-25 16:30:21 +00:00
|
|
|
<b>{{ $t("player.watch_on") }} </b>
|
2021-07-18 17:47:39 +00:00
|
|
|
<font-awesome-icon class="uk-margin-small-right" :icon="['fab', 'youtube']"></font-awesome-icon>
|
2021-08-08 11:18:35 +00:00
|
|
|
</a>
|
|
|
|
<a
|
|
|
|
v-if="video.lbryId"
|
|
|
|
:href="'https://odysee.com/' + video.lbryId"
|
|
|
|
class="uk-margin-small-left uk-button uk-button-small"
|
|
|
|
style="background: #222"
|
|
|
|
>
|
2021-08-25 16:30:21 +00:00
|
|
|
<b>{{ $t("player.watch_on") }} LBRY</b>
|
2021-07-18 17:47:39 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="uk-flex uk-flex-middle uk-margin-small-top">
|
|
|
|
<img :src="video.uploaderAvatar" loading="lazy" />
|
|
|
|
<router-link class="uk-text-bold uk-margin-small-left" v-if="video.uploaderUrl" :to="video.uploaderUrl">
|
|
|
|
<a>{{ video.uploader }}</a>
|
|
|
|
</router-link>
|
|
|
|
<div class="uk-flex-1"></div>
|
|
|
|
<button
|
|
|
|
v-if="authenticated"
|
|
|
|
@click="subscribeHandler"
|
|
|
|
class="uk-button uk-button-small"
|
|
|
|
style="background: #222"
|
|
|
|
type="button"
|
|
|
|
>
|
2021-08-25 16:30:21 +00:00
|
|
|
{{ subscribed ? $t("actions.unsubscribe") : $t("actions.subscribe") }}
|
2021-07-18 17:47:39 +00:00
|
|
|
</button>
|
2021-06-30 20:26:04 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2021-06-06 18:47:43 +00:00
|
|
|
<a class="uk-button uk-button-small" style="background: #222" @click="showDesc = !showDesc">
|
2021-07-18 17:47:39 +00:00
|
|
|
{{ showDesc ? "Minimize Description" : "Show Description" }}
|
2021-06-06 18:47:43 +00:00
|
|
|
</a>
|
2021-06-28 19:45:03 +00:00
|
|
|
<p v-show="showDesc" :style="[{ colour: foregroundColor }]" v-html="video.description"></p>
|
2021-07-18 17:47:39 +00:00
|
|
|
<div v-if="showDesc && sponsors && sponsors.segments">
|
|
|
|
Sponsors Segments: {{ sponsors.segments.length }}
|
|
|
|
</div>
|
2021-06-06 18:47:43 +00:00
|
|
|
</div>
|
2020-11-17 05:15:35 +00:00
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2021-07-04 18:42:10 +00:00
|
|
|
<b>Loop this Video:</b>
|
|
|
|
<input class="uk-checkbox" v-model="selectedAutoLoop" @change="onChange($event)" type="checkbox" />
|
|
|
|
<br />
|
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-08-26 13:59:05 +00:00
|
|
|
<div class="uk-width-4-5@xl uk-width-3-4@s uk-width-1" v-if="comments" ref="comments">
|
2021-05-25 19:46:21 +00:00
|
|
|
<div
|
|
|
|
class="uk-tile-default uk-align-left uk-width-expand"
|
2021-06-28 19:45:03 +00:00
|
|
|
:style="[{ background: backgroundColor }]"
|
2021-05-25 19:46:21 +00:00
|
|
|
v-bind:key="comment.commentId"
|
|
|
|
v-for="comment in comments.comments"
|
|
|
|
>
|
2021-07-21 10:19:51 +00:00
|
|
|
<Comment :comment="comment" :uploader="video.uploader" />
|
2021-05-25 19:46:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-08-26 13:59:05 +00:00
|
|
|
<div class="uk-width-1-5@xl uk-width-1-4@s uk-width-1 uk-flex-last@s uk-flex-first" v-if="video">
|
2021-05-25 19:46:21 +00:00
|
|
|
<div
|
|
|
|
class="uk-tile-default uk-width-auto"
|
2021-06-28 19:45:03 +00:00
|
|
|
:style="[{ background: backgroundColor }]"
|
2021-05-25 19:46:21 +00:00
|
|
|
v-bind:key="related.url"
|
|
|
|
v-for="related in video.relatedStreams"
|
|
|
|
>
|
2021-06-24 18:38:04 +00:00
|
|
|
<VideoItem :video="related" height="94" width="168" />
|
2021-05-25 19:46:21 +00:00
|
|
|
</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>
|
2021-04-01 15:13:35 +00:00
|
|
|
import Player from "@/components/Player.vue";
|
2021-06-24 18:38:04 +00:00
|
|
|
import VideoItem from "@/components/VideoItem.vue";
|
2021-06-06 18:47:43 +00:00
|
|
|
import ErrorHandler from "@/components/ErrorHandler.vue";
|
2021-07-21 10:19:51 +00:00
|
|
|
import Comment from "@/components/Comment.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-07-04 18:42:10 +00:00
|
|
|
selectedAutoLoop: false,
|
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,
|
2021-07-18 17:47:39 +00:00
|
|
|
subscribed: false,
|
|
|
|
channelId: null,
|
2021-07-20 21:48:35 +00:00
|
|
|
active: true,
|
2020-11-11 09:20:57 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2021-07-07 14:18:09 +00:00
|
|
|
this.getVideoData().then(() => {
|
2021-08-22 10:27:09 +00:00
|
|
|
(async () => {
|
|
|
|
if (window.db) {
|
|
|
|
var tx = window.db.transaction("watch_history", "readwrite");
|
|
|
|
var store = tx.objectStore("watch_history");
|
|
|
|
var video = {
|
|
|
|
videoId: this.getVideoId(),
|
|
|
|
title: this.video.title,
|
|
|
|
duration: this.video.duration,
|
|
|
|
thumbnail: this.video.thumbnailUrl,
|
|
|
|
uploaderUrl: this.video.uploaderUrl,
|
|
|
|
uploaderName: this.video.uploader,
|
|
|
|
watchedAt: Date.now(),
|
|
|
|
};
|
|
|
|
store.add(video);
|
|
|
|
}
|
|
|
|
})();
|
2021-07-20 21:48:35 +00:00
|
|
|
if (this.active) this.$refs.videoPlayer.loadVideo();
|
2021-07-07 14:18:09 +00:00
|
|
|
});
|
2020-11-11 09:20:57 +00:00
|
|
|
this.getSponsors();
|
2021-08-04 05:13:22 +00:00
|
|
|
if (!this.isEmbed && this.getPreferenceBoolean("comments", true)) this.getComments();
|
2021-07-07 14:18:09 +00:00
|
|
|
},
|
|
|
|
activated() {
|
2021-07-20 21:48:35 +00:00
|
|
|
this.active = true;
|
2021-07-07 14:18:09 +00:00
|
|
|
this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", true);
|
2021-07-30 09:03:16 +00:00
|
|
|
this.showDesc = !this.getPreferenceBoolean("minimizeDescription", false);
|
2021-07-21 10:59:53 +00:00
|
|
|
if (this.video.duration) {
|
|
|
|
document.title = this.video.title + " - Piped";
|
|
|
|
this.$refs.videoPlayer.loadVideo();
|
|
|
|
}
|
2021-05-26 08:10:22 +00:00
|
|
|
window.addEventListener("scroll", this.handleScroll);
|
|
|
|
},
|
2021-07-07 14:18:09 +00:00
|
|
|
deactivated() {
|
2021-07-20 21:48:35 +00:00
|
|
|
this.active = false;
|
2021-05-26 08:10:22 +00:00
|
|
|
window.removeEventListener("scroll", this.handleScroll);
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2021-02-24 09:35:41 +00:00
|
|
|
fetchVideo() {
|
2021-07-04 18:26:02 +00:00
|
|
|
return this.fetchJson(this.apiUrl() + "/streams/" + this.getVideoId());
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
|
|
|
async fetchSponsors() {
|
2021-07-04 18:26:02 +00:00
|
|
|
return await this.fetchJson(this.apiUrl() + "/sponsors/" + this.getVideoId(), {
|
2021-06-15 11:37:35 +00:00
|
|
|
category:
|
2021-07-03 19:24:09 +00:00
|
|
|
'["' +
|
|
|
|
this.getPreferenceString("selectedSkip", "sponsor,interaction,selfpromo,music_offtopic").replaceAll(
|
|
|
|
",",
|
|
|
|
'","',
|
|
|
|
) +
|
|
|
|
'"]',
|
2021-06-15 11:37:35 +00:00
|
|
|
});
|
2020-11-11 09:20:57 +00:00
|
|
|
},
|
2021-05-25 19:46:21 +00:00
|
|
|
fetchComments() {
|
2021-07-04 18:26:02 +00:00
|
|
|
return this.fetchJson(this.apiUrl() + "/comments/" + this.getVideoId());
|
2021-05-25 19:46:21 +00:00
|
|
|
},
|
2020-12-10 07:53:30 +00:00
|
|
|
onChange() {
|
2021-07-03 19:24:09 +00:00
|
|
|
this.setPreference("autoplay", this.selectedAutoPlay);
|
2020-12-10 07:53:30 +00:00
|
|
|
},
|
2020-11-11 09:20:57 +00:00
|
|
|
async getVideoData() {
|
2021-07-07 14:18:09 +00:00
|
|
|
await this.fetchVideo()
|
2021-02-24 09:35:41 +00:00
|
|
|
.then(data => {
|
|
|
|
this.video = data;
|
|
|
|
})
|
2020-11-11 09:20:57 +00:00
|
|
|
.then(() => {
|
2021-06-06 18:47:43 +00:00
|
|
|
if (!this.video.error) {
|
|
|
|
document.title = this.video.title + " - Piped";
|
2021-07-18 17:47:39 +00:00
|
|
|
this.channelId = this.video.uploaderUrl.split("/")[2];
|
2021-08-04 05:13:22 +00:00
|
|
|
if (!this.isEmbed) this.fetchSubscribedStatus();
|
2020-11-11 09:20:57 +00:00
|
|
|
|
2021-06-06 19:12:03 +00:00
|
|
|
this.video.description = this.purifyHTML(
|
|
|
|
this.video.description
|
|
|
|
.replaceAll("http://www.youtube.com", "")
|
|
|
|
.replaceAll("https://www.youtube.com", "")
|
|
|
|
.replaceAll("\n", "<br>"),
|
|
|
|
);
|
2021-06-06 18:47:43 +00:00
|
|
|
}
|
2020-11-11 09:20:57 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
async getSponsors() {
|
2021-07-03 19:24:09 +00:00
|
|
|
if (this.getPreferenceBoolean("sponsorblock", true))
|
2021-02-25 14:40:40 +00:00
|
|
|
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-07-18 17:47:39 +00:00
|
|
|
async fetchSubscribedStatus() {
|
2021-07-20 20:43:03 +00:00
|
|
|
if (!this.channelId || !this.authenticated) return;
|
2021-07-18 17:47:39 +00:00
|
|
|
|
|
|
|
this.fetchJson(
|
|
|
|
this.apiUrl() + "/subscribed",
|
|
|
|
{
|
|
|
|
channelId: this.channelId,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: {
|
|
|
|
Authorization: this.getAuthToken(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
).then(json => {
|
|
|
|
this.subscribed = json.subscribed;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
subscribeHandler() {
|
|
|
|
this.fetchJson(this.apiUrl() + (this.subscribed ? "/unsubscribe" : "/subscribe"), null, {
|
|
|
|
method: "POST",
|
|
|
|
body: JSON.stringify({
|
|
|
|
channelId: this.channelId,
|
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
Authorization: this.getAuthToken(),
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
this.subscribed = !this.subscribed;
|
|
|
|
},
|
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;
|
2021-07-04 18:26:02 +00:00
|
|
|
this.fetchJson(this.apiUrl() + "/nextpage/comments/" + this.getVideoId(), {
|
2021-07-29 19:26:56 +00:00
|
|
|
nextpage: this.comments.nextpage,
|
2021-06-15 11:37:35 +00:00
|
|
|
}).then(json => {
|
2021-05-26 08:10:22 +00:00
|
|
|
this.comments.nextpage = json.nextpage;
|
|
|
|
this.loading = false;
|
|
|
|
json.comments.map(comment => this.comments.comments.push(comment));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2021-06-07 17:38:19 +00:00
|
|
|
getVideoId() {
|
|
|
|
return this.$route.query.v || this.$route.params.v;
|
|
|
|
},
|
2021-04-01 15:13:35 +00:00
|
|
|
},
|
2021-08-04 05:13:22 +00:00
|
|
|
computed: {
|
|
|
|
isEmbed(_this) {
|
|
|
|
return String(_this.$route.path).indexOf("/embed/") == 0;
|
|
|
|
},
|
|
|
|
},
|
2021-04-01 15:13:35 +00:00
|
|
|
components: {
|
2021-04-07 11:45:40 +00:00
|
|
|
Player,
|
2021-06-24 18:38:04 +00:00
|
|
|
VideoItem,
|
2021-06-06 18:47:43 +00:00
|
|
|
ErrorHandler,
|
2021-07-21 10:59:53 +00:00
|
|
|
Comment,
|
2021-04-07 11:45:40 +00:00
|
|
|
},
|
2020-11-11 09:20:57 +00:00
|
|
|
};
|
|
|
|
</script>
|