From 49d3f227042bc090dec48f83bbbf7da3029828a5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 2 Aug 2018 08:46:08 -0400 Subject: [PATCH] format multiple error messages when validating --- src/angular/services/validation.service.ts | 35 ++++++++++++++++++---- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/src/angular/services/validation.service.ts b/src/angular/services/validation.service.ts index ddcc37aff..dbef4e9a7 100644 --- a/src/angular/services/validation.service.ts +++ b/src/angular/services/validation.service.ts @@ -1,12 +1,21 @@ -import { Injectable } from '@angular/core'; +import { + Injectable, + SecurityContext, +} from '@angular/core'; +import { DomSanitizer } from '@angular/platform-browser'; -import { ToasterService } from 'angular2-toaster'; +import { + BodyOutputType, + Toast, + ToasterService, +} from 'angular2-toaster'; import { I18nService } from '../../abstractions/i18n.service'; @Injectable() export class ValidationService { - constructor(private toasterService: ToasterService, private i18nService: I18nService) { } + constructor(private toasterService: ToasterService, private i18nService: I18nService, + private sanitizer: DomSanitizer) { } showError(data: any): string[] { const defaultErrorMessage = this.i18nService.t('unexpectedError'); @@ -25,13 +34,29 @@ export class ValidationService { } data.validationErrors[key].forEach((item: string) => { - errors.push(item); + let prefix = ''; + if (key.indexOf('[') > -1 && key.indexOf(']') > -1) { + const lastSep = key.lastIndexOf('.'); + prefix = key.substr(0, lastSep > -1 ? lastSep : key.length) + ': '; + } + errors.push(prefix + item); }); } } - if (errors.length > 0) { + if (errors.length === 1) { this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'), errors[0]); + } else if (errors.length > 1) { + let errorMessage = ''; + errors.forEach((e) => errorMessage += ('

' + this.sanitizer.sanitize(SecurityContext.HTML, e) + '

')); + const toast: Toast = { + type: 'error', + title: this.i18nService.t('errorOccurred'), + body: errorMessage, + bodyOutputType: BodyOutputType.TrustedHtml, + timeout: 5000 * errors.length, + }; + this.toasterService.popAsync(toast); } return errors;