aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/moderation
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-11-20 13:55:33 +0100
committerChocobozzz <me@florianbigard.com>2020-11-20 13:59:21 +0100
commit939917705fa3fa93ab7036b5e7e9aaf5f1d0023e (patch)
tree54e941e916a1da82f999fabb9b419287441d53fb /client/src/app/+admin/moderation
parent4749078b8af8fdaf40dd35c9e2da7e681b9ea664 (diff)
downloadPeerTube-939917705fa3fa93ab7036b5e7e9aaf5f1d0023e.tar.gz
PeerTube-939917705fa3fa93ab7036b5e7e9aaf5f1d0023e.tar.zst
PeerTube-939917705fa3fa93ab7036b5e7e9aaf5f1d0023e.zip
Add ability to bulk delete comments
Diffstat (limited to 'client/src/app/+admin/moderation')
-rw-r--r--client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html19
-rw-r--r--client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss4
-rw-r--r--client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts34
3 files changed, 53 insertions, 4 deletions
diff --git a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html
index 330ee2478..8b7c12ba3 100644
--- a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html
+++ b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html
@@ -13,9 +13,18 @@
13 [showCurrentPageReport]="true" i18n-currentPageReportTemplate 13 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
14 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} comments" 14 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} comments"
15 (onPage)="onPage($event)" [expandedRowKeys]="expandedRows" 15 (onPage)="onPage($event)" [expandedRowKeys]="expandedRows"
16 [(selection)]="selectedComments"
16> 17>
17 <ng-template pTemplate="caption"> 18 <ng-template pTemplate="caption">
18 <div class="caption"> 19 <div class="caption">
20 <div>
21 <my-action-dropdown
22 *ngIf="isInSelectionMode()" i18n-label label="Batch actions" theme="orange"
23 [actions]="bulkCommentActions" [entry]="selectedComments"
24 >
25 </my-action-dropdown>
26 </div>
27
19 <div class="ml-auto"> 28 <div class="ml-auto">
20 <div class="input-group has-feedback has-clear"> 29 <div class="input-group has-feedback has-clear">
21 <div class="input-group-prepend c-hand" ngbDropdown placement="bottom-left auto" container="body"> 30 <div class="input-group-prepend c-hand" ngbDropdown placement="bottom-left auto" container="body">
@@ -42,6 +51,9 @@
42 51
43 <ng-template pTemplate="header"> 52 <ng-template pTemplate="header">
44 <tr> 53 <tr>
54 <th style="width: 40px">
55 <p-tableHeaderCheckbox></p-tableHeaderCheckbox>
56 </th>
45 <th style="width: 40px"></th> 57 <th style="width: 40px"></th>
46 <th style="width: 150px;"></th> 58 <th style="width: 150px;"></th>
47 <th style="width: 300px" i18n>Account</th> 59 <th style="width: 300px" i18n>Account</th>
@@ -52,7 +64,12 @@
52 </ng-template> 64 </ng-template>
53 65
54 <ng-template pTemplate="body" let-videoComment let-expanded="expanded"> 66 <ng-template pTemplate="body" let-videoComment let-expanded="expanded">
55 <tr> 67 <tr [pSelectableRow]="videoComment">
68
69 <td class="checkbox-cell">
70 <p-tableCheckbox [value]="videoComment"></p-tableCheckbox>
71 </td>
72
56 <td class="expand-cell c-hand" [pRowToggler]="videoComment" i18n-ngbTooltip ngbTooltip="More information" placement="top-left" container="body"> 73 <td class="expand-cell c-hand" [pRowToggler]="videoComment" i18n-ngbTooltip ngbTooltip="More information" placement="top-left" container="body">
57 <span class="expander"> 74 <span class="expander">
58 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i> 75 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i>
diff --git a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss
index 439835899..d208944fe 100644
--- a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss
+++ b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss
@@ -45,7 +45,9 @@ my-global-icon {
45 } 45 }
46 46
47 a { 47 a {
48 @include ellipsis 48 @include ellipsis;
49
50 color: pvar(--mainForegroundColor);
49 } 51 }
50} 52}
51 53
diff --git a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts
index 284ec541d..529e28f11 100644
--- a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts
+++ b/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts
@@ -1,7 +1,6 @@
1import { SortMeta } from 'primeng/api' 1import { SortMeta } from 'primeng/api'
2import { filter } from 'rxjs/operators'
3import { AfterViewInit, Component, OnInit } from '@angular/core' 2import { AfterViewInit, Component, OnInit } from '@angular/core'
4import { ActivatedRoute, Params, Router } from '@angular/router' 3import { ActivatedRoute, Router } from '@angular/router'
5import { AuthService, ConfirmService, MarkdownService, Notifier, RestPagination, RestTable } from '@app/core' 4import { AuthService, ConfirmService, MarkdownService, Notifier, RestPagination, RestTable } from '@app/core'
6import { DropdownAction } from '@app/shared/shared-main' 5import { DropdownAction } from '@app/shared/shared-main'
7import { BulkService } from '@app/shared/shared-moderation' 6import { BulkService } from '@app/shared/shared-moderation'
@@ -41,6 +40,9 @@ export class VideoCommentListComponent extends RestTable implements OnInit, Afte
41 } 40 }
42 ] 41 ]
43 42
43 selectedComments: VideoCommentAdmin[] = []
44 bulkCommentActions: DropdownAction<VideoCommentAdmin[]>[] = []
45
44 get authUser () { 46 get authUser () {
45 return this.auth.getUser() 47 return this.auth.getUser()
46 } 48 }
@@ -78,6 +80,15 @@ export class VideoCommentListComponent extends RestTable implements OnInit, Afte
78 ngOnInit () { 80 ngOnInit () {
79 this.initialize() 81 this.initialize()
80 this.listenToSearchChange() 82 this.listenToSearchChange()
83
84 this.bulkCommentActions = [
85 {
86 label: $localize`Delete`,
87 handler: comments => this.removeComments(comments),
88 isDisplayed: () => this.authUser.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT),
89 iconName: 'delete'
90 }
91 ]
81 } 92 }
82 93
83 ngAfterViewInit () { 94 ngAfterViewInit () {
@@ -92,6 +103,10 @@ export class VideoCommentListComponent extends RestTable implements OnInit, Afte
92 return this.markdownRenderer.textMarkdownToHTML(text, true, true) 103 return this.markdownRenderer.textMarkdownToHTML(text, true, true)
93 } 104 }
94 105
106 isInSelectionMode () {
107 return this.selectedComments.length !== 0
108 }
109
95 protected loadData () { 110 protected loadData () {
96 this.videoCommentService.getAdminVideoComments({ 111 this.videoCommentService.getAdminVideoComments({
97 pagination: this.pagination, 112 pagination: this.pagination,
@@ -114,6 +129,21 @@ export class VideoCommentListComponent extends RestTable implements OnInit, Afte
114 ) 129 )
115 } 130 }
116 131
132 private async removeComments (comments: VideoCommentAdmin[]) {
133 const commentArgs = comments.map(c => ({ videoId: c.video.id, commentId: c.id }))
134
135 this.videoCommentService.deleteVideoComments(commentArgs).subscribe(
136 () => {
137 this.notifier.success($localize`${commentArgs.length} comments deleted.`)
138 this.loadData()
139 },
140
141 err => this.notifier.error(err.message),
142
143 () => this.selectedComments = []
144 )
145 }
146
117 private deleteComment (comment: VideoCommentAdmin) { 147 private deleteComment (comment: VideoCommentAdmin) {
118 this.videoCommentService.deleteVideoComment(comment.video.id, comment.id) 148 this.videoCommentService.deleteVideoComment(comment.video.id, comment.id)
119 .subscribe( 149 .subscribe(