From b8e7506de42723538faac6aab528a0b17ad8290f Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Sun, 27 Dec 2020 23:55:19 +0100 Subject: [PATCH] partial selection model implementation --- .../date-dropdown/date-dropdown.component.ts | 12 +- .../filterable-dropdown.component.html | 12 +- .../filterable-dropdown.component.ts | 145 ++++++++---- .../toggleable-dropdown-button.component.ts | 3 +- .../bulk-editor/bulk-editor.component.html | 4 +- .../filter-editor.component.html | 10 +- .../filter-editor/filter-editor.component.ts | 222 +++++++----------- 7 files changed, 199 insertions(+), 209 deletions(-) diff --git a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts index e787ce11e..1bf5d0216 100644 --- a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts +++ b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts @@ -30,9 +30,15 @@ export class DateDropdownComponent implements OnInit, OnDestroy { @Input() dateBefore: string + @Output() + dateBeforeChange = new EventEmitter() + @Input() dateAfter: string + @Output() + dateAfterChange = new EventEmitter() + @Input() title: string @@ -83,6 +89,8 @@ export class DateDropdownComponent implements OnInit, OnDestroy { } onChange() { + this.dateAfterChange.emit(this.dateAfter) + this.dateBeforeChange.emit(this.dateBefore) this.datesSet.emit({after: this.dateAfter, before: this.dateBefore}) } @@ -91,12 +99,12 @@ export class DateDropdownComponent implements OnInit, OnDestroy { } clearBefore() { - this.dateBefore = null; + this.dateBefore = null this.onChange() } clearAfter() { - this.dateAfter = null; + this.dateAfter = null this.onChange() } diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html index 5f9440336..1261ff921 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -1,14 +1,14 @@
- @@ -19,9 +19,9 @@
-
- - +
+ +