]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/comment/video-comments.component.ts
3acddbe6ac25338276408ec8d05ecf7cb55afcd2
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comments.component.ts
1 import { Component, ElementRef, Input, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewChild } from '@angular/core'
2 import { ActivatedRoute } from '@angular/router'
3 import { ConfirmService, Notifier } from '@app/core'
4 import { Subscription } from 'rxjs'
5 import { VideoCommentThreadTree } from '../../../../../../shared/models/videos/video-comment.model'
6 import { AuthService } from '../../../core/auth'
7 import { ComponentPagination, hasMoreItems } from '../../../shared/rest/component-pagination.model'
8 import { User } from '../../../shared/users'
9 import { VideoSortField } from '../../../shared/video/sort-field.type'
10 import { VideoDetails } from '../../../shared/video/video-details.model'
11 import { VideoComment } from './video-comment.model'
12 import { VideoCommentService } from './video-comment.service'
13 import { I18n } from '@ngx-translate/i18n-polyfill'
14 import { Syndication } from '@app/shared/video/syndication.model'
15
16 @Component({
17 selector: 'my-video-comments',
18 templateUrl: './video-comments.component.html',
19 styleUrls: ['./video-comments.component.scss']
20 })
21 export class VideoCommentsComponent implements OnInit, OnChanges, OnDestroy {
22 @ViewChild('commentHighlightBlock') commentHighlightBlock: ElementRef
23 @Input() video: VideoDetails
24 @Input() user: User
25
26 comments: VideoComment[] = []
27 highlightedThread: VideoComment
28 sort: VideoSortField = '-createdAt'
29 componentPagination: ComponentPagination = {
30 currentPage: 1,
31 itemsPerPage: 10,
32 totalItems: null
33 }
34 inReplyToCommentId: number
35 threadComments: { [ id: number ]: VideoCommentThreadTree } = {}
36 threadLoading: { [ id: number ]: boolean } = {}
37
38 syndicationItems: Syndication[] = []
39
40 private sub: Subscription
41
42 constructor (
43 private authService: AuthService,
44 private notifier: Notifier,
45 private confirmService: ConfirmService,
46 private videoCommentService: VideoCommentService,
47 private activatedRoute: ActivatedRoute,
48 private i18n: I18n
49 ) {}
50
51 ngOnInit () {
52 // Find highlighted comment in params
53 this.sub = this.activatedRoute.params.subscribe(
54 params => {
55 if (params['threadId']) {
56 const highlightedThreadId = +params['threadId']
57 this.processHighlightedThread(highlightedThreadId)
58 }
59 }
60 )
61 }
62
63 ngOnChanges (changes: SimpleChanges) {
64 if (changes['video']) {
65 this.resetVideo()
66 }
67 }
68
69 ngOnDestroy () {
70 if (this.sub) this.sub.unsubscribe()
71 }
72
73 viewReplies (commentId: number, highlightThread = false) {
74 this.threadLoading[commentId] = true
75
76 this.videoCommentService.getVideoThreadComments(this.video.id, commentId)
77 .subscribe(
78 res => {
79 this.threadComments[commentId] = res
80 this.threadLoading[commentId] = false
81
82 if (highlightThread) {
83 this.highlightedThread = new VideoComment(res.comment)
84
85 // Scroll to the highlighted thread
86 setTimeout(() => this.commentHighlightBlock.nativeElement.scrollIntoView(), 0)
87 }
88 },
89
90 err => this.notifier.error(err.message)
91 )
92 }
93
94 loadMoreComments () {
95 this.videoCommentService.getVideoCommentThreads(this.video.id, this.componentPagination, this.sort)
96 .subscribe(
97 res => {
98 this.comments = this.comments.concat(res.comments)
99 this.componentPagination.totalItems = res.totalComments
100 },
101
102 err => this.notifier.error(err.message)
103 )
104 }
105
106 onCommentThreadCreated (comment: VideoComment) {
107 this.comments.unshift(comment)
108 }
109
110 onWantedToReply (comment: VideoComment) {
111 this.inReplyToCommentId = comment.id
112 }
113
114 onResetReply () {
115 this.inReplyToCommentId = undefined
116 }
117
118 onThreadCreated (commentTree: VideoCommentThreadTree) {
119 this.viewReplies(commentTree.comment.id)
120 }
121
122 async onWantedToDelete (commentToDelete: VideoComment) {
123 let message = 'Do you really want to delete this comment?'
124
125 if (commentToDelete.totalReplies !== 0) {
126 message += this.i18n(' {{totalReplies}} replies will be deleted too.', { totalReplies: commentToDelete.totalReplies })
127 }
128
129 if (commentToDelete.isLocal) {
130 message += this.i18n(' The deletion will be sent to remote instances so they remove the comment too.')
131 } else {
132 message += this.i18n(' It is a remote comment, so the deletion will only be effective on your instance.')
133 }
134
135 const res = await this.confirmService.confirm(message, this.i18n('Delete'))
136 if (res === false) return
137
138 this.videoCommentService.deleteVideoComment(commentToDelete.videoId, commentToDelete.id)
139 .subscribe(
140 () => {
141 // Delete the comment in the tree
142 if (commentToDelete.inReplyToCommentId) {
143 const thread = this.threadComments[commentToDelete.threadId]
144 if (!thread) {
145 console.error(`Cannot find thread ${commentToDelete.threadId} of the comment to delete ${commentToDelete.id}`)
146 return
147 }
148
149 this.deleteLocalCommentThread(thread, commentToDelete)
150 return
151 }
152
153 // Delete the thread
154 this.comments = this.comments.filter(c => c.id !== commentToDelete.id)
155 this.componentPagination.totalItems--
156
157 if (this.highlightedThread.id === commentToDelete.id) this.highlightedThread = undefined
158 },
159
160 err => this.notifier.error(err.message)
161 )
162 }
163
164 isUserLoggedIn () {
165 return this.authService.isLoggedIn()
166 }
167
168 onNearOfBottom () {
169 this.componentPagination.currentPage++
170
171 if (hasMoreItems(this.componentPagination)) {
172 this.loadMoreComments()
173 }
174 }
175
176 private deleteLocalCommentThread (parentComment: VideoCommentThreadTree, commentToDelete: VideoComment) {
177 for (const commentChild of parentComment.children) {
178 if (commentChild.comment.id === commentToDelete.id) {
179 parentComment.children = parentComment.children.filter(c => c.comment.id !== commentToDelete.id)
180 return
181 }
182
183 this.deleteLocalCommentThread(commentChild, commentToDelete)
184 }
185 }
186
187 private resetVideo () {
188 if (this.video.commentsEnabled === true) {
189 // Reset all our fields
190 this.highlightedThread = null
191 this.comments = []
192 this.threadComments = {}
193 this.threadLoading = {}
194 this.inReplyToCommentId = undefined
195 this.componentPagination.currentPage = 1
196 this.componentPagination.totalItems = null
197
198 this.syndicationItems = this.videoCommentService.getVideoCommentsFeeds(this.video.uuid)
199
200 this.loadMoreComments()
201 }
202 }
203
204 private processHighlightedThread (highlightedThreadId: number) {
205 this.highlightedThread = this.comments.find(c => c.id === highlightedThreadId)
206
207 const highlightThread = true
208 this.viewReplies(highlightedThreadId, highlightThread)
209 }
210 }