2022-04-19 14:03:46 +00:00
|
|
|
<template>
|
|
|
|
<div class="comment-thread" v-if="commentRenderer">
|
|
|
|
<a
|
|
|
|
:href="
|
|
|
|
this.$rendererUtils.getNavigationEndpoints(
|
|
|
|
commentRenderer.authorEndpoint
|
|
|
|
)
|
|
|
|
"
|
|
|
|
class="avatar-link"
|
|
|
|
>
|
|
|
|
<v-img
|
|
|
|
class="avatar-thumbnail"
|
|
|
|
:src="
|
|
|
|
commentRenderer.authorThumbnail.thumbnails[
|
|
|
|
commentRenderer.authorThumbnail.thumbnails.length - 1
|
|
|
|
].url
|
|
|
|
"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
<div class="comment-content">
|
|
|
|
<div class="comment-content--header">
|
2022-04-20 12:50:00 +00:00
|
|
|
<h3 class="author-name--wrapper">
|
|
|
|
<span class="font-weight-bold subtitle-2 pr-1 author-name" emoji>
|
2022-04-21 05:29:50 +00:00
|
|
|
{{ commentRenderer.authorText.simpleText }}
|
2022-04-20 12:50:00 +00:00
|
|
|
</span>
|
|
|
|
</h3>
|
2022-04-19 14:03:46 +00:00
|
|
|
<span
|
|
|
|
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
|
2022-04-20 12:50:00 +00:00
|
|
|
class="background--text subtitle-2 comment-timestamp"
|
2022-04-19 14:03:46 +00:00
|
|
|
>
|
|
|
|
{{ commentRenderer.publishedTimeText.runs[0].text }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2022-04-20 12:50:00 +00:00
|
|
|
<collapsable-text :lines="4">
|
2022-04-21 02:38:22 +00:00
|
|
|
<yt-text-formatter :textRuns="commentRenderer.contentText.runs">
|
|
|
|
</yt-text-formatter>
|
2022-04-20 12:50:00 +00:00
|
|
|
</collapsable-text>
|
2022-04-19 14:03:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-04-20 12:50:00 +00:00
|
|
|
<style scoped lang="scss">
|
2022-04-19 14:03:46 +00:00
|
|
|
.entry {
|
|
|
|
width: 100%; /* Prevent Loading Weirdness */
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-thread {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-basis: auto;
|
|
|
|
width: 100%;
|
2022-04-20 12:50:00 +00:00
|
|
|
padding: 10px 0;
|
2022-04-19 14:03:46 +00:00
|
|
|
|
2022-04-20 12:50:00 +00:00
|
|
|
.avatar-thumbnail {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
2022-04-19 14:03:46 +00:00
|
|
|
|
2022-04-20 12:50:00 +00:00
|
|
|
.comment-content {
|
|
|
|
min-width: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-basis: auto;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
.comment-content--header {
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
|
|
.author-name--wrapper {
|
|
|
|
min-width: 0;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2022-04-19 14:03:46 +00:00
|
|
|
|
2022-04-20 12:50:00 +00:00
|
|
|
.comment-timestamp {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-19 14:03:46 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<script>
|
2022-04-20 12:50:00 +00:00
|
|
|
import collapsableText from "~/components/UtilRenderers/collapsableText.vue";
|
2022-04-21 02:38:22 +00:00
|
|
|
import YtTextFormatter from "~/components/UtilRenderers/YtTextFormatter.vue";
|
|
|
|
|
2022-04-19 14:03:46 +00:00
|
|
|
export default {
|
2022-04-21 02:38:22 +00:00
|
|
|
components: { collapsableText, YtTextFormatter },
|
2022-04-19 14:03:46 +00:00
|
|
|
props: ["comment"],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
commentRenderer: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.commentRenderer = this.comment?.comment?.commentRenderer;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|