]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/comment/video-comments.component.ts
Remove title attribute from thumbnail in video miniature
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comments.component.ts
CommitLineData
be27ef3b 1import { Component, ElementRef, EventEmitter, Input, OnChanges, OnDestroy, OnInit, Output, SimpleChanges, ViewChild } from '@angular/core'
1263fc4e 2import { ActivatedRoute } from '@angular/router'
f8b2c1b4 3import { ConfirmService, Notifier } from '@app/core'
ad453580 4import { Subject, Subscription } from 'rxjs'
4635f59d 5import { AuthService } from '../../../core/auth'
2f1548fd 6import { ComponentPagination, hasMoreItems } from '../../../shared/rest/component-pagination.model'
4635f59d 7import { User } from '../../../shared/users'
c1125bca 8import { CommentSortField } from '../../../shared/video/sort-field.type'
47564bbe 9import { VideoDetails } from '../../../shared/video/video-details.model'
4635f59d
C
10import { VideoComment } from './video-comment.model'
11import { VideoCommentService } from './video-comment.service'
b1d40cff 12import { I18n } from '@ngx-translate/i18n-polyfill'
c199c427 13import { Syndication } from '@app/shared/video/syndication.model'
93cae479 14import { HooksService } from '@app/core/plugins/hooks.service'
be27ef3b 15import { VideoCommentThreadTree } from '@app/videos/+video-watch/comment/video-comment-thread-tree.model'
4635f59d
C
16
17@Component({
18 selector: 'my-video-comments',
19 templateUrl: './video-comments.component.html',
20 styleUrls: ['./video-comments.component.scss']
21})
1263fc4e 22export class VideoCommentsComponent implements OnInit, OnChanges, OnDestroy {
2f5d2ec5 23 @ViewChild('commentHighlightBlock') commentHighlightBlock: ElementRef
47564bbe 24 @Input() video: VideoDetails
4635f59d
C
25 @Input() user: User
26
b29bf61d
RK
27 @Output() timestampClicked = new EventEmitter<number>()
28
4635f59d 29 comments: VideoComment[] = []
5b8072ee 30 highlightedThread: VideoComment
c1125bca 31 sort: CommentSortField = '-createdAt'
4635f59d
C
32 componentPagination: ComponentPagination = {
33 currentPage: 1,
7416fbf3 34 itemsPerPage: 10,
4635f59d
C
35 totalItems: null
36 }
37 inReplyToCommentId: number
38 threadComments: { [ id: number ]: VideoCommentThreadTree } = {}
39 threadLoading: { [ id: number ]: boolean } = {}
1263fc4e 40
c199c427 41 syndicationItems: Syndication[] = []
53877968 42
ad453580
C
43 onDataSubject = new Subject<any[]>()
44
1263fc4e 45 private sub: Subscription
4635f59d
C
46
47 constructor (
48 private authService: AuthService,
f8b2c1b4 49 private notifier: Notifier,
4cb6d457 50 private confirmService: ConfirmService,
d5b53822 51 private videoCommentService: VideoCommentService,
b1d40cff 52 private activatedRoute: ActivatedRoute,
93cae479
C
53 private i18n: I18n,
54 private hooks: HooksService
4635f59d
C
55 ) {}
56
1263fc4e
C
57 ngOnInit () {
58 // Find highlighted comment in params
59 this.sub = this.activatedRoute.params.subscribe(
60 params => {
5b8072ee
C
61 if (params['threadId']) {
62 const highlightedThreadId = +params['threadId']
63 this.processHighlightedThread(highlightedThreadId)
1263fc4e
C
64 }
65 }
66 )
67 }
68
339632b4
C
69 ngOnChanges (changes: SimpleChanges) {
70 if (changes['video']) {
1263fc4e 71 this.resetVideo()
47564bbe 72 }
4635f59d
C
73 }
74
1263fc4e
C
75 ngOnDestroy () {
76 if (this.sub) this.sub.unsubscribe()
77 }
78
5b8072ee 79 viewReplies (commentId: number, highlightThread = false) {
1263fc4e 80 this.threadLoading[commentId] = true
4635f59d 81
93cae479
C
82 const params = {
83 videoId: this.video.id,
84 threadId: commentId
85 }
86
87 const obs = this.hooks.wrapObsFun(
88 this.videoCommentService.getVideoThreadComments.bind(this.videoCommentService),
89 params,
90 'video-watch',
91 'filter:api.video-watch.video-thread-replies.list.params',
92 'filter:api.video-watch.video-thread-replies.list.result'
93 )
94
95 obs.subscribe(
4635f59d 96 res => {
1263fc4e
C
97 this.threadComments[commentId] = res
98 this.threadLoading[commentId] = false
99
bf079b7b
C
100 if (highlightThread) {
101 this.highlightedThread = new VideoComment(res.comment)
102
103 // Scroll to the highlighted thread
43483d12 104 setTimeout(() => this.commentHighlightBlock.nativeElement.scrollIntoView(), 0)
bf079b7b 105 }
4635f59d
C
106 },
107
f8b2c1b4 108 err => this.notifier.error(err.message)
4635f59d
C
109 )
110 }
111
93cae479
C
112 loadMoreThreads () {
113 const params = {
114 videoId: this.video.id,
115 componentPagination: this.componentPagination,
116 sort: this.sort
117 }
7416fbf3 118
93cae479
C
119 const obs = this.hooks.wrapObsFun(
120 this.videoCommentService.getVideoCommentThreads.bind(this.videoCommentService),
121 params,
122 'video-watch',
123 'filter:api.video-watch.video-threads.list.params',
124 'filter:api.video-watch.video-threads.list.result'
125 )
126
127 obs.subscribe(
128 res => {
e8f902c0
C
129 this.comments = this.comments.concat(res.data)
130 this.componentPagination.totalItems = res.total
ad453580
C
131
132 this.onDataSubject.next(res.data)
0840ca76 133 this.hooks.runAction('action:video-watch.video-threads.loaded', 'video-watch', { data: this.componentPagination })
93cae479
C
134 },
135
136 err => this.notifier.error(err.message)
137 )
7416fbf3
C
138 }
139
4635f59d
C
140 onCommentThreadCreated (comment: VideoComment) {
141 this.comments.unshift(comment)
142 }
143
144 onWantedToReply (comment: VideoComment) {
145 this.inReplyToCommentId = comment.id
146 }
147
148 onResetReply () {
149 this.inReplyToCommentId = undefined
150 }
151
4cb6d457 152 onThreadCreated (commentTree: VideoCommentThreadTree) {
1263fc4e 153 this.viewReplies(commentTree.comment.id)
4cb6d457 154 }
b29bf61d 155
c1125bca
RK
156 handleSortChange (sort: CommentSortField) {
157 if (this.sort === sort) return
158
159 this.sort = sort
160 this.resetVideo()
161 }
162
b29bf61d
RK
163 handleTimestampClicked (timestamp: number) {
164 this.timestampClicked.emit(timestamp)
165 }
4cb6d457 166
1f30a185 167 async onWantedToDelete (commentToDelete: VideoComment) {
4cb6d457 168 let message = 'Do you really want to delete this comment?'
7e73f071 169
7e73f071 170 if (commentToDelete.isLocal) {
32d7f2b7 171 message += this.i18n(' The deletion will be sent to remote instances, so they remove the comment too.')
7e73f071
C
172 } else {
173 message += this.i18n(' It is a remote comment, so the deletion will only be effective on your instance.')
174 }
175
b1d40cff 176 const res = await this.confirmService.confirm(message, this.i18n('Delete'))
1f30a185
C
177 if (res === false) return
178
179 this.videoCommentService.deleteVideoComment(commentToDelete.videoId, commentToDelete.id)
180 .subscribe(
181 () => {
69222afa
JM
182 // Mark the comment as deleted
183 this.softDeleteComment(commentToDelete)
73dc4da0
C
184
185 if (this.highlightedThread.id === commentToDelete.id) this.highlightedThread = undefined
1f30a185
C
186 },
187
f8b2c1b4 188 err => this.notifier.error(err.message)
1f30a185 189 )
4cb6d457
C
190 }
191
4635f59d
C
192 isUserLoggedIn () {
193 return this.authService.isLoggedIn()
194 }
7416fbf3 195
34102d19 196 onNearOfBottom () {
2f1548fd 197 if (hasMoreItems(this.componentPagination)) {
34102d19 198 this.componentPagination.currentPage++
93cae479 199 this.loadMoreThreads()
7416fbf3
C
200 }
201 }
202
69222afa
JM
203 private softDeleteComment (comment: VideoComment) {
204 comment.isDeleted = true
205 comment.deletedAt = new Date()
206 comment.text = ''
207 comment.account = null
4cb6d457 208 }
339632b4 209
1263fc4e 210 private resetVideo () {
339632b4
C
211 if (this.video.commentsEnabled === true) {
212 // Reset all our fields
5b8072ee 213 this.highlightedThread = null
339632b4
C
214 this.comments = []
215 this.threadComments = {}
216 this.threadLoading = {}
217 this.inReplyToCommentId = undefined
0cd4344f
C
218 this.componentPagination.currentPage = 1
219 this.componentPagination.totalItems = null
339632b4 220
53877968 221 this.syndicationItems = this.videoCommentService.getVideoCommentsFeeds(this.video.uuid)
93cae479 222 this.loadMoreThreads()
339632b4
C
223 }
224 }
1263fc4e 225
5b8072ee
C
226 private processHighlightedThread (highlightedThreadId: number) {
227 this.highlightedThread = this.comments.find(c => c.id === highlightedThreadId)
1263fc4e 228
5b8072ee
C
229 const highlightThread = true
230 this.viewReplies(highlightedThreadId, highlightThread)
1263fc4e 231 }
4635f59d 232}