X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Badmin%2Fsystem%2Fjobs%2Fjobs.component.ts;h=b12d7f80a5e7d29e723fdf4cc152ed9c8e0b1739;hb=1378c0d343028f3d40d7d795422684ab9e6a1599;hp=b265e1dd639bb3fb9f8de12631c0b52c948463da;hpb=fd8710b897a67518d3a61c319e54b6a65ba443ef;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+admin/system/jobs/jobs.component.ts b/client/src/app/+admin/system/jobs/jobs.component.ts index b265e1dd6..b12d7f80a 100644 --- a/client/src/app/+admin/system/jobs/jobs.component.ts +++ b/client/src/app/+admin/system/jobs/jobs.component.ts @@ -1,69 +1,144 @@ +import { SortMeta } from 'primeng/api' import { Component, OnInit } from '@angular/core' -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 { JobService } from '../shared' -import { I18n } from '@ngx-translate/i18n-polyfill' +import { Notifier, RestPagination, RestTable } from '@app/core' +import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage' +import { Job, JobState, JobType } from '@shared/models' +import { JobStateClient } from '../../../../types/job-state-client.type' +import { JobTypeClient } from '../../../../types/job-type-client.type' +import { JobService } from './job.service' @Component({ - selector: 'my-jobs-list', - templateUrl: './jobs-list.component.html', - styleUrls: [ './jobs-list.component.scss' ] + selector: 'my-jobs', + templateUrl: './jobs.component.html', + styleUrls: [ './jobs.component.scss' ] }) -export class JobsListComponent extends RestTable implements OnInit { - private static JOB_STATE_LOCAL_STORAGE_STATE = 'jobs-list-state' +export class JobsComponent extends RestTable implements OnInit { + private static LOCAL_STORAGE_STATE = 'jobs-list-state' + private static LOCAL_STORAGE_TYPE = 'jobs-list-type' + + jobState?: JobStateClient | 'all' + jobStates: JobStateClient[] = [ 'active', 'completed', 'failed', 'waiting', 'delayed' ] + + jobType: JobTypeClient = 'all' + jobTypes: JobTypeClient[] = [ + 'all', + + 'activitypub-follow', + 'activitypub-http-broadcast', + 'activitypub-http-fetcher', + 'activitypub-http-unicast', + 'activitypub-refresher', + 'activitypub-cleaner', + 'actor-keys', + 'email', + 'video-file-import', + 'video-import', + 'video-live-ending', + 'video-redundancy', + 'video-transcoding', + 'videos-views', + 'move-to-object-storage' + ] - 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 } constructor ( private notifier: Notifier, - private jobsService: JobService, - private i18n: I18n + private jobsService: JobService ) { super() } ngOnInit () { - this.loadJobState() + this.loadJobStateAndType() this.initialize() } - onJobStateChanged () { + getIdentifier () { + return 'JobsComponent' + } + + getJobStateClass (state: JobStateClient) { + switch (state) { + case 'active': + return 'badge-blue' + case 'completed': + return 'badge-green' + case 'delayed': + return 'badge-brown' + case 'failed': + return 'badge-red' + case 'waiting': + return 'badge-yellow' + } + } + + getColspan () { + if (this.jobState === 'all' && this.hasProgress()) return 7 + + if (this.jobState === 'all' || this.hasProgress()) return 6 + + return 5 + } + + onJobStateOrTypeChanged () { this.pagination.start = 0 - this.loadData() - this.saveJobState() + this.reloadData() + this.saveJobStateAndType() + } + + hasProgress () { + return this.jobType === 'all' || this.jobType === 'video-transcoding' + } + + getProgress (job: Job) { + if (job.state === 'active') return job.progress + '%' + + return '' } - protected loadData () { + refresh () { + this.jobs = [] + this.totalRecords = 0 + + this.reloadData() + } + + protected reloadData () { + let jobState = this.jobState as JobState + if (this.jobState === 'all') jobState = null + this.jobsService - .getJobs(this.jobState, this.pagination, this.sort) - .subscribe( - resultList => { + .getJobs({ + jobState, + jobType: this.jobType, + pagination: this.pagination, + sort: this.sort + }) + .subscribe({ + next: resultList => { this.jobs = resultList.data this.totalRecords = resultList.total }, - err => this.notifier.error(err.message) - ) + error: err => this.notifier.error(err.message) + }) } - private loadJobState () { - const result = peertubeLocalStorage.getItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE) + private loadJobStateAndType () { + const state = peertubeLocalStorage.getItem(JobsComponent.LOCAL_STORAGE_STATE) + if (state) this.jobState = state as JobState - if (result) this.jobState = result as JobState + const type = peertubeLocalStorage.getItem(JobsComponent.LOCAL_STORAGE_TYPE) + if (type) this.jobType = type as JobType } - private saveJobState () { - peertubeLocalStorage.setItem(JobsListComponent.JOB_STATE_LOCAL_STORAGE_STATE, this.jobState) + private saveJobStateAndType () { + peertubeLocalStorage.setItem(JobsComponent.LOCAL_STORAGE_STATE, this.jobState) + peertubeLocalStorage.setItem(JobsComponent.LOCAL_STORAGE_TYPE, this.jobType) } }