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

org.jboss.as.console.client.domain.hosts.HostSelector Maven / Gradle / Ivy

Go to download

Bundles the core AS7 console as a GWT module. Includes minor customizations to support extensions.

There is a newer version: 0.7.0.Final
Show newest version
package org.jboss.as.console.client.domain.hosts;

import com.google.gwt.core.client.Scheduler;
import com.google.gwt.event.logical.shared.ValueChangeEvent;
import com.google.gwt.event.logical.shared.ValueChangeHandler;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;
import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.domain.events.HostSelectionEvent;
import org.jboss.as.console.client.shared.state.CurrentHostSelection;
import org.jboss.ballroom.client.widgets.forms.ComboBox;

import java.util.List;

/**
 * @author Heiko Braun
 * @date 11/2/11
 */
public class HostSelector {

    private ComboBox hosts;

    public Widget asWidget() {

        VerticalPanel layout = new VerticalPanel();
        layout.setStyleName("fill-layout-width");
        layout.addStyleName("lhs-selector");
        layout.getElement().setAttribute("style","padding:4px;");

        hosts = new ComboBox();
        hosts.addValueChangeHandler(new ValueChangeHandler() {
            @Override
            public void onValueChange(final ValueChangeEvent event) {

                if (!event.getValue().isEmpty()) {
                    Scheduler.get().scheduleEntry(new Scheduler.ScheduledCommand() {
                        @Override
                        public void execute() {
                            Console.MODULES.getEventBus().fireEvent(
                                    new HostSelectionEvent(event.getValue())
                            );
                        }
                    });
                }
            }
        });

        Label hostLabel = new Label("Host:");
        hostLabel.setStyleName("header-label");
        layout.add(hostLabel);
        Widget hWidget = hosts.asWidget();
        layout.add(hWidget);

        // combo box use all available space
        hWidget.getElement().getParentElement().setAttribute("width", "100%");

        return layout;
    }

    public void setHosts(List hostNames)
    {


        hosts.clearSelection();
        hosts.setValues(hostNames);

        CurrentHostSelection hostSelection = Console.MODULES.getCurrentSelectedHost();
        if(hostSelection.isSet())
        {
            int i = 0;
            for(String name : hostNames)
            {
                if(name.equals(hostSelection.getName()))
                {
                    hosts.setItemSelected(i, true);
                    break;
                }
                i++;
            }
        }
        else {
            if(!hostNames.isEmpty())
                hosts.setItemSelected(0, true);
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy