Project

General

Profile

Download (1.69 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.vaadin.view.registration;
10

    
11
import org.springframework.beans.factory.annotation.Autowired;
12
import org.vaadin.spring.events.EventBus;
13

    
14
import com.vaadin.navigator.View;
15
import com.vaadin.navigator.ViewChangeListener.ViewChangeEvent;
16
import com.vaadin.server.Responsive;
17
import com.vaadin.spring.annotation.SpringView;
18

    
19
import eu.etaxonomy.cdm.vaadin.design.registration.DashBoardDesign;
20
import eu.etaxonomy.vaadin.ui.navigation.NavigationEvent;
21

    
22
/**
23
 * @author a.kohlbecker
24
 * @since Mar 2, 2017
25
 */
26
@SpringView(name=DashBoardView.NAME)
27
public class DashBoardView extends DashBoardDesign implements View {
28

    
29
    public static final String NAME = "dashboard";
30

    
31
    private static final long serialVersionUID = -6172448806905158782L;
32

    
33
    @Autowired
34
    protected EventBus.UIEventBus uiEventBus;
35

    
36
    public DashBoardView() {
37
        Responsive.makeResponsive(dashboard);
38
        buttonNew.addClickListener(e -> uiEventBus.publish(this, new NavigationEvent(StartRegistrationViewBean.NAME)));
39
        buttonContinue.addClickListener(e -> uiEventBus.publish(this, new NavigationEvent(ListViewBean.NAME + "/" + ListView.Mode.inProgress.name())));
40
        buttonList.addClickListener(e -> uiEventBus.publish(this, new NavigationEvent(ListViewBean.NAME + "/" + ListViewBean.Mode.all.name())));
41
    }
42

    
43
    /**
44
     * {@inheritDoc}
45
     */
46
    @Override
47
    public void enter(ViewChangeEvent event) {
48
        // TODO Auto-generated method stub
49

    
50
    }
51

    
52
}
(1-1/18)