org.jboss.as.console.client.shared.patching.ui.PatchInfoTable.java Source code

Java tutorial

Introduction

Here is the source code for org.jboss.as.console.client.shared.patching.ui.PatchInfoTable.java

Source

/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors
 * as indicated by the @author tags. All rights reserved.
 * See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU Lesser General Public License, v. 2.1.
 * This program is distributed in the hope that it will be useful, but WITHOUT A
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License,
 * v.2.1 along with this distribution; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA  02110-1301, USA.
 */
package org.jboss.as.console.client.shared.patching.ui;

import com.google.gwt.user.cellview.client.TextColumn;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.view.client.ListDataProvider;
import com.google.gwt.view.client.ProvidesKey;
import com.google.gwt.view.client.SelectionChangeEvent;
import com.google.gwt.view.client.SingleSelectionModel;
import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.shared.patching.PatchInfo;
import org.jboss.as.console.client.shared.patching.PatchManager;
import org.jboss.as.console.client.shared.patching.Patches;
import org.jboss.ballroom.client.widgets.ContentGroupLabel;
import org.jboss.ballroom.client.widgets.forms.Form;
import org.jboss.ballroom.client.widgets.forms.TextItem;
import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
import org.jboss.ballroom.client.widgets.tables.DefaultPager;

import static org.jboss.as.console.client.shared.util.IdHelper.asId;

/**
 * @author Harald Pehl
 */
public class PatchInfoTable implements IsWidget, PatchManagementElementId {

    private static final int PAGE_SIZE = 8;

    private final PatchManager patchManager;
    private ListDataProvider<PatchInfo> dataProvider;
    private SingleSelectionModel<PatchInfo> selectionModel;
    private Form<PatchInfo> detailsForm;

    public PatchInfoTable(PatchManager patchManager) {
        this.patchManager = patchManager;
    }

    @Override
    @SuppressWarnings("unchecked")
    public Widget asWidget() {

        VerticalPanel layout = new VerticalPanel();
        layout.setStyleName("fill-layout-width");

        ProvidesKey<PatchInfo> keyProvider = new ProvidesKey<PatchInfo>() {
            @Override
            public Object getKey(PatchInfo item) {
                return item.getId();
            }
        };
        DefaultCellTable<PatchInfo> table = new DefaultCellTable<PatchInfo>(PAGE_SIZE, keyProvider);
        table.getElement().setId(asId(PREFIX, getClass()));
        selectionModel = new SingleSelectionModel(keyProvider);
        selectionModel.addSelectionChangeHandler(new SelectionChangeEvent.Handler() {
            @Override
            public void onSelectionChange(SelectionChangeEvent event) {
                updateDetails(selectionModel.getSelectedObject());
            }
        });
        table.setSelectionModel(selectionModel);
        dataProvider = new ListDataProvider<PatchInfo>();
        dataProvider.addDataDisplay(table);

        TextColumn<PatchInfo> idColumn = new TextColumn<PatchInfo>() {
            @Override
            public String getValue(PatchInfo record) {
                return record.getId();
            }
        };

        TextColumn<PatchInfo> patchStreamColumn = new TextColumn<PatchInfo>() {
            @Override
            public String getValue(PatchInfo record) {
                return record.getIdentityName();
            }
        };

        TextColumn<PatchInfo> dateColumn = new TextColumn<PatchInfo>() {
            @Override
            public String getValue(PatchInfo record) {
                return record.getAppliedAt();
            }
        };
        TextColumn<PatchInfo> typeColumn = new TextColumn<PatchInfo>() {
            @Override
            public String getValue(PatchInfo record) {
                return record.getType();
            }
        };
        TextColumn<PatchInfo> inEffectColumn = new TextColumn<PatchInfo>() {
            @Override
            public String getValue(PatchInfo record) {
                return record.isInEffect() ? "true" : "false";
            }
        };
        table.addColumn(idColumn, "ID");
        table.addColumn(patchStreamColumn, Console.CONSTANTS.common_label_patch_stream());
        table.addColumn(dateColumn, Console.CONSTANTS.common_label_date());
        table.addColumn(typeColumn, Console.CONSTANTS.common_label_type());
        table.addColumn(inEffectColumn, Console.CONSTANTS.patch_manager_in_effect());

        DefaultPager pager = new DefaultPager();
        pager.getElement().setId(asId(PREFIX, getClass(), "_Pager"));
        pager.setDisplay(table);

        detailsForm = new Form<>(PatchInfo.class);
        detailsForm.setEnabled(false);
        TextItem name = new TextItem("identityName", "Target");
        TextItem version = new TextItem("identityVersion", "Target Version");
        TextItem description = new TextItem("description", "Description");
        TextItem link = new TextItem("link", "Link");
        detailsForm.setFields(name, version, description, link);

        layout.add(table);
        layout.add(pager);
        layout.add(new ContentGroupLabel(Console.CONSTANTS.patch_manager_patch_details()));
        layout.add(detailsForm);
        return layout;
    }

    PatchInfo getCurrentSelection() {
        return selectionModel.getSelectedObject();
    }

    void update(Patches patches) {
        dataProvider.setList(patches.asList());
    }

    private void updateDetails(PatchInfo patchInfo) {
        if (patchInfo == null) {
            // deselect
            detailsForm.clearValues();
        } else {
            patchManager.getPatchInfo(patchInfo, new AsyncCallback<PatchInfo>() {
                @Override
                public void onFailure(Throwable caught) {
                    detailsForm.clearValues();
                }

                @Override
                public void onSuccess(PatchInfo result) {
                    detailsForm.edit(result);
                }
            });
        }
    }
}