mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
import { RuleEventDto } from '@app/shared';
|
|
|
|
@Component({
|
|
selector: '[sqxRuleEvent]',
|
|
styleUrls: ['./rule-event.component.scss'],
|
|
templateUrl: './rule-event.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class RuleEventComponent {
|
|
@Input('sqxRuleEvent')
|
|
public event!: RuleEventDto;
|
|
|
|
@Input()
|
|
public expanded = false;
|
|
|
|
@Output()
|
|
public expandedChange = new EventEmitter<any>();
|
|
|
|
@Output()
|
|
public enqueue = new EventEmitter<any>();
|
|
|
|
@Output()
|
|
public cancel = new EventEmitter<any>();
|
|
|
|
public get jobResultClass() {
|
|
return getClass(this.event.jobResult);
|
|
}
|
|
|
|
public get resultClass() {
|
|
return getClass(this.event.result);
|
|
}
|
|
}
|
|
|
|
function getClass(result: string) {
|
|
if (result === 'Retry') {
|
|
return 'warning';
|
|
} else if (result === 'Failed' || result === 'Cancelled') {
|
|
return 'danger';
|
|
} else if (result === 'Pending') {
|
|
return 'secondary';
|
|
} else {
|
|
return result.toLowerCase();
|
|
}
|
|
}
|
|
|