de.knightsoftnet.gwtp.spring.client.rest.helper.AbstractViewWithErrorHandling Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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 de.knightsoftnet.gwtp.spring.client.rest.helper;
import de.knightsoftnet.validators.client.editor.BeanValidationEditorDriver;
import com.gwtplatform.mvp.client.ViewImpl;
import elemental2.dom.DomGlobal;
import elemental2.dom.Element;
import elemental2.dom.HTMLInputElement;
import elemental2.dom.NodeList;
import jakarta.validation.ConstraintViolation;
/**
* abstract editor implementation with default functionality used in forms.
*
* @author Manfred Tremmel
*
* @param presenter type
* @param editable data type
*/
public abstract class AbstractViewWithErrorHandling extends ViewImpl
implements EditorWithErrorHandling
{
protected P presenter;
protected final BeanValidationEditorDriver> driver;
/**
* constructor with injected parameters.
*
* @param pdriver editor driver
*/
@SuppressWarnings("unchecked")
protected AbstractViewWithErrorHandling(final BeanValidationEditorDriver> pdriver) {
super();
this.driver = (BeanValidationEditorDriver>) pdriver;
}
@Override
public void setPresenter(final P ppresenter) {
this.presenter = ppresenter;
}
public final P getPresenter() {
return this.presenter;
}
@Override
public void fillForm(final F pformData) {
this.driver.edit(pformData);
}
@Override
public abstract void showMessage(String pmessage);
@Override
public void setFocusOnFirstWidget() {
// implementation sets focus on first input element with autofocus attribute
final NodeList elements = DomGlobal.document.getElementsByTagName("input");
for (int i = 0; i < elements.getLength(); i++) {
final HTMLInputElement element = (HTMLInputElement) elements.getAt(i);
if (element.autofocus) {
element.focus();
break;
}
}
}
@Override
public void setConstraintViolations(final Iterable> pvalidationErrorSet) {
this.driver.setJakartaConstraintViolations(pvalidationErrorSet);
}
}