import { Component, OnInit } from '@angular/core' import { WorkflowService } from 'src/app/services/rest/workflow.service' import { ComponentWithPermissions } from '../../with-permissions/with-permissions.component' import { Subject, takeUntil } from 'rxjs' import { Workflow } from 'src/app/data/workflow' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { ToastService } from 'src/app/services/toast.service' import { PermissionsService } from 'src/app/services/permissions.service' import { WorkflowEditDialogComponent, WORKFLOW_TYPE_OPTIONS, } from '../../common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component' import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component' import { EditDialogMode } from '../../common/edit-dialog/edit-dialog.component' @Component({ selector: 'pngx-workflows', templateUrl: './workflows.component.html', styleUrls: ['./workflows.component.scss'], }) export class WorkflowsComponent extends ComponentWithPermissions implements OnInit { public workflows: Workflow[] = [] private unsubscribeNotifier: Subject = new Subject() constructor( private workflowService: WorkflowService, public permissionsService: PermissionsService, private modalService: NgbModal, private toastService: ToastService ) { super() } ngOnInit() { this.reload() } reload() { this.workflowService .listAll() .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((r) => { this.workflows = r.results }) } getTypesList(template: Workflow): string { return template.triggers .map( (trigger) => WORKFLOW_TYPE_OPTIONS.find((t) => t.id === trigger.type).name ) .join(', ') } editWorkflow(workflow: Workflow) { const modal = this.modalService.open(WorkflowEditDialogComponent, { backdrop: 'static', size: 'xl', }) modal.componentInstance.dialogMode = workflow ? EditDialogMode.EDIT : EditDialogMode.CREATE if (workflow) { // quick "deep" clone so original doesn't get modified const clone = Object.assign({}, workflow) clone.actions = [...workflow.actions] clone.triggers = [...workflow.triggers] modal.componentInstance.object = clone } modal.componentInstance.succeeded .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((newWorkflow) => { this.toastService.showInfo( $localize`Saved workflow "${newWorkflow.name}".` ) this.workflowService.clearCache() this.reload() }) modal.componentInstance.failed .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((e) => { this.toastService.showError($localize`Error saving workflow.`, e) }) } deleteWorkflow(workflow: Workflow) { const modal = this.modalService.open(ConfirmDialogComponent, { backdrop: 'static', }) modal.componentInstance.title = $localize`Confirm delete workflow` modal.componentInstance.messageBold = $localize`This operation will permanently delete this workflow.` modal.componentInstance.message = $localize`This operation cannot be undone.` modal.componentInstance.btnClass = 'btn-danger' modal.componentInstance.btnCaption = $localize`Proceed` modal.componentInstance.confirmClicked.subscribe(() => { modal.componentInstance.buttonsEnabled = false this.workflowService.delete(workflow).subscribe({ next: () => { modal.close() this.toastService.showInfo($localize`Deleted workflow`) this.workflowService.clearCache() this.reload() }, error: (e) => { this.toastService.showError($localize`Error deleting workflow.`, e) }, }) }) } }