All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.holonplatform.vaadin7.internal.components.NotificationValidationStatusHandler Maven / Gradle / Ivy

There is a newer version: 5.2.4
Show newest version
/*
 * Copyright 2000-2017 Holon TDCN.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.holonplatform.vaadin7.internal.components;

import java.util.stream.Collectors;

import com.holonplatform.vaadin7.components.ValidationStatusHandler;
import com.vaadin.server.Page;
import com.vaadin.ui.Notification;
import com.vaadin.ui.Notification.Type;

/**
 * A {@link ValidationStatusHandler} which uses an error {@link Notification} to notify validation errors.
 *
 * @since 5.0.0
 */
public class NotificationValidationStatusHandler implements ValidationStatusHandler {

	private final Notification notification;
	private final boolean showAllErrors;

	/**
	 * Constructor
	 * @param notification The notification instance to use, null for default
	 * @param showAllErrors true to display all validation errors, false to show only the
	 *        first
	 */
	public NotificationValidationStatusHandler(Notification notification, boolean showAllErrors) {
		super();
		this.notification = notification;
		this.showAllErrors = showAllErrors;
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.components.ValidationStatusHandler#validationStatusChange(com.holonplatform.vaadin.
	 * components.ValidationStatusHandler.ValidationStatusEvent)
	 */
	@Override
	public void validationStatusChange(ValidationStatusEvent statusChangeEvent) {
		if (statusChangeEvent.isInvalid()) {

			String error = showAllErrors
					? statusChangeEvent.getErrorMessages().stream().collect(Collectors.joining("
")) : statusChangeEvent.getErrorMessage(); if (error == null || error.trim().equals("")) { error = "Validation error"; } if (notification != null) { notification.setCaption(error); notification.show(Page.getCurrent()); } else { Notification.show(error, Type.ERROR_MESSAGE); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy