Вызвать валидацию обратной связи с пользователем без Binder & Bean в Vaadin 8 - PullRequest
0 голосов
/ 19 сентября 2018

В Vaadin 8 встроенная функция проверки устанавливается с помощью Binder, подключенного к компоненту, как , обсуждаемое в Руководстве , и как , показанное вэтот ответ .Я понимаю, как это работает, и это работает хорошо, я ценю мысли и усилия команды Vaadin там.

Однако ... Я просто хочу простое и быстрое поле ввода данных, принимающее только -1, 0,& 1 как значения.Мне нравится, что валидация Vaadin позволяет отклонять неверные данные, помечая поле / подпись ударом, красным цветом и так далее.

➥ Есть ли какой-нибудь способ вызвать обратную связь в стиле проверки для пользователя, не вдаваясь во все сложные проблемы определения бина и установления связующего?

В качестве обходного пути я мог бы заменить свойполе ввода данных с всплывающим меню (он же выпадающий список).Но мой вопрос по-прежнему полезен во всех случаях, когда нам нужен быстрый простой ввод от пользователя, например, в диалоговом окне, без всякой церемонии ввода данных.

Ответы [ 2 ]

0 голосов
/ 20 сентября 2018

Пример приложения

Ответ от Tatu Lund является правильным и решает проблему.Решение - это вызов AbstractComponent::setComponentError.

Вот небольшое приложение Vaadin 8.5.2, которое демонстрирует это в действии.

Это приложение имеет два виджета: TextField и Button, который может быть помечен как в нормальном состоянии…

enter image description here

… или в ошибочном состоянии.

enter image description here

Вот весь файл .java для приложения.

package com.basilbourque.example;

import javax.servlet.annotation.WebServlet;

import com.vaadin.annotations.Theme;
import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.server.UserError;
import com.vaadin.server.VaadinRequest;
import com.vaadin.server.VaadinServlet;
import com.vaadin.ui.*;

import java.util.List;
import java.util.Set;

/**
 * This UI is the application entry point. A UI may either represent a browser window
 * (or tab) or some part of an HTML page where a Vaadin application is embedded.
 * <p>
 * The UI is initialized using {@link #init(VaadinRequest)}. This method is intended to be
 * overridden to add component to the user interface and initialize non-component functionality.
 */
@Theme ( "mytheme" )
public class MyUI extends UI {

    @Override
    protected void init ( VaadinRequest vaadinRequest ) {

        // TextField allows only 'dog' or 'cat' as values.
        Set< String > animals = Set.of( "dog" , "cat" );
        TextField dogOrCat = new TextField();
        dogOrCat.setCaption( "Type dog or cat:" );
        dogOrCat.addValueChangeListener( valueChangeEvent -> {
            if ( animals.contains( dogOrCat.getValue() ) ) {
                dogOrCat.setComponentError( null );
            } else {
                dogOrCat.setComponentError( new UserError( "Oops! You typed something other than 'dog' or 'cat'." ) );
            }
        } );

        // Button which is deemed to be in good condition or erroneous condition by a radio buttons pair.
        Button button = new Button( "Example" );
        button.addClickListener( e -> {
            Notification.show( "This button does nothing." , Notification.Type.HUMANIZED_MESSAGE );
        } );

        // Radio-buttons, to control the good or error condition of button above.
        List< String > radioItems = List.of( "No error" , "Error" );
        RadioButtonGroup< String > radios =
        new RadioButtonGroup<>( "Make button:" );
        radios.setItems( radioItems );
        radios.setValue( radioItems.get( 0 ) ); // Set 1st item by default (index counting = 0).
        radios.addValueChangeListener( valueChangeEvent -> {
            if ( radios.getValue().equals( radioItems.get( 1 ) ) ) {  // Index-counting, so `1` = 2nd list item "Error".
                button.setComponentError( new UserError( "Bad button" ) );
            } else {
                button.setComponentError( null );
            }
        } );

        // Arrange
        final VerticalLayout layout = new VerticalLayout();
        layout.addComponents( dogOrCat , button , radios );
        setContent( layout );
    }

