VueTube/NUXT/components/gridRenderers/videoWithContextRenderer.vue

55 lines
1.4 KiB
Vue
Raw Normal View History

<template>
2022-04-23 05:22:18 +00:00
<base-video-renderer
:vidId="video.videoId"
:thumbnails="video.thumbnail.thumbnails"
2022-04-23 05:53:24 +00:00
:thumbnailOverlayStyle="thumbnailOverlayStyle"
:thumbnailOverlayText="thumbnailOverlayText"
2022-04-23 05:22:18 +00:00
:channelUrl="
$rendererUtils.getNavigationEndpoints(
video.shortBylineText.runs[0].navigationEndpoint
)
"
:channelIcon="
video.channelThumbnail.channelThumbnailWithLinkRenderer.thumbnail
.thumbnails[0].url
"
:titles="video.headline.runs"
:bottomText="parseBottom(video)"
>
2022-04-23 05:22:18 +00:00
</base-video-renderer>
</template>
<script>
2022-04-23 05:23:55 +00:00
import baseVideoRenderer from "~/components/UtilRenderers/baseVideoRenderer.vue";
export default {
props: ["video"],
2022-04-23 05:22:18 +00:00
components: {
baseVideoRenderer,
},
2022-04-23 05:53:24 +00:00
computed: {
thumbnailOverlayText() {
return this.video.thumbnailOverlays[0].thumbnailOverlayTimeStatusRenderer
.text.runs[0].text;
},
thumbnailOverlayStyle() {
return this.video.thumbnailOverlays[0].thumbnailOverlayTimeStatusRenderer
.style;
},
},
methods: {
parseBottom(video) {
const bottomText = [
video.shortBylineText?.runs[0].text,
video.shortViewCountText?.runs[0].text,
];
if (video.publishedTimeText?.runs[0].text)
bottomText.push(video.publishedTimeText?.runs[0].text);
return bottomText.join(" · ");
},
},
};
</script>