From 5b0413ddaa7949a6a44512a8281c5a23466599ae Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Sat, 28 Dec 2019 11:27:31 +0100 Subject: Add author indicator to the comment replies loader --- .../app/videos/+video-watch/comment/video-comment.model.ts | 2 ++ .../+video-watch/comment/video-comments.component.html | 14 ++++++++++++-- .../+video-watch/comment/video-comments.component.scss | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) (limited to 'client/src/app/videos') diff --git a/client/src/app/videos/+video-watch/comment/video-comment.model.ts b/client/src/app/videos/+video-watch/comment/video-comment.model.ts index 719d1f04e..aaeb0ea9c 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment.model.ts +++ b/client/src/app/videos/+video-watch/comment/video-comment.model.ts @@ -15,6 +15,7 @@ export class VideoComment implements VideoCommentServerModel { deletedAt: Date | string isDeleted: boolean account: AccountInterface + totalRepliesFromVideoAuthor: number totalReplies: number by: string accountAvatarUrl: string @@ -33,6 +34,7 @@ export class VideoComment implements VideoCommentServerModel { this.deletedAt = hash.deletedAt ? new Date(hash.deletedAt.toString()) : null this.isDeleted = hash.isDeleted this.account = hash.account + this.totalRepliesFromVideoAuthor = hash.totalRepliesFromVideoAuthor this.totalReplies = hash.totalReplies if (this.account) { diff --git a/client/src/app/videos/+video-watch/comment/video-comments.component.html b/client/src/app/videos/+video-watch/comment/video-comments.component.html index e284eab0a..8f5c583d3 100644 --- a/client/src/app/videos/+video-watch/comment/video-comments.component.html +++ b/client/src/app/videos/+video-watch/comment/video-comments.component.html @@ -69,9 +69,19 @@ >
- View all {{ comment.totalReplies }} replies - + + + + + View {{ comment.totalReplies }} replies from {{ video?.account?.displayName || 'the author' }} and others + + + View {{ comment.totalReplies }} replies from {{ video?.account?.displayName || 'the author' }} + + + View {{ comment.totalReplies }} replies +
diff --git a/client/src/app/videos/+video-watch/comment/video-comments.component.scss b/client/src/app/videos/+video-watch/comment/video-comments.component.scss index c02f6c21b..600bc1cee 100644 --- a/client/src/app/videos/+video-watch/comment/video-comments.component.scss +++ b/client/src/app/videos/+video-watch/comment/video-comments.component.scss @@ -14,7 +14,7 @@ } .glyphicon, .comment-thread-loading { - margin-left: 5px; + margin-right: 5px; display: inline-block; font-size: 13px; } -- cgit v1.2.3