    @WebServlet ( urlPatterns = "/*", name = "MyUIServlet", asyncSupported = true )
    @VaadinServletConfiguration ( ui = MyUI.class, productionMode = false )
    public static class MyUIServlet extends VaadinServlet {
    }
}

Кстати, вот мой POM (pom.xml) файл обновлен для Java 10 и последних версий различных библиотек.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.basilbourque.example</groupId>
    <artifactId>set-comp-error</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>set-comp-error</name>

    <prerequisites>
        <maven>3</maven>
    </prerequisites>

    <properties>
        <vaadin.version>8.5.2</vaadin.version>
        <vaadin.plugin.version>8.5.2</vaadin.plugin.version>
        <jetty.plugin.version>9.4.12.v20180830</jetty.plugin.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>10</maven.compiler.source>
        <maven.compiler.target>10</maven.compiler.target>
        <!-- If there are no local customizations, this can also be "fetch" or "cdn" -->
        <vaadin.widgetset.mode>local</vaadin.widgetset.mode>
    </properties>

    <repositories>
        <repository>
            <id>vaadin-addons</id>
            <url>http://maven.vaadin.com/vaadin-addons</url>
        </repository>
    </repositories>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.vaadin</groupId>
                <artifactId>vaadin-bom</artifactId>
                <version>${vaadin.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-server</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-push</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-client-compiled</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-themes</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>3.2.2</version>
                <configuration>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                    <!-- Exclude an unnecessary file generated by the GWT compiler. -->
                    <packagingExcludes>WEB-INF/classes/VAADIN/widgetsets/WEB-INF/**</packagingExcludes>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.vaadin</groupId>
                <artifactId>vaadin-maven-plugin</artifactId>
                <version>${vaadin.plugin.version}</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>update-theme</goal>
                            <goal>update-widgetset</goal>
                            <goal>compile</goal>
                            <!-- Comment out compile-theme goal to use on-the-fly theme compilation -->
                            <goal>compile-theme</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <version>3.1.0</version>
                <!-- Clean up also any pre-compiled themes -->
                <configuration>
                    <filesets>
                        <fileset>
                            <directory>src/main/webapp/VAADIN/themes</directory>
                            <includes>
                                <include>**/styles.css</include>
                                <include>**/styles.scss.cache</include>
                            </includes>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin>

            <!-- The Jetty plugin allows us to easily test the development build by
                running jetty:run on the command line. -->
            <plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>${jetty.plugin.version}</version>
                <configuration>
                    <scanIntervalSeconds>2</scanIntervalSeconds>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <!-- Vaadin pre-release repositories -->
            <id>vaadin-prerelease</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>

            <repositories>
                <repository>
                    <id>vaadin-prereleases</id>
                    <url>http://maven.vaadin.com/vaadin-prereleases</url>
                </repository>
                <repository>
                    <id>vaadin-snapshots</id>
                    <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
                    <releases>
                        <enabled>false</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>vaadin-prereleases</id>
                    <url>http://maven.vaadin.com/vaadin-prereleases</url>
                </pluginRepository>
                <pluginRepository>
                    <id>vaadin-snapshots</id>
                    <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
                    <releases>
                        <enabled>false</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>

</project>
0 голосов
/ 19 сентября 2018

Binder не предназначен для использования в полевых условиях.

Vaadin 8

Лучшая альтернатива для проверки одного поля с помощью Vaadin 8 - просто подключить поле ValueChangeListener и выполнить все, что когда-либо потребуется в событии изменения значения.

AbstractComponent::setComponentError(ErrorMessage componentError)

Обратите внимание, однако в поле Vaadin 8 компоненты имеют метод setComponentError(..).Вызывая этот метод, ваше однополевое подтверждение с ValueChangeListener на setComponentError(…), вы получаете тот же внешний вид и ощущение, что и связующее в форме.Это работает с текстовыми полями, кнопками и т. Д.

См. Страницу Обработка ошибок в руководстве.

button.setComponentError( new UserError( "Bad click" ) ) ;

image

Vaadin 7

There is a difference between Ваадин 7 и Ваадин 8 .С Vaadin 7 можно было назначить валидатор непосредственно в поле.

...