Search in sources :

Example 11 with ExtSource

use of cz.metacentrum.perun.webgui.model.ExtSource in project perun by CESNET.

the class GetVoExtSources method setList.

public void setList(ArrayList<ExtSource> list) {
    clearTable();
    this.list.addAll(list);
    for (ExtSource object : list) {
        oracle.add(object.getName());
        oracle.add(renameContent(object.getType()));
    }
    dataProvider.flush();
    dataProvider.refresh();
}
Also used : ExtSource(cz.metacentrum.perun.webgui.model.ExtSource)

Example 12 with ExtSource

use of cz.metacentrum.perun.webgui.model.ExtSource in project perun by CESNET.

the class GroupExtSourcesTabItem method draw.

public Widget draw() {
    this.titleWidget.setText(Utils.getStrippedStringWithEllipsis(group.getName()) + ": " + "ext sources");
    // main panel
    VerticalPanel vp = new VerticalPanel();
    vp.setSize("100%", "100%");
    // HORIZONTAL MENU
    TabMenu menu = new TabMenu();
    menu.addWidget(UiElements.getRefreshButton(this));
    // get VO resources
    final GetGroupExtSources extSources = new GetGroupExtSources(groupId);
    // refresh table event
    final JsonCallbackEvents events = JsonCallbackEvents.refreshTableEvents(extSources);
    // create ext source button
    CustomButton addButton = TabMenu.getPredefinedButton(ButtonType.ADD, true, ButtonTranslation.INSTANCE.addExtSource(), new ClickHandler() {

        public void onClick(ClickEvent event) {
            session.getTabManager().addTabToCurrentTab(new AddGroupExtSourceTabItem(groupId), true);
        }
    });
    if (session.isVoAdmin(voId)) {
        menu.addWidget(addButton);
    }
    final CustomButton removeButton = TabMenu.getPredefinedButton(ButtonType.REMOVE, ButtonTranslation.INSTANCE.removeExtSource());
    removeButton.addClickHandler(new ClickHandler() {

        public void onClick(ClickEvent event) {
            final ArrayList<ExtSource> extSourcesToRemove = extSources.getTableSelectedList();
            String text = "Following external sources will be removed from Group. You won't be able to import members from them anymore.";
            UiElements.showDeleteConfirm(extSourcesToRemove, text, new ClickHandler() {

                @Override
                public void onClick(ClickEvent clickEvent) {
                    // TODO - SHOULD HAVE ONLY ONE CALLBACK TO CORE !!
                    for (int i = 0; i < extSourcesToRemove.size(); i++) {
                        RemoveExtSource request;
                        if (i == extSourcesToRemove.size() - 1) {
                            request = new RemoveExtSource(JsonCallbackEvents.disableButtonEvents(removeButton, events));
                        } else {
                            request = new RemoveExtSource(JsonCallbackEvents.disableButtonEvents(removeButton));
                        }
                        request.removeGroupExtSource(groupId, extSourcesToRemove.get(i).getId());
                    }
                }
            });
        }
    });
    if (session.isVoAdmin(voId)) {
        menu.addWidget(removeButton);
    }
    // authorization - enable buttons for vo admin only.
    if (!session.isVoAdmin(voId)) {
        addButton.setEnabled(false);
        removeButton.setEnabled(false);
        extSources.setCheckable(false);
    }
    menu.addFilterWidget(new ExtendedSuggestBox(extSources.getOracle()), new PerunSearchEvent() {

        @Override
        public void searchFor(String text) {
            extSources.filterTable(text);
        }
    }, "Filter external sources by name or type");
    // add menu to the main panel
    vp.add(menu);
    vp.setCellHeight(menu, "30px");
    CellTable<ExtSource> table = extSources.getTable();
    if (session.isVoAdmin(voId)) {
        removeButton.setEnabled(false);
        JsonUtils.addTableManagedButton(extSources, table, removeButton);
    }
    table.addStyleName("perun-table");
    table.setWidth("100%");
    ScrollPanel sp = new ScrollPanel(table);
    sp.addStyleName("perun-tableScrollPanel");
    vp.add(sp);
    session.getUiElements().resizePerunTable(sp, 350, this);
    this.contentWidget.setWidget(vp);
    return getWidget();
}
Also used : JsonCallbackEvents(cz.metacentrum.perun.webgui.json.JsonCallbackEvents) ClickEvent(com.google.gwt.event.dom.client.ClickEvent) ArrayList(java.util.ArrayList) TabMenu(cz.metacentrum.perun.webgui.widgets.TabMenu) ClickHandler(com.google.gwt.event.dom.client.ClickHandler) CustomButton(cz.metacentrum.perun.webgui.widgets.CustomButton) ExtendedSuggestBox(cz.metacentrum.perun.webgui.widgets.ExtendedSuggestBox) ExtSource(cz.metacentrum.perun.webgui.model.ExtSource) RemoveExtSource(cz.metacentrum.perun.webgui.json.extSourcesManager.RemoveExtSource) GetGroupExtSources(cz.metacentrum.perun.webgui.json.extSourcesManager.GetGroupExtSources) RemoveExtSource(cz.metacentrum.perun.webgui.json.extSourcesManager.RemoveExtSource)

Aggregations

ExtSource (cz.metacentrum.perun.webgui.model.ExtSource)12 ClickEvent (com.google.gwt.event.dom.client.ClickEvent)6 ClickHandler (com.google.gwt.event.dom.client.ClickHandler)6 CustomButton (cz.metacentrum.perun.webgui.widgets.CustomButton)6 TabMenu (cz.metacentrum.perun.webgui.widgets.TabMenu)6 JsonCallbackEvents (cz.metacentrum.perun.webgui.json.JsonCallbackEvents)5 ExtendedSuggestBox (cz.metacentrum.perun.webgui.widgets.ExtendedSuggestBox)5 ArrayList (java.util.ArrayList)4 JavaScriptObject (com.google.gwt.core.client.JavaScriptObject)3 GetExtSources (cz.metacentrum.perun.webgui.json.extSourcesManager.GetExtSources)3 GetVoExtSources (cz.metacentrum.perun.webgui.json.extSourcesManager.GetVoExtSources)3 JsArray (com.google.gwt.core.client.JsArray)2 PerunSearchEvent (cz.metacentrum.perun.webgui.client.resources.PerunSearchEvent)2 AddExtSource (cz.metacentrum.perun.webgui.json.extSourcesManager.AddExtSource)2 GetGroupExtSources (cz.metacentrum.perun.webgui.json.extSourcesManager.GetGroupExtSources)2 RemoveExtSource (cz.metacentrum.perun.webgui.json.extSourcesManager.RemoveExtSource)2 TabItem (cz.metacentrum.perun.webgui.tabs.TabItem)2 KeyUpEvent (com.google.gwt.event.dom.client.KeyUpEvent)1 KeyUpHandler (com.google.gwt.event.dom.client.KeyUpHandler)1 FlexCellFormatter (com.google.gwt.user.client.ui.FlexTable.FlexCellFormatter)1