simplify date value format

This commit is contained in:
Michael Shamoon 2022-08-06 21:19:06 -07:00
parent 3d0a26fdb1
commit 7396e4c326

View File

@ -53,17 +53,11 @@ export class DateComponent
}
onSuggestionClick(dateString: string) {
const parsedNgDate = this.ngbDateParserFormatter.parse(dateString)
this.writeValue(this.formatDateAsYYYYMMDD(parsedNgDate))
const parsedDate = this.ngbDateParserFormatter.parse(dateString)
this.writeValue(`${parsedDate.year}-${parsedDate.month}-${parsedDate.day}`)
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()