All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mateu.mdd.vaadin.components.app.views.firstLevel.AreaComponent Maven / Gradle / Ivy

There is a newer version: 1.1.60
Show newest version
package io.mateu.mdd.vaadin.components.app.views.firstLevel;

import com.google.common.base.Strings;
import com.vaadin.shared.ui.ContentMode;
import com.vaadin.ui.Button;
import com.vaadin.ui.Label;
import com.vaadin.ui.themes.ValoTheme;
import io.mateu.mdd.core.app.AbstractArea;
import io.mateu.mdd.core.app.AbstractModule;
import io.mateu.mdd.core.ui.MDDUIAccessor;
import io.mateu.mdd.shared.interfaces.IModule;
import io.mateu.mdd.vaadin.components.views.AbstractViewComponent;

public class AreaComponent extends AbstractViewComponent {

    private final AbstractArea area;

    @Override
    public String toString() {
        return "" + area.getName();
    }

    public AreaComponent(AbstractArea area) {
        this.area = area;
        setTitle(area.getName());
        addStyleName("areaflowcomponent");
    }

    @Override
    public AbstractViewComponent build() throws Exception {

        removeAllComponents();

        if (MDDUIAccessor.isMobile()) {


            if (area.getModules().length == 1) {

                AbstractModule m = (AbstractModule) area.getModules()[0];

                m.getMenu().stream().forEach(a -> {

                    Button b;
                    addComponent(b = new Button(a.getCaption()));
                    //b.addClickListener(e -> MDDUIAccessor.goTo(a));
                    b.setPrimaryStyleName(ValoTheme.BUTTON_LINK);
                    b.addStyleName("submenuoption");

                });


            } else {

                for (IModule a : area.getModules()) {
                    Button b;
                    addComponent(b = new Button(a.getName()));
                    //b.addClickListener(e -> MDDUIAccessor.goTo(a));
                    b.setPrimaryStyleName(ValoTheme.BUTTON_LINK);
                    b.addStyleName("submenuoption");

                };

            }

        } else {

            if (!Strings.isNullOrEmpty(area.getName())) addComponentsAndExpand(new Label("

You are now in the " + area.getName() + " area.

", ContentMode.HTML)); } if (!MDDUIAccessor.isMobile()) addComponentsAndExpand(new Label("")); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy