如何增加Vaadin通知/警告时间?

时间:2015-08-14 00:09:24

标签: vaadin vaadin7

如何增加 Vaadin通知/警告时间?我正在使用Vaadin Valo主题。 “瓦丁书”Notifications页面中没有任何内容有帮助。

1 个答案:

答案 0 :(得分:11)

默认延迟

首先请注意,the five typesNotification默认会有不同的延迟。

  • Notification.Type.HUMANIZED_MESSAGE
    显示,直到用户移动鼠标指针。
  • Notification.Type.TRAY_NOTIFICATION
    用户移动鼠标指针后显示3秒钟。
  • Notification.Type.WARNING_MESSAGE
    用户移动鼠标指针后显示1.5秒。
  • Notification.Type.ERROR_MESSAGE
    显示,直到用户点击该消息。 (延迟设置为-1毫秒)
  • Notification.Type.ASSISTIVE_NOTIFICATION
    在Mac OS X Mountain Lion上的Safari中没有任何内容。

请参阅下文,了解演示每种类型的示例应用程序的源代码。

控制延迟

Notification类有延迟访问权限:getDelayMsecsetDelayMsec

例如,要首先将延迟设置为7秒,我们必须转换为毫秒。

notification.setDelayMsec( 7 * 1_000 );

或者更好的是,使用TimeUnit转换器替换“魔术”数字。转换器仅生成long个值,因此我们必须转换为int以满足Vaadin设置器。

notification.setDelayMsec( ( int ) TimeUnit.SECONDS.toMillis( 7 ) );

请注意默认情况下的一个行为更改。如果在ERROR_MESSAGE上设置正延迟号码,则用户无需点击即可解除;在移动鼠标指针后延迟到期后,错误消息消失

请参阅以下示例应用中的此代码。取消注释调用setter的代码行。

示例App

这是一些Vaadin 7.5.3代码。这个类是一个完整的Vaadin应用程序。只需创建一个新的Vaadin项目并替换为此代码。

禁用/启用设置器时,您可能需要重新启动Vaadin应用程序。 (或者购买license for JRebel以避免重启。)

screenshot of example app with five buttons

package com.example.vaadinnotifs;

import javax.servlet.annotation.WebServlet;

import com.vaadin.annotations.Theme;
import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.annotations.Widgetset;
import com.vaadin.server.Page;
import com.vaadin.server.VaadinRequest;
import com.vaadin.server.VaadinServlet;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Notification;
import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout;
import java.util.concurrent.TimeUnit;

/**
 *  By Basil Bourque. 
 *
 * Source code provided under MIT License. 
 * http://opensource.org/licenses/MIT
 */
@Theme ( "mytheme" )
@Widgetset ( "com.example.vaadinnotifs.MyAppWidgetset" )
@SuppressWarnings ( "serial" )
public class MyUI extends UI
{

    @Override
    protected void init ( VaadinRequest vaadinRequest ) {
        final VerticalLayout layout = new VerticalLayout();
        layout.setMargin( true );
        layout.setSpacing( true );
        setContent( layout );

        layout.addComponent( this.makeButton( Notification.Type.HUMANIZED_MESSAGE ) );
        layout.addComponent( this.makeButton( Notification.Type.TRAY_NOTIFICATION ) );
        layout.addComponent( this.makeButton( Notification.Type.WARNING_MESSAGE ) );
        layout.addComponent( this.makeButton( Notification.Type.ERROR_MESSAGE ) );
        layout.addComponent( this.makeButton( Notification.Type.ASSISTIVE_NOTIFICATION ) );
    }

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

    private Button makeButton ( Notification.Type typeArg ) {
        // Taking advantage of Java’s nifty Enum capability to generically produce each Button instance.
        Button b = new Button( typeArg.name() );
        b.setData( typeArg );  // "setData" and "getData" are accessors for a little hiding place for any object you wish to carry with a Vaadin widget.
        b.addClickListener( new Button.ClickListener()
        {
            @Override
            public void buttonClick ( ClickEvent event ) {
                Notification.Type t = ( Notification.Type ) event.getButton().getData();  // Cast from Object type used by the widget’s hiding place to the `Notification.Type` type we know we used.
                Notification notification = new Notification( "This is a Notification message." , t );
                //notification.setDelayMsec( ( int ) TimeUnit.SECONDS.toMillis( 7 ) );
                Integer delayMillis = notification.getDelayMsec();
                String description = "Notification.Type: " + t.name() + " has delay of " + delayMillis + " ms.";
                notification.setDescription( description );
                notification.show( Page.getCurrent() );
            }
        } );
        return b;
    }

}