Piped/src/components/WatchVideo.vue

351 lines
13 KiB
Vue
Raw Normal View History

2020-11-11 09:20:57 +00:00
<template>
<div v-if="video && isEmbed" class="absolute top-0 left-0 h-full w-full z-50">
2021-08-04 05:13:22 +00:00
<Player
ref="videoPlayer"
:video="video"
:sponsors="sponsors"
:selected-auto-play="false"
:selected-auto-loop="selectedAutoLoop"
:is-embed="isEmbed"
2021-08-04 05:13:22 +00:00
/>
</div>
2021-12-27 14:46:26 +00:00
<div v-if="video && !isEmbed" class="w-full">
<ErrorHandler v-if="video && video.error" :message="video.message" :error="video.error" />
2020-11-17 05:15:35 +00:00
<div v-show="!video.error">
2021-07-04 18:42:10 +00:00
<Player
ref="videoPlayer"
:video="video"
:sponsors="sponsors"
:selected-auto-play="selectedAutoPlay"
:selected-auto-loop="selectedAutoLoop"
2021-07-04 18:42:10 +00:00
/>
<div class="font-bold mt-2 text-2xl break-words">
{{ video.title }}
</div>
<div class="flex mb-1.5">
<span>{{ addCommas(video.views) }} views</span>
<span class="ml-2">{{ uploadDate }}</span>
<div class="flex items-center relative ml-auto children:ml-2">
<template v-if="video.likes >= 0">
<div>
<font-awesome-icon icon="thumbs-up"></font-awesome-icon>
2021-12-27 14:46:33 +00:00
<b class="ml-2">{{ addCommas(video.likes) }}</b>
</div>
<div>
<font-awesome-icon icon="thumbs-down"></font-awesome-icon>
2021-12-27 14:46:33 +00:00
<b class="ml-2">{{ video.dislikes >= 0 ? addCommas(video.dislikes) : "?" }}</b>
</div>
</template>
<template v-if="video.likes < 0">
<div>
<b v-t="'video.ratings_disabled'" />
</div>
</template>
<a :href="'https://youtu.be/' + getVideoId()" class="uk-margin-small-left btn">
<b>{{ $t("player.watch_on") }}&nbsp;</b>
<font-awesome-icon :icon="['fab', 'youtube']"></font-awesome-icon>
</a>
<a
v-if="video.lbryId"
:href="'https://odysee.com/' + video.lbryId"
class="uk-margin-small-left btn"
>
<b>{{ $t("player.watch_on") }} LBRY</b>
</a>
<router-link
:to="toggleListenUrl"
:aria-label="(isListening ? 'Watch ' : 'Listen to ') + video.title"
:title="(isListening ? 'Watch ' : 'Listen to ') + video.title"
class="uk-margin-small-left btn"
>
<font-awesome-icon :icon="isListening ? 'tv' : 'headphones'"></font-awesome-icon>
</router-link>
</div>
</div>
<div class="flex">
<div class="flex items-center">
<img :src="video.uploaderAvatar" alt="" loading="lazy" class="rounded-full" />
<router-link v-if="video.uploaderUrl" class="link" :to="video.uploaderUrl">
{{ video.uploader }} </router-link
><font-awesome-icon class="ml-1" v-if="video.uploaderVerified" icon="check"></font-awesome-icon>
</div>
<button v-if="authenticated" class="btn relative ml-auto" @click="subscribeHandler">
{{ subscribed ? $t("actions.unsubscribe") : $t("actions.subscribe") }}
</button>
2021-06-30 20:26:04 +00:00
</div>
<hr />
2021-12-27 14:46:36 +00:00
<button class="btn mb-2" @click="showDesc = !showDesc">
{{ showDesc ? $t("actions.minimize_description") : $t("actions.show_description") }}
2021-12-27 14:46:30 +00:00
</button>
<!-- eslint-disable-next-line vue/no-v-html -->
2021-12-27 14:46:34 +00:00
<p v-show="showDesc" class="break-words" v-html="purifyHTML(video.description)"></p>
<div v-if="showDesc && sponsors && sponsors.segments">
{{ $t("video.sponsor_segments") }}: {{ sponsors.segments.length }}
</div>
</div>
2020-11-17 05:15:35 +00:00
<hr />
<label for="chkAutoLoop"
><b>{{ $t("actions.loop_this_video") }}:</b></label
>&nbsp;
<input
id="chkAutoLoop"
v-model="selectedAutoLoop"
class="uk-checkbox"
type="checkbox"
@change="onChange($event)"
/>
2021-07-04 18:42:10 +00:00
<br />
<label for="chkAutoPlay"
><b>{{ $t("actions.auto_play_next_video") }}:</b></label
>&nbsp;
<input
id="chkAutoPlay"
v-model="selectedAutoPlay"
class="uk-checkbox"
type="checkbox"
@change="onChange($event)"
/>
2020-12-10 07:53:30 +00:00
<hr />
2021-12-27 14:46:26 +00:00
<div class="grid xl:grid-cols-5 sm:grid-cols-4 grid-cols-1">
<div v-if="comments" ref="comments" class="xl:col-span-4 sm:col-span-3">
<Comment
v-for="comment in comments.comments"
:key="comment.commentId"
:comment="comment"
:uploader="video.uploader"
:video-id="getVideoId()"
/>
</div>
<div v-if="video" class="order-first sm:order-last">
<a class="btn mb-2 sm:hidden" @click="showRecs = !showRecs">
{{ showRecs ? $t("actions.minimize_recommendations") : $t("actions.show_recommendations") }}
</a>
<div
v-for="related in video.relatedStreams"
v-show="showRecs || !smallView"
:key="related.url"
2021-12-27 14:46:29 +00:00
class="uk-tile-default w-auto"
>
2021-06-24 18:38:04 +00:00
<VideoItem :video="related" height="94" width="168" />
</div>
2021-12-27 14:46:26 +00:00
<hr class="sm:hidden" />
</div>
2020-11-17 05:15:35 +00:00
</div>
</div>
2020-11-11 09:20:57 +00:00
</template>
<script>
import Player from "@/components/Player.vue";
2021-06-24 18:38:04 +00:00
import VideoItem from "@/components/VideoItem.vue";
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",
components: {
Player,
VideoItem,
ErrorHandler,
Comment,
},
2020-11-11 09:20:57 +00:00
data() {
const smallViewQuery = window.matchMedia("(max-width: 640px)");
2020-11-11 09:20:57 +00:00
return {
video: {
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,
selectedAutoPlay: null,
showDesc: true,
showRecs: true,
comments: null,
subscribed: false,
channelId: null,
active: true,
smallViewQuery: smallViewQuery,
smallView: smallViewQuery.matches,
2020-11-11 09:20:57 +00:00
};
},
computed: {
isListening(_this) {
return _this.getPreferenceBoolean("listen", false);
},
toggleListenUrl(_this) {
const url = new URL(window.location.href);
url.searchParams.set("listen", _this.isListening ? "0" : "1");
return url.href;
},
isEmbed(_this) {
return String(_this.$route.path).indexOf("/embed/") == 0;
},
uploadDate(_this) {
return new Date(_this.video.uploadDate).toLocaleString(undefined, {
month: "short",
day: "numeric",
year: "numeric",
});
},
},
2020-11-11 09:20:57 +00:00
mounted() {
this.getVideoData().then(() => {
(async () => {
const videoId = this.getVideoId();
const instance = this;
2021-10-31 18:36:47 +00:00
if (window.db && !this.video.error) {
var tx = window.db.transaction("watch_history", "readwrite");
var store = tx.objectStore("watch_history");
var request = store.get(videoId);
request.onsuccess = function(event) {
var video = event.target.result;
if (video) {
video.watchedAt = Date.now();
} else {
video = {
videoId: videoId,
title: instance.video.title,
duration: instance.video.duration,
thumbnail: instance.video.thumbnailUrl,
uploaderUrl: instance.video.uploaderUrl,
uploaderName: instance.video.uploader,
watchedAt: Date.now(),
};
}
store.put(video);
};
}
})();
if (this.active) this.$refs.videoPlayer.loadVideo();
});
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();
window.addEventListener("resize", () => {
this.smallView = this.smallViewQuery.matches;
});
},
activated() {
this.active = true;
this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", false);
this.showDesc = !this.getPreferenceBoolean("minimizeDescription", false);
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);
},
deactivated() {
this.active = false;
2021-05-26 08:10:22 +00:00
window.removeEventListener("scroll", this.handleScroll);
2020-11-11 09:20:57 +00:00
},
2021-09-05 21:01:26 +00:00
unmounted() {
window.removeEventListener("scroll", this.handleScroll);
},
2020-11-11 09:20:57 +00:00
methods: {
2021-02-24 09:35:41 +00:00
fetchVideo() {
return this.fetchJson(this.apiUrl() + "/streams/" + this.getVideoId());
2020-11-11 09:20:57 +00:00
},
async fetchSponsors() {
return await this.fetchJson(this.apiUrl() + "/sponsors/" + this.getVideoId(), {
category:
'["' +
this.getPreferenceString("selectedSkip", "sponsor,interaction,selfpromo,music_offtopic").replaceAll(
",",
'","',
) +
'"]',
});
2020-11-11 09:20:57 +00:00
},
fetchComments() {
return this.fetchJson(this.apiUrl() + "/comments/" + this.getVideoId());
},
2020-12-10 07:53:30 +00:00
onChange() {
this.setPreference("autoplay", this.selectedAutoPlay);
2020-12-10 07:53:30 +00:00
},
2020-11-11 09:20:57 +00:00
async getVideoData() {
await this.fetchVideo()
2021-02-24 09:35:41 +00:00
.then(data => {
this.video = data;
this.video.id = this.getVideoId();
2021-02-24 09:35:41 +00:00
})
2020-11-11 09:20:57 +00:00
.then(() => {
if (!this.video.error) {
document.title = this.video.title + " - Piped";
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
this.video.description = this.video.description
.replaceAll("http://www.youtube.com", "")
.replaceAll("https://www.youtube.com", "")
.replaceAll("\n", "<br>");
}
2020-11-11 09:20:57 +00:00
});
},
async getSponsors() {
if (this.getPreferenceBoolean("sponsorblock", true))
2021-02-25 14:40:40 +00:00
this.fetchSponsors().then(data => (this.sponsors = data));
},
async getComments() {
this.fetchComments().then(data => (this.comments = data));
},
async fetchSubscribedStatus() {
if (!this.channelId || !this.authenticated) return;
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;
this.fetchJson(this.apiUrl() + "/nextpage/comments/" + this.getVideoId(), {
nextpage: this.comments.nextpage,
}).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));
});
}
},
getVideoId() {
return this.$route.query.v || this.$route.params.v;
},
},
2020-11-11 09:20:57 +00:00
};
</script>