]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/video-blacklist/video-blacklist-list/video-blacklist-list.component.ts
Add messages about privacy concerns (P2P)
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / video-blacklist / video-blacklist-list / video-blacklist-list.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { SortMeta } from 'primeng/components/common/sortmeta'
3
4 import { NotificationsService } from 'angular2-notifications'
5
6 import { ConfirmService } from '../../../core'
7 import { VideoBlacklistService, RestTable, RestPagination } from '../../../shared'
8 import { BlacklistedVideo } from '../../../../../../shared'
9
10 @Component({
11 selector: 'my-video-blacklist-list',
12 templateUrl: './video-blacklist-list.component.html',
13 styleUrls: []
14 })
15 export class VideoBlacklistListComponent extends RestTable implements OnInit {
16 blacklist: BlacklistedVideo[] = []
17 totalRecords = 0
18 rowsPerPage = 10
19 sort: SortMeta = { field: 'createdAt', order: 1 }
20 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
21
22 constructor (
23 private notificationsService: NotificationsService,
24 private confirmService: ConfirmService,
25 private videoBlacklistService: VideoBlacklistService
26 ) {
27 super()
28 }
29
30 ngOnInit () {
31 this.loadSort()
32 }
33
34 async removeVideoFromBlacklist (entry: BlacklistedVideo) {
35 const confirmMessage = 'Do you really want to remove this video from the blacklist ? It will be available again in the videos list.'
36
37 const res = await this.confirmService.confirm(confirmMessage, 'Unblacklist')
38 if (res === false) return
39
40 this.videoBlacklistService.removeVideoFromBlacklist(entry.videoId).subscribe(
41 () => {
42 this.notificationsService.success('Success', `Video ${entry.name} removed from the blacklist.`)
43 this.loadData()
44 },
45
46 err => this.notificationsService.error('Error', err.message)
47 )
48 }
49
50 protected loadData () {
51 this.videoBlacklistService.listBlacklist(this.pagination, this.sort)
52 .subscribe(
53 resultList => {
54 this.blacklist = resultList.data
55 this.totalRecords = resultList.total
56 },
57
58 err => this.notificationsService.error('Error', err.message)
59 )
60 }
61 }