From 6bc51556627f0fa56dca7afa281680c8f53ba1a0 Mon Sep 17 00:00:00 2001 From: Carlo Venusino Date: Wed, 28 Apr 2021 17:16:39 +0200 Subject: [PATCH] TT#100756 CallRecordings - As Customer, I want to filter CallRecordings by time range - Integrate date range input in CallRecording list view - Adjust data fetching part - Specify UX flow Change-Id: I666aaa397a09ec9a5c2c63e76485e7fc4a797a46 --- .../CallRecording/CscCallRecordingFilters.vue | 273 ++++++++++++++++++ src/i18n/de.json | 1 + src/i18n/en.json | 1 + src/i18n/es.json | 1 + src/i18n/fr.json | 1 + src/i18n/it.json | 1 + src/pages/CscPageCallRecording.vue | 167 +++++++---- 7 files changed, 390 insertions(+), 55 deletions(-) create mode 100644 src/components/pages/CallRecording/CscCallRecordingFilters.vue diff --git a/src/components/pages/CallRecording/CscCallRecordingFilters.vue b/src/components/pages/CallRecording/CscCallRecordingFilters.vue new file mode 100644 index 00000000..023f5ab1 --- /dev/null +++ b/src/components/pages/CallRecording/CscCallRecordingFilters.vue @@ -0,0 +1,273 @@ + + + diff --git a/src/i18n/de.json b/src/i18n/de.json index 415270bb..5ab6e798 100644 --- a/src/i18n/de.json +++ b/src/i18n/de.json @@ -538,6 +538,7 @@ "Time is invalid": "", "Time of the day": "Uhrzeit des Tages", "Timeout": "Klingeldauer", + "Timerange": "", "To": "An", "Today": "Heute", "Toggled attachment successfully": "Voicemail als Anhang geändert", diff --git a/src/i18n/en.json b/src/i18n/en.json index 914c8205..f4222de8 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -538,6 +538,7 @@ "Time is invalid": "Time is invalid", "Time of the day": "Time of the day", "Timeout": "Timeout", + "Timerange": "Timerange", "To": "To", "Today": "Today", "Toggled attachment successfully": "Toggled attachment successfully", diff --git a/src/i18n/es.json b/src/i18n/es.json index 9c598f80..0af6110d 100644 --- a/src/i18n/es.json +++ b/src/i18n/es.json @@ -538,6 +538,7 @@ "Time is invalid": "", "Time of the day": "Hora del día", "Timeout": "Tiempo de espera", + "Timerange": "", "To": "Para", "Today": "Hoy", "Toggled attachment successfully": "Adjunto cambiado correctamente", diff --git a/src/i18n/fr.json b/src/i18n/fr.json index 2839c698..4db19a45 100644 --- a/src/i18n/fr.json +++ b/src/i18n/fr.json @@ -538,6 +538,7 @@ "Time is invalid": "", "Time of the day": "Heure de la journée", "Timeout": "Temporisation", + "Timerange": "", "To": "A", "Today": "", "Toggled attachment successfully": "Les pièces jointes ont été activées avec succès", diff --git a/src/i18n/it.json b/src/i18n/it.json index 9e0cf519..f35b96a4 100644 --- a/src/i18n/it.json +++ b/src/i18n/it.json @@ -538,6 +538,7 @@ "Time is invalid": "", "Time of the day": "Ora del giorno", "Timeout": "Timeout", + "Timerange": "", "To": "A", "Today": "Oggi", "Toggled attachment successfully": "Opzione allegato modificata con successo", diff --git a/src/pages/CscPageCallRecording.vue b/src/pages/CscPageCallRecording.vue index 0864aa9e..085c4e61 100644 --- a/src/pages/CscPageCallRecording.vue +++ b/src/pages/CscPageCallRecording.vue @@ -1,7 +1,37 @@