diff --git a/src-ui/src/app/components/common/input/date/date.component.html b/src-ui/src/app/components/common/input/date/date.component.html
index e742ead9b..926429a8d 100644
--- a/src-ui/src/app/components/common/input/date/date.component.html
+++ b/src-ui/src/app/components/common/input/date/date.component.html
@@ -12,4 +12,10 @@
Invalid date.
{{hint}}
+ 0">
+ Suggestions:
+
+ {{s}}
+
+
diff --git a/src-ui/src/app/components/common/input/date/date.component.ts b/src-ui/src/app/components/common/input/date/date.component.ts
index 44e7c7513..cf475df5e 100644
--- a/src-ui/src/app/components/common/input/date/date.component.ts
+++ b/src-ui/src/app/components/common/input/date/date.component.ts
@@ -1,8 +1,10 @@
-import { Component, forwardRef, OnInit } from '@angular/core'
+import { Component, forwardRef, Input, OnInit } from '@angular/core'
import { NG_VALUE_ACCESSOR } from '@angular/forms'
-import { NgbDateParserFormatter } from '@ng-bootstrap/ng-bootstrap'
+import {
+ NgbDateParserFormatter,
+ NgbDateStruct,
+} from '@ng-bootstrap/ng-bootstrap'
import { SettingsService } from 'src/app/services/settings.service'
-import { LocalizedDateParserFormatter } from 'src/app/utils/ngb-date-parser-formatter'
import { AbstractInputComponent } from '../abstract-input'
@Component({
@@ -28,6 +30,40 @@ export class DateComponent
super()
}
+ @Input()
+ suggestions: Date[]
+
+ getSuggestions() {
+ if (this.suggestions == null) return []
+
+ return this.suggestions
+ .map((s) => new Date(s)) // required to call the date functions below
+ .filter(
+ (d) =>
+ this.value === null || // if value is not set, take all suggestions
+ d.toISOString().slice(0, 10) != this.value // otherwise filter out the current value
+ )
+ .map((s) =>
+ this.ngbDateParserFormatter.format({
+ year: s.getFullYear(),
+ month: s.getMonth() + 1, // month of Date is zero based
+ day: s.getDate(),
+ })
+ )
+ }
+
+ onSuggestionClick(dateString: string) {
+ const parsedNgDate = this.ngbDateParserFormatter.parse(dateString)
+ this.writeValue(this.formatDateAsYYYYMMDD(parsedNgDate))
+ this.onChange(this.value)
+ }
+
+ formatDateAsYYYYMMDD(date: NgbDateStruct) {
+ const monthPrefix = date.month > 9 ? '' : '0'
+ const dayPrefix = date.day > 9 ? '' : '0'
+ return `${date.year}-${monthPrefix}${date.month}-${dayPrefix}${date.day}`
+ }
+
ngOnInit(): void {
super.ngOnInit()
this.placeholder = this.settings.getLocalizedDateInputFormat()
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html
index 6c8fc463f..ea191e55c 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.html
+++ b/src-ui/src/app/components/document-detail/document-detail.component.html
@@ -74,7 +74,8 @@
-
+