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