2020-11-11 09:20:57 +00:00
|
|
|
<template>
|
2021-10-08 18:52:51 +00:00
|
|
|
<div v-if="video && isEmbed" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 999">
|
2021-08-04 05:13:22 +00:00
|
|
|
<Player
|
|
|
|
ref="videoPlayer"
|
|
|
|
:video="video"
|
|
|
|
:sponsors="sponsors"
|
2021-10-08 18:52:51 +00:00
|
|
|
:selected-auto-play="false"
|
|
|
|
:selected-auto-loop="selectedAutoLoop"
|
|
|
|
:is-embed="isEmbed"
|
2021-08-04 05:13:22 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2021-10-28 18:21:28 +00:00
|
|
|
<div v-if="video && !isEmbed" class="uk-container uk-container-expand">
|
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"
|
2021-10-27 00:15:37 +00:00
|
|
|
:video-id="getVideoId()"
|
2021-07-04 18:42:10 +00:00
|
|
|
:sponsors="sponsors"
|
2021-10-08 18:52:51 +00:00
|
|
|
:selected-auto-play="selectedAutoPlay"
|
|
|
|
:selected-auto-loop="selectedAutoLoop"
|
2021-07-04 18:42:10 +00:00
|
|
|
/>
|
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>
|
2021-10-08 16:52:55 +00:00
|
|
|
<div class="uk-margin-small-right">{{ uploadDate }}</div>
|
2021-07-18 17:47:39 +00:00
|
|
|
<div class="uk-flex-1"></div>
|
2021-10-23 21:20:26 +00:00
|
|
|
<template v-if="video.likes >= 0 && video.dislikes >= 0">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-if="video.likes < 0 && video.dislikes < 0">
|
|
|
|
<div class="uk-margin-small-left">
|
|
|
|
<b v-t="'video.ratings_disabled'" />
|
|
|
|
</div>
|
|
|
|
</template>
|
2021-10-31 18:36:47 +00:00
|
|
|
<a :href="'https://youtu.be/' + getVideoId()" class="uk-margin-small-left uk-button uk-button-small">
|
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"
|
|
|
|
>
|
2021-08-25 16:30:21 +00:00
|
|
|
<b>{{ $t("player.watch_on") }} LBRY</b>
|
2021-07-18 17:47:39 +00:00
|
|
|
</a>
|
2021-10-07 22:43:48 +00:00
|
|
|
<router-link
|
|
|
|
:to="toggleListenUrl"
|
|
|
|
:aria-label="(isListening ? 'Watch ' : 'Listen to ') + video.title"
|
|
|
|
:title="(isListening ? 'Watch ' : 'Listen to ') + video.title"
|
|
|
|
class="uk-margin-small-left uk-button uk-button-small"
|
|
|
|
>
|
2021-10-17 14:18:51 +00:00
|
|
|
<font-awesome-icon :icon="isListening ? 'tv' : 'headphones'"></font-awesome-icon>
|
2021-10-07 22:43:48 +00:00
|
|
|
</router-link>
|
2021-07-18 17:47:39 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="uk-flex uk-flex-middle uk-margin-small-top">
|
2021-09-21 21:58:25 +00:00
|
|
|
<img :src="video.uploaderAvatar" alt="" loading="lazy" class="uk-border-circle" />
|
2021-10-08 18:52:51 +00:00
|
|
|
<router-link v-if="video.uploaderUrl" class="uk-link uk-margin-small-left" :to="video.uploaderUrl">
|
2021-09-04 21:50:14 +00:00
|
|
|
{{ video.uploader }} </router-link
|
|
|
|
> <font-awesome-icon v-if="video.uploaderVerified" icon="check"></font-awesome-icon>
|
2021-07-18 17:47:39 +00:00
|
|
|
<div class="uk-flex-1"></div>
|
2021-10-31 18:36:47 +00:00
|
|
|
<button v-if="authenticated" class="uk-button uk-button-small" type="button" @click="subscribeHandler">
|
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-10-31 18:36:47 +00:00
|
|
|
<a class="uk-button uk-button-small" @click="showDesc = !showDesc">
|
2021-09-05 13:08:26 +00:00
|
|
|
{{ showDesc ? $t("actions.minimize_description") : $t("actions.show_description") }}
|
2021-06-06 18:47:43 +00:00
|
|
|
</a>
|
2021-10-08 18:52:51 +00:00
|
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
|
|
<p v-show="showDesc" :style="[{ colour: foregroundColor }]" v-html="purifyHTML(video.description)"></p>
|
2021-07-18 17:47:39 +00:00
|
|
|
<div v-if="showDesc && sponsors && sponsors.segments">
|
2021-09-05 13:08:26 +00:00
|
|
|
{{ $t("video.sponsor_segments") }}: {{ sponsors.segments.length }}
|
2021-07-18 17:47:39 +00:00
|
|
|
</div>
|
2021-06-06 18:47:43 +00:00
|
|
|
</div>
|
2020-11-17 05:15:35 +00:00
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2021-09-21 21:48:55 +00:00
|
|
|
<label for="chkAutoLoop"
|
|
|
|
><b>{{ $t("actions.loop_this_video") }}:</b></label
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
id="chkAutoLoop"
|
|
|
|
v-model="selectedAutoLoop"
|
2021-10-08 18:52:51 +00:00
|
|
|
class="uk-checkbox"
|
2021-09-21 21:48:55 +00:00
|
|
|
type="checkbox"
|
2021-10-08 18:52:51 +00:00
|
|
|
@change="onChange($event)"
|
2021-09-21 21:48:55 +00:00
|
|
|
/>
|
2021-07-04 18:42:10 +00:00
|
|
|
<br />
|
2021-09-21 21:48:55 +00:00
|
|
|
<label for="chkAutoPlay"
|
|
|
|
><b>{{ $t("actions.auto_play_next_video") }}:</b></label
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
id="chkAutoPlay"
|
|
|
|
v-model="selectedAutoPlay"
|
2021-10-08 18:52:51 +00:00
|
|
|
class="uk-checkbox"
|
2021-09-21 21:48:55 +00:00
|
|
|
type="checkbox"
|
2021-10-08 18:52:51 +00:00
|
|
|
@change="onChange($event)"
|
2021-09-21 21:48:55 +00:00
|
|
|
/>
|
2020-12-10 07:53:30 +00:00
|
|
|
|
2021-05-25 19:46:21 +00:00
|
|
|
<hr />
|
|
|
|
|
2021-10-31 17:44:36 +00:00
|
|
|
<div class="uk-grid">
|
2021-10-08 18:52:51 +00:00
|
|
|
<div v-if="comments" ref="comments" class="uk-width-4-5@xl uk-width-3-4@s uk-width-1">
|
2021-05-25 19:46:21 +00:00
|
|
|
<div
|
2021-10-08 18:52:51 +00:00
|
|
|
v-for="comment in comments.comments"
|
|
|
|
:key="comment.commentId"
|
2021-05-25 19:46:21 +00:00
|
|
|
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
|
|
|
>
|
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-10-08 18:52:51 +00:00
|
|
|
<div v-if="video" class="uk-width-1-5@xl uk-width-1-4@s uk-width-1 uk-flex-last@s uk-flex-first">
|
2021-10-31 18:36:47 +00:00
|
|
|
<a class="uk-button uk-button-small uk-margin-small-bottom uk-hidden@s" @click="showRecs = !showRecs">
|
2021-10-04 00:08:25 +00:00
|
|
|
{{ showRecs ? $t("actions.minimize_recommendations") : $t("actions.show_recommendations") }}
|
|
|
|
</a>
|
2021-05-25 19:46:21 +00:00
|
|
|
<div
|
2021-10-08 18:52:51 +00:00
|
|
|
v-for="related in video.relatedStreams"
|
2021-10-04 00:08:25 +00:00
|
|
|
v-show="showRecs || !smallView"
|
2021-10-08 18:52:51 +00:00
|
|
|
:key="related.url"
|
2021-05-25 19:46:21 +00:00
|
|
|
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
|
|
|
>
|
2021-06-24 18:38:04 +00:00
|
|
|
<VideoItem :video="related" height="94" width="168" />
|
2021-05-25 19:46:21 +00:00
|
|
|
</div>
|
2021-10-07 22:43:48 +00:00
|
|
|
<hr class="uk-hidden@s" />
|
2021-05-25 19:46:21 +00:00
|
|
|
</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",
|
2021-10-08 18:52:51 +00:00
|
|
|
components: {
|
|
|
|
Player,
|
|
|
|
VideoItem,
|
|
|
|
ErrorHandler,
|
|
|
|
Comment,
|
|
|
|
},
|
2020-11-11 09:20:57 +00:00
|
|
|
data() {
|
2021-10-04 00:08:25 +00:00
|
|
|
const smallViewQuery = window.matchMedia("(max-width: 640px)");
|
2020-11-11 09:20:57 +00:00
|
|
|
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-10-04 00:08:25 +00:00
|
|
|
showRecs: 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,
|
2021-10-04 00:08:25 +00:00
|
|
|
smallViewQuery: smallViewQuery,
|
|
|
|
smallView: smallViewQuery.matches,
|
2020-11-11 09:20:57 +00:00
|
|
|
};
|
|
|
|
},
|
2021-10-08 18:52:51 +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() {
|
2021-07-07 14:18:09 +00:00
|
|
|
this.getVideoData().then(() => {
|
2021-08-22 10:27:09 +00:00
|
|
|
(async () => {
|
2021-10-26 23:49:56 +00:00
|
|
|
const videoId = this.getVideoId();
|
|
|
|
const instance = this;
|
2021-10-31 18:36:47 +00:00
|
|
|
if (window.db && !this.video.error) {
|
2021-08-22 10:27:09 +00:00
|
|
|
var tx = window.db.transaction("watch_history", "readwrite");
|
|
|
|
var store = tx.objectStore("watch_history");
|
2021-10-26 23:49:56 +00:00
|
|
|
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);
|
2021-08-22 10:27:09 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
})();
|
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-10-04 00:08:25 +00:00
|
|
|
window.addEventListener("resize", () => {
|
|
|
|
this.smallView = this.smallViewQuery.matches;
|
|
|
|
});
|
2021-07-07 14:18:09 +00:00
|
|
|
},
|
|
|
|
activated() {
|
2021-07-20 21:48:35 +00:00
|
|
|
this.active = true;
|
2021-09-21 21:48:55 +00:00
|
|
|
this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", false);
|
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
|
|
|
},
|
2021-09-05 21:01:26 +00:00
|
|
|
unmounted() {
|
2021-09-05 20:53:59 +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-10-08 18:52:51 +00:00
|
|
|
this.video.description = 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
|
|
|
},
|
2020-11-11 09:20:57 +00:00
|
|
|
};
|
|
|
|
</script>
|