diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index e0d30bdc2..f5d270376 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -1565,11 +1565,11 @@ src/app/components/manage/workflows/workflows.component.html - 41 + 48 src/app/components/manage/workflows/workflows.component.html - 52 + 59 @@ -2470,11 +2470,11 @@ src/app/components/manage/workflows/workflows.component.html - 40 + 47 src/app/components/manage/workflows/workflows.component.html - 49 + 56 @@ -3700,7 +3700,7 @@ src/app/components/manage/workflows/workflows.component.html - 30 + 34 @@ -5059,11 +5059,11 @@ src/app/components/manage/workflows/workflows.component.html - 42 + 49 src/app/components/manage/workflows/workflows.component.html - 57 + 64 @@ -7533,7 +7533,7 @@ src/app/components/manage/workflows/workflows.component.html - 30 + 34 @@ -7927,7 +7927,7 @@ No workflows defined. src/app/components/manage/workflows/workflows.component.html - 66 + 73 @@ -7972,6 +7972,27 @@ 128 + + Enabled workflow + + src/app/components/manage/workflows/workflows.component.ts + 139 + + + + Disabled workflow + + src/app/components/manage/workflows/workflows.component.ts + 140 + + + + Error toggling workflow. + + src/app/components/manage/workflows/workflows.component.ts + 146 + + Not Found diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.html b/src-ui/src/app/components/manage/workflows/workflows.component.html index 1e83efd36..ddb8a8654 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.html +++ b/src-ui/src/app/components/manage/workflows/workflows.component.html @@ -15,9 +15,9 @@
  • Name
    -
    Sort order
    +
    Sort order
    Status
    -
    Triggers
    +
    Triggers
    Actions
  • @@ -26,9 +26,16 @@
  • -
    {{workflow.order}}
    -
    @if(workflow.enabled) { Enabled } @else { Disabled }
    -
    {{getTypesList(workflow)}}
    +
    {{workflow.order}}
    +
    +
    + + +
    +
    +
    {{getTypesList(workflow)}}
    diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts index 0bccbad2d..9d92d9ba7 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts @@ -211,4 +211,27 @@ describe('WorkflowsComponent', () => { editDialog.confirmClicked.emit() expect(reloadSpy).toHaveBeenCalled() }) + + it('should update workflow when enable is toggled', () => { + const patchSpy = jest.spyOn(workflowService, 'patch') + const toggleInput = fixture.debugElement.query( + By.css('input[type="checkbox"]') + ) + const toastErrorSpy = jest.spyOn(toastService, 'showError') + const toastInfoSpy = jest.spyOn(toastService, 'showInfo') + // fail first + patchSpy.mockReturnValueOnce( + throwError(() => new Error('Error getting config')) + ) + toggleInput.nativeElement.click() + expect(patchSpy).toHaveBeenCalled() + expect(toastErrorSpy).toHaveBeenCalled() + // succeed second + patchSpy.mockReturnValueOnce(of(workflows[0])) + toggleInput.nativeElement.click() + patchSpy.mockReturnValueOnce(of({ ...workflows[0], enabled: false })) + toggleInput.nativeElement.click() + expect(patchSpy).toHaveBeenCalled() + expect(toastInfoSpy).toHaveBeenCalled() + }) }) diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.ts b/src-ui/src/app/components/manage/workflows/workflows.component.ts index 92b421e9f..592dd3efe 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.ts @@ -130,4 +130,21 @@ export class WorkflowsComponent }) }) } + + onWorkflowEnableToggled(workflow: Workflow) { + this.workflowService.patch(workflow).subscribe({ + next: () => { + this.toastService.showInfo( + workflow.enabled + ? $localize`Enabled workflow` + : $localize`Disabled workflow` + ) + this.workflowService.clearCache() + this.reload() + }, + error: (e) => { + this.toastService.showError($localize`Error toggling workflow.`, e) + }, + }) + } }