diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 9329edb5d..9f8cf01b1 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -675,7 +675,7 @@ src/app/components/admin/tasks/tasks.component.html - 16 + 41 @@ -694,7 +694,7 @@ src/app/components/admin/tasks/tasks.component.html - 23 + 48 src/app/components/admin/trash/trash.component.html @@ -1409,7 +1409,7 @@ src/app/components/admin/tasks/tasks.component.html - 42 + 67 src/app/components/admin/trash/trash.component.html @@ -1874,11 +1874,18 @@ 3 + + Filter by + + src/app/components/admin/tasks/tasks.component.html + 16 + + Name src/app/components/admin/tasks/tasks.component.html - 36 + 61 src/app/components/admin/tasks/tasks.component.ts @@ -1989,7 +1996,7 @@ Created src/app/components/admin/tasks/tasks.component.html - 37 + 62 src/app/components/common/dates-dropdown/dates-dropdown.component.html @@ -2016,28 +2023,28 @@ Results src/app/components/admin/tasks/tasks.component.html - 39 + 64 Info src/app/components/admin/tasks/tasks.component.html - 41 + 66 click for full output src/app/components/admin/tasks/tasks.component.html - 72 + 97 Dismiss src/app/components/admin/tasks/tasks.component.html - 85 + 110 src/app/components/admin/tasks/tasks.component.ts @@ -2048,56 +2055,49 @@ Open Document src/app/components/admin/tasks/tasks.component.html - 90 + 115 {VAR_PLURAL, plural, =1 {One task} other { total tasks}} src/app/components/admin/tasks/tasks.component.html - 109 + 134  ( selected) src/app/components/admin/tasks/tasks.component.html - 111 + 136 Failed src/app/components/admin/tasks/tasks.component.html - 123,125 + 148,150 Complete src/app/components/admin/tasks/tasks.component.html - 131,133 + 156,158 Started src/app/components/admin/tasks/tasks.component.html - 139,141 + 164,166 Queued src/app/components/admin/tasks/tasks.component.html - 147,149 - - - - Filter by - - src/app/components/admin/tasks/tasks.component.html - 157 + 172,174 diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.html b/src-ui/src/app/components/admin/tasks/tasks.component.html index 75dda1394..f5bf125be 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.html +++ b/src-ui/src/app/components/admin/tasks/tasks.component.html @@ -4,14 +4,39 @@ info="File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process." i18n-info > -
+
- -
+
+
+ Filter by + @if (filterTargets.length > 1) { +
+ + +
+ } @else { + {{filterTargetName}} + } + @if (filterText?.length) { + + } + +
+
+
@@ -151,32 +176,5 @@ -
  • -
    -
    - Filter by - @if (filterTargets.length > 1) { -
    - - -
    - } @else { - {{filterTargetName}} - } - @if (filterText?.length) { - - } - -
    -
    -
  • diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts b/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts index 4d3e600ac..061cc7e1c 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts +++ b/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts @@ -291,7 +291,9 @@ describe('TasksComponent', () => { }) it('should filter tasks by file name', () => { - const input = fixture.debugElement.query(By.css('ul input[type=text]')) + const input = fixture.debugElement.query( + By.css('pngx-page-header input[type=text]') + ) input.nativeElement.value = '191092' input.nativeElement.dispatchEvent(new Event('input')) jest.advanceTimersByTime(150) // debounce time @@ -306,7 +308,9 @@ describe('TasksComponent', () => { component.activeTab = TaskTab.Failed fixture.detectChanges() component.filterTargetID = 1 - const input = fixture.debugElement.query(By.css('ul input[type=text]')) + const input = fixture.debugElement.query( + By.css('pngx-page-header input[type=text]') + ) input.nativeElement.value = 'duplicate' input.nativeElement.dispatchEvent(new Event('input')) jest.advanceTimersByTime(150) // debounce time @@ -318,7 +322,9 @@ describe('TasksComponent', () => { }) it('should support keyboard events for filtering', () => { - const input = fixture.debugElement.query(By.css('ul input[type=text]')) + const input = fixture.debugElement.query( + By.css('pngx-page-header input[type=text]') + ) input.nativeElement.value = '191092' input.nativeElement.dispatchEvent( new KeyboardEvent('keyup', { key: 'Enter' })