VueTube/NUXT/pages/watch.vue

446 lines
13 KiB
Vue
Raw Normal View History

2022-02-24 22:29:34 +00:00
<template>
<div class="background" id="watch-body">
2022-04-18 05:58:59 +00:00
<div id="player-container">
<!-- Stock Player -->
<videoPlayer
:vid-src="vidSrc"
ref="player"
v-if="useBetaPlayer !== 'true'"
2022-03-21 00:30:59 +00:00
/>
<!-- VueTube Player V1 -->
<vuetubePlayer :sources="sources" v-if="useBetaPlayer === 'true'" />
</div>
2022-04-18 05:58:59 +00:00
<div
v-bind:class="{
'overflow-y-auto': !showComments,
'overflow-y-hidden': showComments,
}"
id="content-container"
>
<v-card v-if="loaded" class="ml-2 mr-2 background" flat>
<v-card-title
class="mt-2"
style="
padding-top: 0;
padding-bottom: 0;
font-size: 0.95rem;
line-height: 1rem;
"
v-text="video.title"
2022-04-13 10:15:26 +00:00
v-emoji
/>
<v-card-text>
<div style="margin-bottom: 1rem">
<template
v-for="text in video.metadata.contents.find(
(content) => content.slimVideoInformationRenderer
).slimVideoInformationRenderer.collapsedSubtitle.runs"
>{{ text.text }}</template
>
</div>
<!-- Scrolling Div For Interactions --->
<div style="display: flex; margin-bottom: 1em">
<v-list-item
v-for="(item, index) in interactions"
:key="index"
style="padding: 0; flex: 0 0 20%"
>
<v-btn
text
class="vertical-button"
style="padding: 0; margin: 0"
elevation="0"
:disabled="item.disabled"
@click="callMethodByName(item.actionName)"
>
<v-icon v-text="item.icon" />
<div
class="mt-2"
style="font-size: 0.66rem"
v-text="item.value || item.name"
/>
</v-btn>
</v-list-item>
<v-spacer />
<v-btn text @click="showMore = !showMore">
<v-icon v-if="showMore">mdi-chevron-up</v-icon>
<v-icon v-else>mdi-chevron-down</v-icon>
</v-btn>
</div>
<!-- End Scrolling Div For Interactions --->
<!-- <hr /> -->
</v-card-text>
<!-- <v-bottom-sheet
v-model="showMore"
color="background"
style="z-index: 9999999"
>
<v-sheet style="padding: 12px">
<v-btn block @click="showMore = !showMore"
><v-icon>mdi-chevron-down</v-icon></v-btn
><br />
<slim-video-description-renderer
class="scroll-y"
:render="video.renderedData.description"
/>
</v-sheet>
</v-bottom-sheet> -->
<!-- <v-bottom-sheet v-model="share" color="background" style="z-index: 9999999">
<v-sheet style="padding: 1em">
<div class="scroll-y">
{{ response.renderedData.description }}
</div>
</v-sheet>
</v-bottom-sheet> -->
</v-card>
<v-divider />
<!-- Channel Bar -->
<div class="channel-container" v-if="loaded">
<v-card class="channel-section background" :to="video.channelUrl">
<div id="details">
<div class="avatar-link mr-3">
<v-img class="avatar-thumbnail" :src="video.channelImg" />
</div>
2022-04-13 10:15:26 +00:00
<div class="channel-byline" v-emoji>
<div class="channel-name" v-text="video.channelName" />
<div
class="caption background--text"
:class="
$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'
"
v-text="video.channelSubs"
/>
</div>
</div>
<div
class="channel-buttons"
style="color: rgb(204, 0, 0); text-transform: uppercase"
>
subscribe
2022-03-20 18:42:12 +00:00
</div>
</v-card>
<v-divider />
</div>
<!-- Description -->
<div class="description-container" v-if="showMore">
<div class="scroll-y ma-4">
<slim-video-description-renderer
:render="video.renderedData.description"
/>
</div>
<v-divider />
</div>
<!-- Comments -->
2022-04-14 04:22:02 +00:00
<div class="comment-container" v-if="loaded && video.commentData">
<v-btn
class="background comment-renderer text-none"
@click="showComments = !showComments"
block
large
>
<v-text class="comment-count keep-spaces">
<template v-for="text in video.commentData.headerText.runs">
<template v-if="text.bold">
<strong :key="text.text">{{ text.text }}</strong>
</template>
<template v-else>{{ text.text }}</template>
</template>
</v-text>
<v-icon>mdi-unfold-more-horizontal</v-icon>
2022-04-14 04:22:02 +00:00
</v-btn>
<v-divider />
</div>
2022-04-09 06:20:51 +00:00
2022-04-18 05:58:59 +00:00
<swipeable-bottom-sheet
2022-04-13 12:54:06 +00:00
v-model="showComments"
hide-overlay
2022-04-18 05:58:59 +00:00
persistent
no-click-animation
attach="#content-container"
v-if="loaded && video.commentData"
2022-04-13 12:54:06 +00:00
>
2022-04-19 14:03:46 +00:00
<mainCommentRenderer
:continuation="video.commentContinuation"
:commentData="video.commentData"
v-model="showComments"
></mainCommentRenderer>
2022-04-18 05:58:59 +00:00
</swipeable-bottom-sheet>
2022-04-14 04:22:02 +00:00
2022-04-18 05:58:59 +00:00
<!-- <swipeable-bottom-sheet
2022-04-14 04:22:02 +00:00
:v-model="showComments"
style="z-index: 9999999"
2022-04-18 05:58:59 +00:00
></swipeable-bottom-sheet> -->
2022-04-13 12:54:06 +00:00
<!-- Related Videos -->
<div class="loaders" v-if="!loaded">
<v-skeleton-loader
type="list-item-two-line, actions, divider, list-item-avatar, divider, list-item-three-line"
/>
<vid-load-renderer :count="5" />
</div>
<item-section-renderer v-else :render="recommends" />
</div>
2022-02-24 22:29:34 +00:00
</div>
</template>
<script>
2022-03-22 05:47:28 +00:00
import { Share } from "@capacitor/share";
2022-03-24 20:46:17 +00:00
import VidLoadRenderer from "~/components/vidLoadRenderer.vue";
import { getCpn } from "~/plugins/utils";
import SlimVideoDescriptionRenderer from "~/components/UtilRenderers/slimVideoDescriptionRenderer.vue";
import ItemSectionRenderer from "~/components/SectionRenderers/itemSectionRenderer.vue";
import vuetubePlayer from "~/components/Player/index.vue";
2022-04-09 02:28:08 +00:00
import ShelfRenderer from "~/components/SectionRenderers/shelfRenderer.vue";
2022-04-19 14:03:46 +00:00
import mainCommentRenderer from "~/components/Comments/mainCommentRenderer.vue";
2022-04-18 05:58:59 +00:00
import SwipeableBottomSheet from "~/components/ExtendedComponents/swipeableBottomSheet";
2022-03-22 05:47:28 +00:00
2022-02-24 22:29:34 +00:00
export default {
components: {
ShelfRenderer,
VidLoadRenderer,
SlimVideoDescriptionRenderer,
vuetubePlayer,
ItemSectionRenderer,
2022-04-14 04:22:02 +00:00
SwipeableBottomSheet,
2022-04-19 14:03:46 +00:00
mainCommentRenderer,
},
data: function () {
return this.initializeState();
},
2022-03-25 03:25:51 +00:00
watch: {
// Watch for change in the route query string (in this case, ?v=xxxxxxxx to ?v=yyyyyyyy)
$route: {
deep: true,
handler(newRt, oldRt) {
if (newRt.query.v && newRt.query.v != oldRt.query.v) {
2022-03-25 03:25:51 +00:00
// Exit fullscreen if currently in fullscreen
// if (this.$refs.player) this.$refs.player.webkitExitFullscreen();
2022-03-25 03:25:51 +00:00
// Reset player and run getVideo function again
// this.vidSrc = "";
// this.startTime = Math.floor(Date.now() / 1000);
// this.getVideo();
clearInterval(this.interval);
Object.assign(this.$data, this.initializeState());
this.mountedInit();
2022-03-25 03:25:51 +00:00
}
},
},
},
2022-04-19 14:03:46 +00:00
2022-03-13 23:21:41 +00:00
mounted() {
this.mountedInit();
},
2022-04-19 14:03:46 +00:00
beforeDestroy() {
clearInterval(this.interval);
},
2022-04-19 14:03:46 +00:00
methods: {
getVideo() {
this.loaded = false;
this.$youtube.getVid(this.$route.query.v).then((result) => {
this.video = result;
console.log("Video info data", result);
console.log(result.availableResolutions);
//--- VueTube Player v1 ---//
this.sources = result.availableResolutions;
//--- Legacy Player ---//
this.vidSrc =
result.availableResolutions[
result.availableResolutions.length - 1
].url; // Takes the highest available resolution with both video and Audio. Note this will be lower than the actual highest resolution
//--- Content Stuff ---//
this.likes = result.metadata.likes.toLocaleString();
this.interactions[0].value = result.metadata.likes.toLocaleString();
this.loaded = true;
this.recommends = result.renderedData.recommendations;
// .catch((error) => this.$logger("Watch", error, true));
console.log("recommendations:", this.recommends);
//--- API WatchTime call ---//
this.playbackTracking = result.playbackTracking;
this.st = 0;
this.cpn = getCpn();
this.initWatchTime().then(() => {
this.sendWatchTime();
this.interval = setInterval(this.sendWatchTime, 30000);
});
});
2022-03-19 06:18:07 +00:00
this.$youtube.getReturnYoutubeDislike(this.$route.query.v, (data) => {
this.dislikes = data.dislikes.toLocaleString();
this.interactions[1].value = data.dislikes.toLocaleString();
});
},
2022-03-22 05:47:28 +00:00
callMethodByName(name) {
// Helper function needed because of issues when directly calling method
// using item.action in the v-for loop
this[name]();
},
2022-03-21 23:47:11 +00:00
dislike() {},
2022-03-22 05:47:28 +00:00
async share() {
// this.share = !this.share;
await Share.share({
title: this.video.title,
text: this.video.title,
url: "https://youtu.be/" + this.$route.query.v,
dialogTitle: "Share video",
2022-03-22 05:47:28 +00:00
});
},
sendWatchTime() {
const player = this.$refs.player.getPlayer();
const rt = Math.floor(Date.now() / 1000) - this.startTime;
const params = {
cpn: this.cpn,
rt: rt,
rti: rt,
rtn: rt,
cmt: player.currentTime,
et: player.currentTime,
st: this.st,
state: player.paused ? "paused" : "playing",
volume: 100,
muted: 0,
fmt: 396,
};
this.st = player.currentTime;
this.$youtube.saveApiStats(
params,
this.playbackTracking.videostatsWatchtimeUrl.baseUrl
);
},
async initWatchTime() {
await this.$youtube.saveApiStats(
{
cpn: this.cpn,
fmt: 243,
rtn: Math.floor(Date.now() / 1000) - this.startTime,
rt: Math.floor(Date.now() / 1000) - this.startTime,
fmt: 243,
muted: 0,
},
this.playbackTracking.videostatsPlaybackUrl.baseUrl
);
},
initializeState() {
return {
interactions: [
{
name: "Likes",
icon: "mdi-thumb-up-outline",
// action: null,
value: this.likes,
disabled: true,
},
{
name: "Dislikes",
icon: "mdi-thumb-down-outline",
// action: this.dislike(),
actionName: "dislike",
value: this.dislikes,
disabled: true,
},
{
name: "Share",
icon: "mdi-share-outline",
// action: this.share(),
actionName: "share",
disabled: false,
},
],
showMore: false,
2022-04-13 12:54:06 +00:00
showComments: false,
// share: false,
vidSrc: null,
sources: [],
recommends: null,
loaded: false,
interval: null,
video: null,
useBetaPlayer: false,
};
},
mountedInit() {
this.startTime = Math.floor(Date.now() / 1000);
this.getVideo();
this.useBetaPlayer = localStorage.getItem("debug.BetaPlayer");
// Reset vertical scrolling
const scrollableList = document.querySelectorAll(".overflow-y-auto");
scrollableList.forEach((scrollable) => {
scrollable.scrollTo(0, 0);
});
},
2022-03-21 23:47:11 +00:00
},
};
2022-02-24 22:29:34 +00:00
</script>
<style>
#watch-body {
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
}
2022-04-18 05:58:59 +00:00
#content-container {
height: 100%;
2022-04-18 05:58:59 +00:00
position: relative;
}
.vertical-button span.v-btn__content {
flex-direction: column;
justify-content: space-around;
}
.channel-section,
2022-04-09 06:20:51 +00:00
.comment-renderer {
display: flex;
align-items: center;
padding: 12px;
}
2022-04-09 06:20:51 +00:00
.channel-section #details,
.comment-renderer .comment-count {
flex-grow: 1;
display: flex;
align-items: center;
min-width: 0;
}
.channel-section .channel-byline {
min-width: 0;
}
.channel-section .avatar-thumbnail {
border-radius: 50%;
width: 35px;
height: 35px;
}
.channel-section .channel-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2022-04-09 06:20:51 +00:00
.keep-spaces {
white-space: pre-wrap;
}
</style>