X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Badmin%2Fjobs%2Fjobs-list%2Fjobs-list.component.ts;h=b265e1dd639bb3fb9f8de12631c0b52c948463da;hb=f8b2c1b4f509c037b9650cca2c5befd21f056df3;hp=80aba9f3abb6e5aaed0fb0d5c4ffbfff92966a76;hpb=ab998f7b6dffbe461d830d3696cb46491ad6afb0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+admin/jobs/jobs-list/jobs-list.component.ts b/client/src/app/+admin/jobs/jobs-list/jobs-list.component.ts index 80aba9f3a..b265e1dd6 100644 --- a/client/src/app/+admin/jobs/jobs-list/jobs-list.component.ts +++ b/client/src/app/+admin/jobs/jobs-list/jobs-list.component.ts @@ -1,12 +1,12 @@ import { Component, OnInit } from '@angular/core' -import { NotificationsService } from 'angular2-notifications' +import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage' +import { Notifier } from '@app/core' import { SortMeta } from 'primeng/primeng' import { Job } from '../../../../../../shared/index' import { JobState } from '../../../../../../shared/models' import { RestPagination, RestTable } from '../../../shared' -import { viewportHeight } from '../../../shared/misc/utils' import { JobService } from '../shared' -import { RestExtractor } from '../../../shared/rest/rest-extractor.service' +import { I18n } from '@ngx-translate/i18n-polyfill' @Component({ selector: 'my-jobs-list', @@ -16,32 +16,30 @@ import { RestExtractor } from '../../../shared/rest/rest-extractor.service' export class JobsListComponent extends RestTable implements OnInit { private static JOB_STATE_LOCAL_STORAGE_STATE = 'jobs-list-state' - jobState: JobState = 'inactive' - jobStates: JobState[] = [ 'active', 'complete', 'failed', 'inactive', 'delayed' ] + jobState: JobState = 'waiting' + jobStates: JobState[] = [ 'active', 'completed', 'failed', 'waiting', 'delayed' ] jobs: Job[] = [] totalRecords: number rowsPerPage = 10 sort: SortMeta = { field: 'createdAt', order: -1 } pagination: RestPagination = { count: this.rowsPerPage, start: 0 } - scrollHeight = '' constructor ( - private notificationsService: NotificationsService, - private restExtractor: RestExtractor, - private jobsService: JobService + private notifier: Notifier, + private jobsService: JobService, + private i18n: I18n ) { super() } ngOnInit () { - // 380 -> headers + footer... - this.scrollHeight = (viewportHeight() - 380) + 'px' - this.loadJobState() - this.loadSort() + this.initialize() } onJobStateChanged () { + this.pagination.start = 0 + this.loadData() this.saveJobState() } @@ -55,17 +53,17 @@ export class JobsListComponent extends RestTable implements OnInit { this.totalRecords = resultList.total }, - err => this.notificationsService.error('Error', err.message) + err => this.notifier.error(err.message) ) } private loadJobState () { - const result = localStorage.getItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE) + const result = peertubeLocalStorage.getItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE) if (result) this.jobState = result as JobState } private saveJobState () { - localStorage.setItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE, this.jobState) + peertubeLocalStorage.setItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE, this.jobState) } }