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