Package org.jboss.as.console.client.administration.role

Source Code of org.jboss.as.console.client.administration.role.RolesFormItem

/*
* 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.administration.role;

import static com.google.gwt.dom.client.Style.Unit.PX;
import static com.google.gwt.user.cellview.client.HasKeyboardSelectionPolicy.KeyboardSelectionPolicy;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

import com.google.gwt.cell.client.CheckboxCell;
import com.google.gwt.safehtml.shared.SafeHtmlUtils;
import com.google.gwt.user.cellview.client.Column;
import com.google.gwt.user.cellview.client.TextColumn;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.view.client.DefaultSelectionEventManager;
import com.google.gwt.view.client.ListDataProvider;
import com.google.gwt.view.client.MultiSelectionModel;
import com.google.gwt.view.client.SelectionChangeEvent;
import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.administration.role.model.Principal;
import org.jboss.as.console.client.administration.role.model.Principals;
import org.jboss.as.console.client.administration.role.model.RoleAssignment;
import org.jboss.as.console.client.administration.role.model.RoleKey;
import org.jboss.as.console.client.administration.role.model.Roles;
import org.jboss.as.console.client.rbac.Role;
import org.jboss.ballroom.client.widgets.forms.FormItem;
import org.jboss.ballroom.client.widgets.forms.InputElement;
import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
import org.jboss.ballroom.client.widgets.tables.DefaultPager;

/**
* @author Harald Pehl
*/
public class RolesFormItem extends FormItem<List<Role>> {

    private final int pageSize;
    private final List<Role> value;
    private final boolean excludes;
    private DefaultCellTable<Role> table;
    private ListDataProvider<Role> dataProvider;
    private MultiSelectionModel<Role> selectionModel;
    private Principals principals;
    private TableWrapper wrapper;
    private RoleAssignment roleAssignment;

    public RolesFormItem(final String name, final String title, int pageSize, boolean excludes) {
        super(name, title);
        this.pageSize = pageSize;
        this.excludes = excludes;
        this.value = new ArrayList<Role>();
    }

    @Override
    @SuppressWarnings("unchecked")
    public Widget asWidget() {
        // table
        RoleKey<Role> keyProvider = new RoleKey<Role>();
        table = new DefaultCellTable<Role>(pageSize, keyProvider);
        table.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
        dataProvider = new ListDataProvider<Role>(keyProvider);
        dataProvider.addDataDisplay(table);
        selectionModel = new MultiSelectionModel<Role>(keyProvider);
        selectionModel.addSelectionChangeHandler(new SelectionChangeEvent.Handler() {
            @Override
            public void onSelectionChange(final SelectionChangeEvent event) {
                value.clear();
                value.addAll(selectionModel.getSelectedSet());
                setModified(true);
            }
        });
        table.setSelectionModel(selectionModel, DefaultSelectionEventManager.<Role>createCheckboxManager());

        // columns
        Column<Role, Boolean> checkColumn = new

                Column<Role, Boolean>(new CheckboxCell(true, false)) {
                    @Override
                    public Boolean getValue(Role role) {
                        // Get the value from the selection model.
                        return selectionModel.isSelected(role);
                    }
                };
        TextColumn<Role> nameColumn = new

                TextColumn<Role>() {
                    @Override
                    public String getValue(Role role) {
                        return role.getName();
                    }
                };
        table.addColumn(checkColumn, SafeHtmlUtils.fromSafeConstant("<br/>"));
        table.setColumnWidth(checkColumn, 40, PX);
        table.addColumn(nameColumn, Console.CONSTANTS.common_label_name());
        if (excludes) {
            Column<Role, List<Principal>> excludesColumn =
                    new Column<Role, List<Principal>>(CellFactory.newPrincipalsCell()) {
                        @Override
                        public List<Principal> getValue(final Role role) {
                            if (roleAssignment != null && roleAssignment.getExcludes() != null && roleAssignment
                                    .getExcludes().get(role.getName()) != null) {
                                return roleAssignment.getExcludes().get(role.getName());
                            }
                            return Collections.<Principal>emptyList();
                        }
                    };
            table.addColumn(excludesColumn, Console.CONSTANTS.common_label_exclude());
        }

        // pager
        DefaultPager pager = new DefaultPager();
        pager.setWidth("auto");
        pager.setDisplay(table);

        // panels
        VerticalPanel content = new VerticalPanel();
        content.setWidth("95%");
        content.add(table);
        content.add(pager);
        wrapper = new TableWrapper(content, this);
        return wrapper;
    }

    @Override
    public void setEnabled(final boolean b) {
    }

    @Override
    public boolean validate(final List<Role> value) {
        return !(isRequired && selectionModel.getSelectedSet().isEmpty());
    }

    @Override
    public void clearValue() {
        selectionModel.clear();
    }

    @Override
    public List<Role> getValue() {
        return value;
    }

    @Override
    public void setValue(final List<Role> value) {
        this.value.clear();
        this.value.addAll(value);
        selectionModel.clear();
        for (Role role : this.value) {
            selectionModel.setSelected(role, true);
        }
    }

    public String asString() {
        StringBuilder builder = new StringBuilder("[");
        for (Iterator<Role> iterator = value.iterator(); iterator.hasNext(); ) {
            Role role = iterator.next();
            builder.append(role.getName());
            if (iterator.hasNext()) {
                builder.append(", ");
            }
        }
        builder.append("]");
        return builder.toString();
    }

    @Override
    public void setErroneous(boolean b) {
        super.setErroneous(b);
        wrapper.setErroneous(b);
    }

    @Override
    public String getErrMessage() {
        return super.getErrMessage() + ": Select a role";
    }

    public void update(final Principals principals, final Roles roles) {
        this.principals = principals;
        if (dataProvider != null) {
            dataProvider.setList(roles.getRoles());
            selectionModel.clear();
            for (Role role : value) {
                selectionModel.setSelected(role, true);
            }
        }
    }

    public void setRoleAssignment(final RoleAssignment roleAssignment) {
        this.roleAssignment = roleAssignment;
    }

    static class TableWrapper extends VerticalPanel {

        private final HTML errorText;
        private final Widget widget;

        public TableWrapper(Widget widget, final InputElement input) {
            this.widget = widget;

            setStyleName("fill-layout-width");
            HorizontalPanel panel = new HorizontalPanel();
            panel.add(widget);
            widget.getElement().getParentElement().setAttribute("class", "form-input");

            errorText = new HTML(input.getErrMessage());
            errorText.addStyleName("form-item-error-desc");
            DOM.setStyleAttribute(errorText.getElement(), "marginTop", "1em");

            add(panel);
            add(errorText);
            errorText.setVisible(false);
        }

        public void setErroneous(boolean hasErrors) {
            if (hasErrors) { widget.addStyleName("form-item-error"); } else {
                widget.removeStyleName("form-item-error");
            }
            errorText.setVisible(hasErrors);
        }
    }
}
TOP

Related Classes of org.jboss.as.console.client.administration.role.RolesFormItem

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.