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=96e0f25b00b41e1511487c45714ab7d459567af8;hpb=66357162f8e1227495f09bd4f68446aad7071c6d;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 96e0f25b0..b12d7f80a 100644 --- a/client/src/app/+admin/system/jobs/jobs.component.ts +++ b/client/src/app/+admin/system/jobs/jobs.component.ts @@ -16,23 +16,28 @@ 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 = 'waiting' + 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-transcoding', 'video-file-import', 'video-import', + 'video-live-ending', + 'video-redundancy', + 'video-transcoding', 'videos-views', - 'activitypub-refresher', - 'video-redundancy' + 'move-to-object-storage' ] jobs: Job[] = [] @@ -43,7 +48,7 @@ export class JobsComponent extends RestTable implements OnInit { constructor ( private notifier: Notifier, private jobsService: JobService - ) { + ) { super() } @@ -56,24 +61,72 @@ export class JobsComponent extends RestTable implements OnInit { 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.reloadData() this.saveJobStateAndType() } - protected loadData () { + hasProgress () { + return this.jobType === 'all' || this.jobType === 'video-transcoding' + } + + getProgress (job: Job) { + if (job.state === 'active') return job.progress + '%' + + return '' + } + + 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.jobType, 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 loadJobStateAndType () {