From 52f0a3dfb9eb6bfbc2fd550c4fee530b3482bd12 Mon Sep 17 00:00:00 2001 From: Viktor Date: Thu, 10 Mar 2022 21:31:54 +0100 Subject: [PATCH] Parse dates when entered without separators This adds date dividers if none are entered. It also adds the current year if it wasn't entered. This allows users to just enter 1003, 100322, 10032022 and have it expanded to 10.03.2022, in the case of the German format. (All other formats are also supported) It also replaces commas with the date divider. This allows quick entry of the date on the numpad. --- .../app/utils/ngb-date-parser-formatter.ts | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/src-ui/src/app/utils/ngb-date-parser-formatter.ts b/src-ui/src/app/utils/ngb-date-parser-formatter.ts index 07d31a525..ceb773f9f 100644 --- a/src-ui/src/app/utils/ngb-date-parser-formatter.ts +++ b/src-ui/src/app/utils/ngb-date-parser-formatter.ts @@ -27,7 +27,67 @@ export class LocalizedDateParserFormatter extends NgbDateParserFormatter { ) } + /** + * This adds date separators if none are entered. + * It also adds the current year if it wasn't entered. + * + * This allows users to just enter 1003, 100322, 10032022 and + * have it expanded to 10.03.2022, in the case of the German format. + * (All other formats are also supported) + * + * It also replaces commas with the date separator. + * This allows quick entry of the date on the numpad. + */ + private preformatDateInput(value: string): string { + let inputFormat = this.getDateInputFormat() + let dateSeparator = inputFormat.replace(/[dmy]/gi, '').charAt(0) + + value = value.replace(/,/g, dateSeparator) + + if (value.includes(dateSeparator)) { return value } + + if (value.length == 4 && inputFormat.substring(0, 4) != 'yyyy') { + return value.substring(0, 2) + + dateSeparator + + value.substring(2, 4) + + dateSeparator + + new Date().getFullYear() + } + else if (value.length == 4 && inputFormat.substring(0, 4) == 'yyyy') { + return new Date().getFullYear() + + dateSeparator + + value.substring(0, 2) + + dateSeparator + + value.substring(2, 4) + } + else if (value.length == 6) { + return value.substring(0, 2) + + dateSeparator + + value.substring(2, 4) + + dateSeparator + + value.substring(4, 6) + } + else if (value.length == 8 && inputFormat.substring(0, 4) != 'yyyy') { + return value.substring(0, 2) + + dateSeparator + + value.substring(2, 4) + + dateSeparator + + value.substring(4, 8) + } + else if (value.length == 8 && inputFormat.substring(0, 4) == 'yyyy') { + return value.substring(0, 4) + + dateSeparator + + value.substring(4, 6) + + dateSeparator + + value.substring(6, 8) + } + else { + return value + } + } + parse(value: string): NgbDateStruct | null { + value = this.preformatDateInput(value); let match = this.getDateParseRegex().exec(value) if (match) { let dateStruct = {