Piped/src/components/WatchVideo.vue

349 lines
14 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">
<VideoPlayer
2021-08-04 05:13:22 +00:00
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">
<VideoPlayer
2021-07-04 18:42:10 +00:00
ref="videoPlayer"
:video="video"
:sponsors="sponsors"
:selected-auto-play="selectedAutoPlay"
:selected-auto-loop="selectedAutoLoop"
2021-07-04 18:42:10 +00:00
/>
2021-12-27 16:29:25 +00:00
<div class="font-bold mt-2 text-2xl break-words" v-text="video.title" />
<div class="flex mb-1.5">
2021-12-27 16:29:25 +00:00
<span v-text="`${addCommas(video.views)} views`" />
<span class="ml-2" v-text="uploadDate" />
<div class="flex items-center relative ml-auto children:ml-2">
<template v-if="video.likes >= 0">
<div>
2021-12-27 22:33:55 +00:00
<font-awesome-icon icon="thumbs-up" />
2021-12-27 16:29:25 +00:00
<strong class="ml-2" v-text="addCommas(video.likes)" />
</div>
<div>
2021-12-27 22:33:55 +00:00
<font-awesome-icon icon="thumbs-down" />
2021-12-27 16:29:25 +00:00
<strong class="ml-2" v-text="video.dislikes >= 0 ? addCommas(video.dislikes) : '?'" />
</div>
</template>
<template v-if="video.likes < 0">
<div>
<strong v-t="'video.ratings_disabled'" />
</div>
</template>
2021-12-27 16:29:25 +00:00
<a :href="`https://youtu.be/${getVideoId()}`" class="btn">
<strong v-text="$t('player.watch_on')" />
2021-12-27 22:33:55 +00:00
<font-awesome-icon class="ml-1.5" :icon="['fab', 'youtube']" />
</a>
<a v-if="video.lbryId" :href="'https://odysee.com/' + video.lbryId" class="btn">
2021-12-27 16:29:25 +00:00
<strong v-text="`${$t('player.watch_on')} LBRY`" />
</a>
<router-link
:to="toggleListenUrl"
:aria-label="(isListening ? 'Watch ' : 'Listen to ') + video.title"
:title="(isListening ? 'Watch ' : 'Listen to ') + video.title"
class="btn"
>
2021-12-27 22:33:55 +00:00
<font-awesome-icon :icon="isListening ? 'tv' : 'headphones'" />
</router-link>
</div>
</div>
<div class="flex">
<div class="flex items-center">
<img :src="video.uploaderAvatar" alt="" loading="lazy" class="rounded-full" />
2021-12-27 16:29:25 +00:00
<router-link
v-if="video.uploaderUrl"
class="link ml-1.5"
:to="video.uploaderUrl"
v-text="video.uploader"
2021-12-27 22:33:55 +00:00
/>
<font-awesome-icon class="ml-1" v-if="video.uploaderVerified" icon="check" />
</div>
2021-12-27 16:29:25 +00:00
<button
v-if="authenticated"
class="btn relative ml-auto"
@click="subscribeHandler"
v-text="$t(`actions.${subscribed ? 'unsubscribe' : 'subscribe'}`)"
/>
2021-06-30 20:26:04 +00:00
</div>
<hr />
2021-12-27 16:29:25 +00:00
<button
class="btn mb-2"
@click="showDesc = !showDesc"
v-text="$t(`actions.${showDesc ? 'minimize_description' : 'show_description'}`)"
/>
<!-- eslint-disable-next-line vue/no-v-html -->
2021-12-27 22:33:55 +00:00
<p v-show="showDesc" class="break-words" v-html="purifyHTML(video.description)" />
<Chapters :chapters="video.chapters" @seek="navigate" />
2021-12-27 16:29:25 +00:00
<div
v-if="showDesc && sponsors && sponsors.segments"
v-text="`${$t('video.sponsor_segments')}: ${sponsors.segments.length}`"
/>
</div>
2020-11-17 05:15:35 +00:00
<hr />
2021-12-27 16:29:25 +00:00
<label for="chkAutoLoop"><strong v-text="`${$t('actions.loop_this_video')}:`" /></label>
<input id="chkAutoLoop" v-model="selectedAutoLoop" class="ml-1.5" type="checkbox" @change="onChange($event)" />
2021-07-04 18:42:10 +00:00
<br />
2021-12-27 16:29:25 +00:00
<label for="chkAutoPlay"><strong v-text="`${$t('actions.auto_play_next_video')}:`" /></label>
<input id="chkAutoPlay" v-model="selectedAutoPlay" class="ml-1.5" 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">
<CommentItem
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">
2021-12-27 16:29:25 +00:00
<a
class="btn mb-2 sm:hidden"
@click="showRecs = !showRecs"
v-text="$t(`actions.${showRecs ? 'minimize_recommendations' : 'show_recommendations'}`)"
/>
2022-01-12 22:17:22 +00:00
<hr v-show="showRecs" />
<div v-show="showRecs || !smallView">
<VideoItem
v-for="related in video.relatedStreams"
:key="related.url"
: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 VideoPlayer from "@/components/VideoPlayer.vue";
2021-06-24 18:38:04 +00:00
import VideoItem from "@/components/VideoItem.vue";
import ErrorHandler from "@/components/ErrorHandler.vue";
import CommentItem from "@/components/CommentItem.vue";
import Chapters from "@/components/Chapters.vue";
2020-11-11 09:20:57 +00:00
export default {
name: "App",
components: {
VideoPlayer,
VideoItem,
ErrorHandler,
CommentItem,
Chapters,
},
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);
2022-01-01 14:53:55 +00:00
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;
},
navigate(time) {
this.$refs.videoPlayer.seek(time);
},
},
2020-11-11 09:20:57 +00:00
};
</script>