use of cz.metacentrum.perun.webgui.widgets.CustomButton in project perun by CESNET.
the class ServicePackageDetailTabItem method draw.
public Widget draw() {
this.titleWidget.setText(Utils.getStrippedStringWithEllipsis(servicesPackage.getName()) + ": assigned services");
// create widget for the whole page
HorizontalPanel mainTab = new HorizontalPanel();
mainTab.setSize("100%", "100%");
// get services
final GetServices services = new GetServices();
final GetServicesFromServicesPackage assignedServices = new GetServicesFromServicesPackage(servicePackageId);
final JsonCallbackEvents events = JsonCallbackEvents.refreshTableEvents(services);
final JsonCallbackEvents events2 = JsonCallbackEvents.refreshTableEvents(assignedServices);
// get the table of services with custom field updater (lines are clickable and open service details)
CellTable<Service> table = services.getTable(new FieldUpdater<Service, String>() {
// when user click on a row -> open new tab
public void update(int index, Service object, String value) {
session.getTabManager().addTab(new ServiceDetailTabItem(object));
}
});
// get the table of services with custom field updater (lines are clickable and open service details)
CellTable<Service> table2 = assignedServices.getTable(new FieldUpdater<Service, String>() {
// when user click on a row -> open new tab
public void update(int index, Service object, String value) {
session.getTabManager().addTab(new ServiceDetailTabItem(object));
}
});
// add styling to table with services
table.addStyleName("perun-table");
ScrollPanel sp = new ScrollPanel(table);
sp.addStyleName("perun-tableScrollPanel");
VerticalPanel vp1 = new VerticalPanel();
vp1.setSize("100%", "100%");
TabMenu menu1 = new TabMenu();
menu1.addFilterWidget(new ExtendedSuggestBox(services.getOracle()), new PerunSearchEvent() {
@Override
public void searchFor(String text) {
services.filterTable(text);
}
}, "Filter services by name");
vp1.add(menu1);
vp1.setCellHeight(menu1, "30px");
vp1.add(sp);
mainTab.add(vp1);
mainTab.setCellWidth(vp1, "50%");
// middle content
final CustomButton add = new CustomButton("Add", "Add services to package", SmallIcons.INSTANCE.arrowRightIcon());
add.setImageAlign(true);
add.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
final ArrayList<Service> list = services.getTableSelectedList();
if (UiElements.cantSaveEmptyListDialogBox(list)) {
// TODO - SHOULD HAVE ONLY ONE CALLBACK TO CORE
for (int i = 0; i < list.size(); i++) {
AddServiceToServicesPackage request;
final int ii = i;
if (i == list.size() - 1) {
request = new AddServiceToServicesPackage(JsonCallbackEvents.disableButtonEvents(add, JsonCallbackEvents.mergeEvents(new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
services.getSelectionModel().setSelected(list.get(ii), false);
}
}, events2)));
} else {
request = new AddServiceToServicesPackage(JsonCallbackEvents.disableButtonEvents(add, new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
services.getSelectionModel().setSelected(list.get(ii), false);
}
}));
}
request.addServiceToServicesPackage(servicePackageId, list.get(i).getId());
}
}
}
});
final CustomButton remove = new CustomButton("Remove", "Remove services from package", SmallIcons.INSTANCE.arrowLeftIcon());
remove.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
ArrayList<Service> list = assignedServices.getTableSelectedList();
if (UiElements.cantSaveEmptyListDialogBox(list)) {
// TODO - SHOULD HAVE ONLY ONE CALLBACK TO CORE
for (int i = 0; i < list.size(); i++) {
RemoveServiceFromServicesPackage request;
if (i == list.size() - 1) {
request = new RemoveServiceFromServicesPackage(JsonCallbackEvents.disableButtonEvents(remove, events2));
} else {
request = new RemoveServiceFromServicesPackage(JsonCallbackEvents.disableButtonEvents(remove));
}
request.removeServiceFromServicesPackage(servicePackageId, list.get(i).getId());
}
}
}
});
final TabItem tab = this;
CustomButton close = TabMenu.getPredefinedButton(ButtonType.CLOSE, "", new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
session.getTabManager().closeTab(tab);
}
});
FlexTable ft = new FlexTable();
ft.setWidget(0, 0, add);
ft.setWidget(1, 0, remove);
ft.setWidget(2, 0, close);
ft.getFlexCellFormatter().setAlignment(0, 0, HasHorizontalAlignment.ALIGN_CENTER, HasVerticalAlignment.ALIGN_MIDDLE);
ft.getFlexCellFormatter().setAlignment(1, 0, HasHorizontalAlignment.ALIGN_CENTER, HasVerticalAlignment.ALIGN_MIDDLE);
ft.getFlexCellFormatter().setAlignment(2, 0, HasHorizontalAlignment.ALIGN_CENTER, HasVerticalAlignment.ALIGN_MIDDLE);
ft.setWidth("130px");
ft.setCellSpacing(10);
mainTab.add(ft);
mainTab.setCellVerticalAlignment(ft, HasVerticalAlignment.ALIGN_MIDDLE);
// add styling to table2 with assigned services
table2.addStyleName("perun-table");
ScrollPanel sp2 = new ScrollPanel(table2);
sp2.addStyleName("perun-tableScrollPanel");
VerticalPanel vp2 = new VerticalPanel();
vp2.setSize("100%", "100%");
TabMenu menu2 = new TabMenu();
menu2.addFilterWidget(new ExtendedSuggestBox(assignedServices.getOracle()), new PerunSearchEvent() {
@Override
public void searchFor(String text) {
assignedServices.filterTable(text);
}
}, "Filter services by name");
vp2.add(menu2);
vp2.setCellHeight(menu2, "30px");
vp2.add(sp2);
mainTab.add(vp2);
mainTab.setCellWidth(vp2, "50%");
add.setEnabled(false);
JsonUtils.addTableManagedButton(services, table, add);
remove.setEnabled(false);
JsonUtils.addTableManagedButton(assignedServices, table2, remove);
session.getUiElements().resizeSmallTabPanel(mainTab, 350, this);
session.getUiElements().resizePerunTable(sp, 350, this);
session.getUiElements().resizePerunTable(sp2, 350, this);
this.contentWidget.setWidget(mainTab);
return getWidget();
}
use of cz.metacentrum.perun.webgui.widgets.CustomButton in project perun by CESNET.
the class ServicePackagesTabItem method draw.
public Widget draw() {
// create widget for the whole page
VerticalPanel mainTab = new VerticalPanel();
mainTab.setSize("100%", "100%");
// create widget for menu on page
TabMenu tabMenu = new TabMenu();
tabMenu.addWidget(UiElements.getRefreshButton(this));
// get services
final GetServicesPackages services = new GetServicesPackages();
services.setEditable(true);
final JsonCallbackEvents events = JsonCallbackEvents.refreshTableEvents(services);
// get the table of services with custom field updater (lines are clickable and open service details)
CellTable<ServicesPackage> table = services.getTable(new FieldUpdater<ServicesPackage, String>() {
// when user click on a row -> open new tab
public void update(int index, ServicesPackage object, String value) {
session.getTabManager().addTabToCurrentTab(new ServicePackageDetailTabItem(object), true);
}
});
// create button
tabMenu.addWidget(TabMenu.getPredefinedButton(ButtonType.CREATE, true, ButtonTranslation.INSTANCE.createServicePackage(), new ClickHandler() {
@Override
public void onClick(ClickEvent clickEvent) {
session.getTabManager().addTabToCurrentTab(new CreateServicePackageTabItem());
}
}));
final CustomButton deleteButton = TabMenu.getPredefinedButton(ButtonType.DELETE, ButtonTranslation.INSTANCE.deleteSelectedServicePackages());
deleteButton.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
// get selected items
final ArrayList<ServicesPackage> itemsToRemove = services.getTableSelectedList();
UiElements.showDeleteConfirm(itemsToRemove, "Following services packages will be deleted.", new ClickHandler() {
@Override
public void onClick(ClickEvent clickEvent) {
// TODO - SHOULD HAVE ONLY ONE CALLBACK TO CORE
for (int i = 0; i < itemsToRemove.size(); i++) {
DeleteServicePackage request;
if (i == itemsToRemove.size() - 1) {
request = new DeleteServicePackage(JsonCallbackEvents.disableButtonEvents(deleteButton, events));
} else {
request = new DeleteServicePackage(JsonCallbackEvents.disableButtonEvents(deleteButton));
}
request.deleteServicePackage(itemsToRemove.get(i).getId());
}
}
});
}
});
tabMenu.addWidget(deleteButton);
tabMenu.addFilterWidget(new ExtendedSuggestBox(services.getOracle()), new PerunSearchEvent() {
@Override
public void searchFor(String text) {
services.filterTable(text);
}
}, "Filter service package by name");
final CustomButton save = TabMenu.getPredefinedButton(ButtonType.SAVE, ButtonTranslation.INSTANCE.saveChangesInServicesPackages());
save.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
// get selected items
final ArrayList<ServicesPackage> itemsToUpdate = services.getTableSelectedList();
if (UiElements.cantSaveEmptyListDialogBox(itemsToUpdate)) {
// TODO - SHOULD HAVE ONLY ONE CALLBACK TO CORE
for (int i = 0; i < itemsToUpdate.size(); i++) {
UpdateServicePackage request;
if (i == itemsToUpdate.size() - 1) {
request = new UpdateServicePackage(JsonCallbackEvents.disableButtonEvents(save, events));
} else {
request = new UpdateServicePackage(JsonCallbackEvents.disableButtonEvents(save));
}
request.updateServicePackage(itemsToUpdate.get(i));
}
}
}
});
tabMenu.addWidget(save);
// add menu to page itself
mainTab.add(tabMenu);
mainTab.setCellHeight(tabMenu, "30px");
// add styling to table with services
table.addStyleName("perun-table");
ScrollPanel sp = new ScrollPanel(table);
sp.addStyleName("perun-tableScrollPanel");
mainTab.add(sp);
deleteButton.setEnabled(false);
save.setEnabled(false);
JsonUtils.addTableManagedButton(services, table, deleteButton);
JsonUtils.addTableManagedButton(services, table, save);
session.getUiElements().resizePerunTable(sp, 350, this);
this.contentWidget.setWidget(mainTab);
return getWidget();
}
use of cz.metacentrum.perun.webgui.widgets.CustomButton in project perun by CESNET.
the class ServiceRequiredAttributesTabItem method draw.
public Widget draw() {
this.titleWidget.setText(Utils.getStrippedStringWithEllipsis(service.getName()) + ": Required attributes");
VerticalPanel vp = new VerticalPanel();
vp.setSize("100%", "100%");
// create new json call for required attributes of service with id=?
final GetServiceRequiredAttributes servReqAttr = new GetServiceRequiredAttributes(serviceId);
// menu
TabMenu menu = new TabMenu();
menu.addWidget(UiElements.getRefreshButton(this));
// custom event
final JsonCallbackEvents events = JsonCallbackEvents.refreshTableEvents(servReqAttr);
menu.addWidget(TabMenu.getPredefinedButton(ButtonType.ADD, true, ButtonTranslation.INSTANCE.addRequiredAttribute(), new ClickHandler() {
@Override
public void onClick(ClickEvent clickEvent) {
session.getTabManager().addTabToCurrentTab(new AddRequiredAttributesTabItem(service), true);
}
}));
final CustomButton removeButton = TabMenu.getPredefinedButton(ButtonType.REMOVE, ButtonTranslation.INSTANCE.removeSelectedRequiredAttributes());
removeButton.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent clickEvent) {
final ArrayList<AttributeDefinition> attrsForRemoving = servReqAttr.getTableSelectedList();
UiElements.showDeleteConfirm(attrsForRemoving, new ClickHandler() {
@Override
public void onClick(ClickEvent clickEvent) {
// TODO - SHOULD HAVE ONLY ONE CALLBACK TO CORE
for (int i = 0; i < attrsForRemoving.size(); i++) {
if (i == attrsForRemoving.size() - 1) {
RemoveRequiredAttribute request = new RemoveRequiredAttribute(JsonCallbackEvents.disableButtonEvents(removeButton, events));
request.removeRequiredAttribute(serviceId, attrsForRemoving.get(i).getId());
} else {
RemoveRequiredAttribute request = new RemoveRequiredAttribute(JsonCallbackEvents.disableButtonEvents(removeButton));
request.removeRequiredAttribute(serviceId, attrsForRemoving.get(i).getId());
}
}
}
});
}
});
menu.addWidget(removeButton);
final ExtendedSuggestBox box = new ExtendedSuggestBox(servReqAttr.getOracle());
menu.addFilterWidget(box, new PerunSearchEvent() {
@Override
public void searchFor(String text) {
servReqAttr.filterTable(text);
}
}, "Filter required attributes by name");
vp.add(menu);
vp.setCellHeight(menu, "30px");
// get table = make call
CellTable<AttributeDefinition> reqAttrTable = servReqAttr.getTable();
// create scroll panel for table
reqAttrTable.addStyleName("perun-table");
ScrollPanel sp = new ScrollPanel(reqAttrTable);
sp.addStyleName("perun-tableScrollPanel");
sp.setWidth("100%");
vp.add(sp);
vp.setCellHeight(sp, "100%");
removeButton.setEnabled(false);
JsonUtils.addTableManagedButton(servReqAttr, reqAttrTable, removeButton);
session.getUiElements().resizePerunTable(sp, 350, this);
// add tabs to the main panel
this.contentWidget.setWidget(vp);
return getWidget();
}
use of cz.metacentrum.perun.webgui.widgets.CustomButton in project perun by CESNET.
the class UserDetailTabItem method loadCertificatesLoginsPasswords.
private Widget loadCertificatesLoginsPasswords() {
// set content
final VerticalPanel attributesTable = new VerticalPanel();
final TabMenu menu = new TabMenu();
attributesTable.add(menu);
attributesTable.setWidth("100%");
final ScrollPanel sp = new ScrollPanel();
sp.setStyleName("perun-tableScrollPanel");
session.getUiElements().resizeSmallTabPanel(sp, 350, this);
sp.setWidth("100%");
//attributesTable.setStyleName("userDetailTable");
// clear logins when page refreshed
userLoginAttrs.clear();
// ids used for attribute handling
Map<String, Integer> ids = new HashMap<String, Integer>();
ids.put("user", userId);
// attribute table
final PerunAttributeTableWidget table = new PerunAttributeTableWidget(ids);
table.setDescriptionShown(true);
table.setDisplaySaveButton(false);
// load data
GetListOfAttributes attributes = new GetListOfAttributes(new JsonCallbackEvents() {
public void onFinished(JavaScriptObject jso) {
userLoginAttrs.addAll(JsonUtils.<Attribute>jsoAsList(jso));
userLoginAttrs = new TableSorter<Attribute>().sortByAttrNameTranslation(userLoginAttrs);
for (Attribute a : userLoginAttrs) {
if (a.getFriendlyName().equalsIgnoreCase("userCertificates")) {
table.add(a);
} else if (a.getFriendlyName().equalsIgnoreCase("sshPublicKey")) {
table.add(a);
} else if (a.getFriendlyName().equalsIgnoreCase("kerberosAdminPrincipal")) {
table.add(a);
} else if (a.getFriendlyName().equalsIgnoreCase("sshPublicAdminKey")) {
table.add(a);
}
}
// build attr table
table.build();
menu.addWidget(table.getSaveButton());
// content
VerticalPanel vpContent = new VerticalPanel();
vpContent.add(table.asWidget());
FlexTable innerTable = new FlexTable();
innerTable.setCellPadding(5);
vpContent.add(innerTable);
// set content to page
sp.add(vpContent);
attributesTable.add(sp);
int rowCount = 0;
for (final Attribute a : userLoginAttrs) {
if (a.getBaseFriendlyName().equalsIgnoreCase("login-namespace")) {
if (a.getValueAsObject() != null) {
// name
innerTable.setHTML(rowCount, 0, "<strong>" + a.getDisplayName() + "</strong>");
// value
innerTable.setHTML(rowCount, 1, a.getValue());
// change password
if (Utils.getSupportedPasswordNamespaces().contains(a.getFriendlyNameParameter())) {
CustomButton cb = new CustomButton("Change password…", SmallIcons.INSTANCE.keyIcon(), new ClickHandler() {
public void onClick(ClickEvent event) {
session.getTabManager().addTabToCurrentTab(new SelfPasswordTabItem(user, a.getFriendlyNameParameter(), a.getValue(), SelfPasswordTabItem.Actions.CHANGE));
}
});
innerTable.setWidget(rowCount, 2, cb);
}
rowCount++;
}
}
}
}
});
HashSet<String> set = new HashSet<String>();
set.add("urn:perun:user:attribute-def:def:userCertificates");
set.add("urn:perun:user:attribute-def:def:kerberosAdminPrincipal");
set.add("urn:perun:user:attribute-def:def:sshPublicKey");
set.add("urn:perun:user:attribute-def:def:sshPublicAdminKey");
set.add("urn:perun:user:attribute-def:def:login-namespace:mu");
set.add("urn:perun:user:attribute-def:def:login-namespace:einfra");
set.add("urn:perun:user:attribute-def:def:login-namespace:sitola");
set.add("urn:perun:user:attribute-def:def:login-namespace:egi-ui");
set.add("urn:perun:user:attribute-def:def:login-namespace:cesnet");
set.add("urn:perun:user:attribute-def:def:login-namespace:meta");
set.add("urn:perun:user:attribute-def:def:login-namespace:einfra-services");
set.add("urn:perun:user:attribute-def:def:login-namespace:shongo");
// TODO - FIXME - must be dynamic !!
for (String namespace : Utils.getSupportedPasswordNamespaces()) {
set.add("urn:perun:user:attribute-def:def:login-namespace:" + namespace);
}
// TODO - remove SHONGO
ArrayList<String> list = JsonUtils.setToList(set);
attributes.getListOfAttributes(ids, list);
return attributesTable;
}
use of cz.metacentrum.perun.webgui.widgets.CustomButton in project perun by CESNET.
the class UserExtSourceSettingsTabItem method draw.
public Widget draw() {
this.titleWidget.setText(Utils.getStrippedStringWithEllipsis(userExtSource.getLogin().trim()));
// MAIN TAB PANEL
VerticalPanel vp = new VerticalPanel();
vp.setSize("100%", "100%");
// MENU
TabMenu menu = new TabMenu();
vp.add(menu);
vp.setCellHeight(menu, "30px");
final GetAttributesV2 callback = new GetAttributesV2(true);
callback.getUserExtSourceAttributes(userExtSource.getId());
final CellTable<Attribute> table = callback.getEmptyTable();
table.addStyleName("perun-table");
ScrollPanel sp = new ScrollPanel(table);
sp.addStyleName("perun-tableScrollPanel");
session.getUiElements().resizePerunTable(sp, 350, this);
menu.addWidget(UiElements.getRefreshButton(this));
// save changes in attributes
final CustomButton saveChangesButton = TabMenu.getPredefinedButton(ButtonType.SAVE, ButtonTranslation.INSTANCE.saveChangesInAttributes());
saveChangesButton.setEnabled(false);
saveChangesButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
if (UiElements.cantSaveEmptyListDialogBox(callback.getTableSelectedList())) {
SetAttributes request = new SetAttributes(JsonCallbackEvents.disableButtonEvents(saveChangesButton, new JsonCallbackEvents() {
public void onFinished(JavaScriptObject jso) {
callback.clearTable();
callback.getUserExtSourceAttributes(userExtSourceId);
callback.retrieveData();
}
}));
final Map<String, Integer> ids = new HashMap<String, Integer>();
ids.put("userExtSource", userExtSourceId);
request.setAttributes(ids, callback.getTableSelectedList());
}
}
});
menu.addWidget(saveChangesButton);
// buttons
CustomButton setNewMemberAttributeButton = TabMenu.getPredefinedButton(ButtonType.ADD, true, ButtonTranslation.INSTANCE.setNewAttributes(), new ClickHandler() {
public void onClick(ClickEvent event) {
Map<String, Integer> ids = new HashMap<String, Integer>();
ids.put("userExtSource", userExtSource.getId());
session.getTabManager().addTabToCurrentTab(new SetNewAttributeTabItem(ids), true);
}
});
menu.addWidget(setNewMemberAttributeButton);
// REMOVE ATTRIBUTES BUTTON
final CustomButton removeButton = TabMenu.getPredefinedButton(ButtonType.REMOVE, ButtonTranslation.INSTANCE.removeAttributes());
removeButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
// if selected
if (UiElements.cantSaveEmptyListDialogBox(callback.getTableSelectedList())) {
Map<String, Integer> ids = new HashMap<String, Integer>();
ids.put("userExtSource", userExtSource.getId());
RemoveAttributes request = new RemoveAttributes(JsonCallbackEvents.disableButtonEvents(removeButton, new JsonCallbackEvents() {
public void onFinished(JavaScriptObject jso) {
callback.clearTable();
callback.getUserExtSourceAttributes(userExtSource.getId());
callback.retrieveData();
}
}));
// make removeAttributes call
request.removeAttributes(ids, callback.getTableSelectedList());
}
}
});
removeButton.setEnabled(false);
JsonUtils.addTableManagedButton(callback, table, removeButton);
menu.addWidget(removeButton);
callback.retrieveData();
// ATTRIBUTES TABLE
vp.add(sp);
vp.setCellHeight(sp, "100%");
this.contentWidget.setWidget(vp);
return getWidget();
}
Aggregations