Project

General

Profile

Download (1.7 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.springframework.context.ApplicationEventPublisher;
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
 */
27
@SpringView(name=DashBoardView.NAME)
28
public class DashBoardView extends DashBoardDesign implements View {
29

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

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

    
34
    @Autowired
35
    ApplicationEventPublisher eventBus;
36

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

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

    
51
    }
52

    
53
}
(1-1/19)