42ddb0ee28578bb0d041e077a9a25977967d5c83
[oweals/peertube.git] / client / src / app / +my-account / my-account-video-imports / my-account-video-imports.component.ts
1 import { SortMeta } from 'primeng/api'
2 import { Component, OnInit } from '@angular/core'
3 import { Notifier, RestPagination, RestTable } from '@app/core'
4 import { VideoImportService } from '@app/shared/shared-main'
5 import { VideoImport, VideoImportState } from '@shared/models'
6
7 @Component({
8   selector: 'my-account-video-imports',
9   templateUrl: './my-account-video-imports.component.html',
10   styleUrls: [ './my-account-video-imports.component.scss' ]
11 })
12 export class MyAccountVideoImportsComponent extends RestTable implements OnInit {
13   videoImports: VideoImport[] = []
14   totalRecords = 0
15   sort: SortMeta = { field: 'createdAt', order: 1 }
16   pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
17
18   constructor (
19     private notifier: Notifier,
20     private videoImportService: VideoImportService
21   ) {
22     super()
23   }
24
25   ngOnInit () {
26     this.initialize()
27   }
28
29   getIdentifier () {
30     return 'MyAccountVideoImportsComponent'
31   }
32
33   isVideoImportSuccess (videoImport: VideoImport) {
34     return videoImport.state.id === VideoImportState.SUCCESS
35   }
36
37   isVideoImportPending (videoImport: VideoImport) {
38     return videoImport.state.id === VideoImportState.PENDING
39   }
40
41   isVideoImportFailed (videoImport: VideoImport) {
42     return videoImport.state.id === VideoImportState.FAILED
43   }
44
45   getVideoUrl (video: { uuid: string }) {
46     return '/videos/watch/' + video.uuid
47   }
48
49   getEditVideoUrl (video: { uuid: string }) {
50     return '/videos/update/' + video.uuid
51   }
52
53   protected loadData () {
54     this.videoImportService.getMyVideoImports(this.pagination, this.sort)
55         .subscribe(
56           resultList => {
57             this.videoImports = resultList.data
58             this.totalRecords = resultList.total
59           },
60
61           err => this.notifier.error(err.message)
62         )
63   }
64 }