]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/my-account/my-account-videos/my-account-videos.component.ts
Add video channel management
[github/Chocobozzz/PeerTube.git] / client / src / app / my-account / my-account-videos / my-account-videos.component.ts
CommitLineData
9af61e84 1import { Component, OnInit, OnDestroy } from '@angular/core'
be447678 2import { ActivatedRoute, Router } from '@angular/router'
2a2c19df 3import { Location } from '@angular/common'
0cd4344f
C
4import { immutableAssign } from '@app/shared/misc/utils'
5import { ComponentPagination } from '@app/shared/rest/component-pagination.model'
202f6b6c 6import { NotificationsService } from 'angular2-notifications'
ce0e281d
C
7import 'rxjs/add/observable/from'
8import 'rxjs/add/operator/concatAll'
9import { Observable } from 'rxjs/Observable'
b2731bff 10import { AuthService } from '../../core/auth'
332542bc 11import { ConfirmService } from '../../core/confirm'
be447678 12import { AbstractVideoList } from '../../shared/video/abstract-video-list'
332542bc 13import { Video } from '../../shared/video/video.model'
202f6b6c
C
14import { VideoService } from '../../shared/video/video.service'
15
16@Component({
17 selector: 'my-account-videos',
4bb6886d
C
18 templateUrl: './my-account-videos.component.html',
19 styleUrls: [ './my-account-videos.component.scss' ]
202f6b6c 20})
4bb6886d 21export class MyAccountVideosComponent extends AbstractVideoList implements OnInit, OnDestroy {
202f6b6c 22 titlePage = 'My videos'
4bb6886d 23 currentRoute = '/my-account/videos'
ce0e281d 24 checkedVideos: { [ id: number ]: boolean } = {}
0cd4344f 25 pagination: ComponentPagination = {
234b535d 26 currentPage: 1,
2e78e268 27 itemsPerPage: 5,
234b535d
C
28 totalItems: null
29 }
202f6b6c 30
9af61e84
C
31 protected baseVideoWidth = -1
32 protected baseVideoHeight = 155
33
202f6b6c
C
34 constructor (protected router: Router,
35 protected route: ActivatedRoute,
b2731bff 36 protected authService: AuthService,
202f6b6c 37 protected notificationsService: NotificationsService,
332542bc 38 protected confirmService: ConfirmService,
2a2c19df 39 protected location: Location,
202f6b6c
C
40 private videoService: VideoService) {
41 super()
42 }
43
44 ngOnInit () {
45 super.ngOnInit()
46 }
47
9af61e84
C
48 ngOnDestroy () {
49 super.ngOnDestroy()
50 }
51
ce0e281d
C
52 abortSelectionMode () {
53 this.checkedVideos = {}
54 }
55
56 isInSelectionMode () {
57 return Object.keys(this.checkedVideos).some(k => this.checkedVideos[k] === true)
58 }
59
0cd4344f
C
60 getVideosObservable (page: number) {
61 const newPagination = immutableAssign(this.pagination, { currentPage: page })
62
63 return this.videoService.getMyVideos(newPagination, this.sort)
202f6b6c 64 }
332542bc 65
244e76a5
RK
66 generateSyndicationList () {
67 throw new Error('Method not implemented.')
68 }
69
1f30a185 70 async deleteSelectedVideos () {
ce0e281d
C
71 const toDeleteVideosIds = Object.keys(this.checkedVideos)
72 .filter(k => this.checkedVideos[k] === true)
73 .map(k => parseInt(k, 10))
74
1f30a185
C
75 const res = await this.confirmService.confirm(`Do you really want to delete ${toDeleteVideosIds.length} videos?`, 'Delete')
76 if (res === false) return
77
78 const observables: Observable<any>[] = []
79 for (const videoId of toDeleteVideosIds) {
80 const o = this.videoService
81 .removeVideo(videoId)
82 .do(() => this.spliceVideosById(videoId))
83
84 observables.push(o)
85 }
86
87 Observable.from(observables)
88 .concatAll()
89 .subscribe(
90 res => {
91 this.notificationsService.success('Success', `${toDeleteVideosIds.length} videos deleted.`)
92 this.buildVideoPages()
93 },
94
95 err => this.notificationsService.error('Error', err.message)
96 )
ce0e281d
C
97 }
98
1f30a185
C
99 async deleteVideo (video: Video) {
100 const res = await this.confirmService.confirm(`Do you really want to delete ${video.name}?`, 'Delete')
101 if (res === false) return
102
103 this.videoService.removeVideo(video.id)
104 .subscribe(
105 status => {
106 this.notificationsService.success('Success', `Video ${video.name} deleted.`)
107 this.spliceVideosById(video.id)
108 this.buildVideoPages()
109 },
110
111 error => this.notificationsService.error('Error', error.message)
112 )
332542bc 113 }
ce0e281d 114
a86887a4
C
115 protected buildVideoHeight () {
116 // In account videos, the video height is fixed
117 return this.baseVideoHeight
118 }
119
ce0e281d 120 private spliceVideosById (id: number) {
0cd4344f
C
121 for (const key of Object.keys(this.loadedPages)) {
122 const videos = this.loadedPages[key]
123 const index = videos.findIndex(v => v.id === id)
124
125 if (index !== -1) {
126 videos.splice(index, 1)
127 return
128 }
129 }
ce0e281d 130 }
202f6b6c 131}