From b828424acab22ba0dad0ef0b53add70bed3f29ee Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 4 Mar 2025 23:39:39 -0800 Subject: [PATCH] Use ng select --- src-ui/messages.xlf | 51 ++++++----- .../dates-dropdown.component.html | 89 +++++++++++-------- .../dates-dropdown.component.spec.ts | 38 ++++++-- .../dates-dropdown.component.ts | 43 +++++---- 4 files changed, 142 insertions(+), 79 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 58d8d0d4c..5931ea867 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -1732,7 +1732,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.html - 11 + 10 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts @@ -3344,19 +3344,19 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.html - 50 + 56 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 76 + 82 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 126 + 137 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 152 + 163 src/app/components/common/input/date/date.component.html @@ -3371,19 +3371,19 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.html - 51 + 57 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 77 + 83 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 127 + 138 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 153 + 164 src/app/components/common/input/date/date.component.html @@ -3502,44 +3502,55 @@ 168 + + Relative dates + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 27 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 110 + + now src/app/components/common/dates-dropdown/dates-dropdown.component.html - 25 + 32 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 101 + 114 From src/app/components/common/dates-dropdown/dates-dropdown.component.html - 42 + 48 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 118 + 129 To src/app/components/common/dates-dropdown/dates-dropdown.component.html - 68 + 74 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 144 + 155 Added src/app/components/common/dates-dropdown/dates-dropdown.component.html - 86 + 92 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts @@ -3562,28 +3573,28 @@ Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 67 + 70 Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 72 + 75 Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 77 + 80 Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 82 + 85 diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html index c3ff61ba8..2e113bd2a 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html @@ -7,27 +7,33 @@ + Created - Created - @for (rd of relativeDates; track rd) { - - - @if (createdRelativeDate === rd.id) { - - } - - - - {{rd.name}} - - - - {{ rd.date | customDate:'mediumDate' }} – now - - - - - } + + + + @if (createdRelativeDate) { + + + + + } + + + + + {{ item.name }} {{ item.date | customDate:'mediumDate' }} – now + + + + + @@ -85,27 +91,32 @@ Added - @for (rd of relativeDates; track rd) { - - - @if (addedRelativeDate === rd.id) { - - } - - - - {{rd.name}} - - - - {{ rd.date | customDate:'mediumDate' }} – now - - - - - } + + @if (addedRelativeDate) { + + + + + } + + + + + + {{ item.name }} {{ item.date | customDate:'mediumDate' }} – now + + + + + @if (addedDateFrom) { diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts index 1f6ee909e..ee99a726b 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts @@ -82,10 +82,12 @@ describe('DatesDropdownComponent', () => { it('should support relative dates', fakeAsync(() => { let result: DateSelection component.datesSet.subscribe((date) => (result = date)) - component.setCreatedRelativeDate(null) - component.setCreatedRelativeDate(RelativeDate.WITHIN_1_WEEK) - component.setAddedRelativeDate(null) - component.setAddedRelativeDate(RelativeDate.WITHIN_1_WEEK) + component.createdRelativeDate = RelativeDate.WITHIN_1_WEEK // normally set by ngModel binding in dropdown + component.onSetCreatedRelativeDate({ + id: RelativeDate.WITHIN_1_WEEK, + } as any) + component.addedRelativeDate = RelativeDate.WITHIN_1_WEEK // normally set by ngModel binding in dropdown + component.onSetAddedRelativeDate({ id: RelativeDate.WITHIN_1_WEEK } as any) tick(500) expect(result).toEqual({ createdFrom: null, @@ -147,8 +149,19 @@ describe('DatesDropdownComponent', () => { expect(component.addedDateTo).toBeNull() }) + it('should support clearRelativeDate', () => { + component.createdRelativeDate = RelativeDate.WITHIN_1_WEEK + component.clearCreatedRelativeDate() + expect(component.createdRelativeDate).toBeNull() + + component.addedRelativeDate = RelativeDate.WITHIN_1_WEEK + component.clearAddedRelativeDate() + expect(component.addedRelativeDate).toBeNull() + }) + it('should limit keyboard events', () => { - const input: HTMLInputElement = fixture.nativeElement.querySelector('input') + const input: HTMLInputElement = + fixture.nativeElement.querySelector('input.form-control') let event: KeyboardEvent = new KeyboardEvent('keypress', { key: '9', }) @@ -163,4 +176,19 @@ describe('DatesDropdownComponent', () => { input.dispatchEvent(event) expect(eventSpy).toHaveBeenCalled() }) + + it('should support debounce', fakeAsync(() => { + let result: DateSelection + component.datesSet.subscribe((date) => (result = date)) + component.onChangeDebounce() + tick(500) + expect(result).toEqual({ + createdFrom: null, + createdTo: null, + createdRelativeDateID: null, + addedFrom: null, + addedTo: null, + addedRelativeDateID: null, + }) + })) }) diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts index e7d506d18..d56b00358 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts @@ -1,4 +1,4 @@ -import { NgClass } from '@angular/common' +import { NgClass, NgTemplateOutlet } from '@angular/common' import { Component, EventEmitter, @@ -13,6 +13,7 @@ import { NgbDatepickerModule, NgbDropdownModule, } from '@ng-bootstrap/ng-bootstrap' +import { NgSelectModule } from '@ng-select/ng-select' import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' import { Subject, Subscription } from 'rxjs' import { debounceTime } from 'rxjs/operators' @@ -32,10 +33,10 @@ export interface DateSelection { } export enum RelativeDate { - WITHIN_1_WEEK = 0, - WITHIN_1_MONTH = 1, - WITHIN_3_MONTHS = 2, - WITHIN_1_YEAR = 3, + WITHIN_1_WEEK = 1, + WITHIN_1_MONTH = 2, + WITHIN_3_MONTHS = 3, + WITHIN_1_YEAR = 4, } @Component({ @@ -49,9 +50,11 @@ export enum RelativeDate { NgxBootstrapIconsModule, NgbDatepickerModule, NgbDropdownModule, + NgSelectModule, FormsModule, ReactiveFormsModule, NgClass, + NgTemplateOutlet, ], }) export class DatesDropdownComponent implements OnInit, OnDestroy { @@ -88,38 +91,38 @@ export class DatesDropdownComponent implements OnInit, OnDestroy { // created @Input() - createdDateTo: string + createdDateTo: string = null @Output() createdDateToChange = new EventEmitter() @Input() - createdDateFrom: string + createdDateFrom: string = null @Output() createdDateFromChange = new EventEmitter() @Input() - createdRelativeDate: RelativeDate + createdRelativeDate: RelativeDate = null @Output() createdRelativeDateChange = new EventEmitter() // added @Input() - addedDateTo: string + addedDateTo: string = null @Output() addedDateToChange = new EventEmitter() @Input() - addedDateFrom: string + addedDateFrom: string = null @Output() addedDateFromChange = new EventEmitter() @Input() - addedRelativeDate: RelativeDate + addedRelativeDate: RelativeDate = null @Output() addedRelativeDateChange = new EventEmitter() @@ -172,17 +175,17 @@ export class DatesDropdownComponent implements OnInit, OnDestroy { this.onChange() } - setCreatedRelativeDate(rd: RelativeDate) { + onSetCreatedRelativeDate(rd: { id: number; name: string; date: number }) { + // createdRelativeDate is set by ngModel this.createdDateTo = null this.createdDateFrom = null - this.createdRelativeDate = this.createdRelativeDate == rd ? null : rd this.onChange() } - setAddedRelativeDate(rd: RelativeDate) { + onSetAddedRelativeDate(rd: { id: number; name: string; date: number }) { + // addedRelativeDate is set by ngModel this.addedDateTo = null this.addedDateFrom = null - this.addedRelativeDate = this.addedRelativeDate == rd ? null : rd this.onChange() } @@ -224,6 +227,11 @@ export class DatesDropdownComponent implements OnInit, OnDestroy { this.onChange() } + clearCreatedRelativeDate() { + this.createdRelativeDate = null + this.onChange() + } + clearAddedTo() { this.addedDateTo = null this.onChange() @@ -234,6 +242,11 @@ export class DatesDropdownComponent implements OnInit, OnDestroy { this.onChange() } + clearAddedRelativeDate() { + this.addedRelativeDate = null + this.onChange() + } + // prevent chars other than numbers and separators onKeyPress(event: KeyboardEvent) { if ('Enter' !== event.key && !/[0-9,\.\/-]+/.test(event.key)) {