]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/jobs/jobs-list/jobs-list.component.ts
e3f317e6de940f3e231a7f8134d47613239b8df2
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / jobs / jobs-list / jobs-list.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { NotificationsService } from 'angular2-notifications'
3 import { SortMeta } from 'primeng/primeng'
4 import { Job } from '../../../../../../shared/index'
5 import { JobState } from '../../../../../../shared/models'
6 import { RestPagination, RestTable } from '../../../shared'
7 import { viewportHeight } from '../../../shared/misc/utils'
8 import { JobService } from '../shared'
9 import { RestExtractor } from '../../../shared/rest/rest-extractor.service'
10
11 @Component({
12 selector: 'my-jobs-list',
13 templateUrl: './jobs-list.component.html',
14 styleUrls: [ './jobs-list.component.scss' ]
15 })
16 export class JobsListComponent extends RestTable implements OnInit {
17 private static JOB_STATE_LOCAL_STORAGE_STATE = 'jobs-list-state'
18
19 jobState: JobState = 'inactive'
20 jobStates: JobState[] = [ 'active', 'complete', 'failed', 'inactive', 'delayed' ]
21 jobs: Job[] = []
22 totalRecords: number
23 rowsPerPage = 10
24 sort: SortMeta = { field: 'createdAt', order: -1 }
25 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
26
27 constructor (
28 private notificationsService: NotificationsService,
29 private restExtractor: RestExtractor,
30 private jobsService: JobService
31 ) {
32 super()
33 }
34
35 ngOnInit () {
36 this.loadJobState()
37 this.loadSort()
38 }
39
40 onJobStateChanged () {
41 this.loadData()
42 this.saveJobState()
43 }
44
45 protected loadData () {
46 this.jobsService
47 .getJobs(this.jobState, this.pagination, this.sort)
48 .subscribe(
49 resultList => {
50 this.jobs = resultList.data
51 this.totalRecords = resultList.total
52 },
53
54 err => this.notificationsService.error('Error', err.message)
55 )
56 }
57
58 private loadJobState () {
59 const result = localStorage.getItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE)
60
61 if (result) this.jobState = result as JobState
62 }
63
64 private saveJobState () {
65 localStorage.setItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE, this.jobState)
66 }
67 }