commit 9fa2fb9eb145e1c3b12b60614b7efa13e5d0584e Author: Giancarlo Panichi Date: Thu Oct 24 10:12:33 2013 +0000 Change Component Name on SVN git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-open-widget@83953 82a268e6-3cf1-43bd-a215-b396298e98cf diff --git a/TDOpenTest-dev.launch b/TDOpenTest-dev.launch new file mode 100644 index 0000000..0928ed1 --- /dev/null +++ b/TDOpenTest-dev.launch @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/TDOpenTest-prod.launch b/TDOpenTest-prod.launch new file mode 100644 index 0000000..3368782 --- /dev/null +++ b/TDOpenTest-prod.launch @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..ef00d8b --- /dev/null +++ b/pom.xml @@ -0,0 +1,304 @@ + + + + + maven-parent + org.gcube.tools + 1.0.0 + + + + + 4.0.0 + org.gcube.portlets.user + tabular-data-open-widget + 1.0.0-SNAPSHOT + + tabular-data-open-widget + tabular-data-open-widget allows the selection and the opening of tabular resource + + + https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-open + + + + + Giancarlo Panichi + g.panichi@isti.cnr.it + CNR Pisa, Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" + + architect + developer + + + + + + ${project.basedir}/distro + ${project.build.directory}/${project.build.finalName} + 2013-10-18 + templates + distro + config + + + 2.5.1 + + ${env.GLOBUS_LOCATION} + + UTF-8 + UTF-8 + + + + + localRun + + + org.slf4j + slf4j-api + compile + + + ch.qos.logback + logback-classic + 1.0.1 + runtime + + + + + + + + com.google.gwt + gwt-servlet + + + com.google.gwt + gwt-user + + + + + javax.validation + validation-api + 1.0.0.GA + test + + + javax.validation + validation-api + 1.0.0.GA + sources + test + + + + com.sencha.gxt + gxt + 3.0.1 + + + + org.gcube.data.publishing + sdmx-registry-client-gcube + [3.0.0-SNAPSHOT,4.0.0-SNAPSHOT) + + + + org.gcube.applicationsupportlayer + aslcore + provided + + + + org.gcube.portal + custom-portal-handler + + + + org.gcube.data.analysis.tabulardata + service-client-mock + [1.0.0-SNAPSHOT,2.0.0-SNAPSHOT) + + + + + org.gcube.portlets.user + tabular-data-gwt-service + 1.0.0-SNAPSHOT + + + + + + com.allen-sauer.gwt.log + gwt-log + + + + org.slf4j + slf4j-api + + + + + + junit + junit + 4.8.1 + test + + + + + + + + ${webappDirectory}/WEB-INF/classes + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.16 + + true + + + + + org.apache.maven.surefire + surefire-junit47 + 2.16 + + + + + + + org.codehaus.mojo + gwt-maven-plugin + ${gwtVersion} + + + + resources + + + + + TDOpen.html + ${webappDirectory} + org.gcube.portlets.user.td.open.TDOpen + + + + + + maven-resources-plugin + 2.6 + + + copy-profile + process-resources + + copy-resources + + + ${configDirectory} + + + ${templatesDirectory} + + profile.xml + + true + + + + + + copy-distro-resources + process-resources + + copy-resources + + + ${distroDirectory} + + + ${templatesDirectory} + + profile.xml + descriptor.xml + + true + + + + + + + + maven-clean-plugin + 2.5 + + + + ${distroDirectory} + + ** + + false + + + ${configDirectory} + + ** + + false + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2 + + + ${templatesDirectory}/descriptor.xml + + + + + servicearchive + package + + single + + + + + + + + + + + + + org.gcube.distribution + maven-portal-bom + LATEST + pom + import + + + + diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/TDOpen.java b/src/main/java/org/gcube/portlets/user/td/open/client/TDOpen.java new file mode 100644 index 0000000..43b5204 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/TDOpen.java @@ -0,0 +1,35 @@ +package org.gcube.portlets.user.td.open.client; + +import org.gcube.portlets.user.td.open.client.general.WizardWindow; +import org.gcube.portlets.user.td.gxtservice.shared.TDOpenSession; + +import com.allen_sauer.gwt.log.client.Log; + +/** + * Entry point classes define onModuleLoad(). + */ +public class TDOpen extends WizardWindow { + + protected TDOpenSession tdOpenSession; + + /** + * The id of the {@link CSVTarget} to use. + * @param targetId + */ + + public TDOpen(String title) { + super(title); + Log.info("TDOpen: "+title); + setWidth(550); + setHeight(520); + + tdOpenSession= new TDOpenSession(); + + + TabResourcesSelectionCard tabResourcesSelection= new TabResourcesSelectionCard(tdOpenSession); + addCard(tabResourcesSelection); + + + } + +} \ No newline at end of file diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/TDOpenEntry.java b/src/main/java/org/gcube/portlets/user/td/open/client/TDOpenEntry.java new file mode 100644 index 0000000..4c8fbe7 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/TDOpenEntry.java @@ -0,0 +1,15 @@ +package org.gcube.portlets.user.td.open.client; + + + +import com.allen_sauer.gwt.log.client.Log; +import com.google.gwt.core.client.EntryPoint; + +public class TDOpenEntry implements EntryPoint { + + @Override + public void onModuleLoad() { + TDOpen tdopen= new TDOpen("Open Tabular Resource"); + Log.info(tdopen.getId()); + } +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesProperties.java b/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesProperties.java new file mode 100644 index 0000000..42a5266 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesProperties.java @@ -0,0 +1,26 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client; + +import org.gcube.portlets.user.td.gxtservice.shared.TabResource; + +import com.google.gwt.editor.client.Editor.Path; +import com.sencha.gxt.core.client.ValueProvider; +import com.sencha.gxt.data.shared.ModelKeyProvider; +import com.sencha.gxt.data.shared.PropertyAccess; + +/** + * @author "Federico De Faveri defaveri@isti.cnr.it" + * + */ +public interface TabResourcesProperties extends PropertyAccess { + + @Path("id") + ModelKeyProvider id(); + + ValueProvider name(); + ValueProvider agency(); + ValueProvider date(); + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesSelectionCard.java b/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesSelectionCard.java new file mode 100644 index 0000000..dba8e19 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesSelectionCard.java @@ -0,0 +1,105 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client; + +import org.gcube.portlets.user.td.gxtservice.client.rpc.TDGXTServiceAsync; +import org.gcube.portlets.user.td.gxtservice.shared.TDOpenSession; +import org.gcube.portlets.user.td.gxtservice.shared.TabResource; +import org.gcube.portlets.user.td.open.client.general.WizardCard; + +import com.allen_sauer.gwt.log.client.Log; +import com.google.gwt.event.logical.shared.SelectionEvent; +import com.google.gwt.event.logical.shared.SelectionHandler; +import com.google.gwt.user.client.Command; +import com.google.gwt.user.client.rpc.AsyncCallback; +import com.sencha.gxt.widget.core.client.box.AlertMessageBox; +import com.sencha.gxt.widget.core.client.event.HideEvent; +import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler; + +/** + * + * @author "Giancarlo Panichi" g.panichi@isti.cnr.it + * + */ +public class TabResourcesSelectionCard extends WizardCard { + + protected TabResourcesSelectionCard thisCard; + protected TDOpenSession tdOpenSession; + protected TabResourcesSelectionPanel tabResourcesSelectionPanel; + protected TabResource selectedTabResource = null; + + public TabResourcesSelectionCard(final TDOpenSession tdOpenSession) { + super("Select a Tabular Resource", ""); + + this.tdOpenSession = tdOpenSession; + thisCard = this; + + this.tabResourcesSelectionPanel = new TabResourcesSelectionPanel(res); + + tabResourcesSelectionPanel + .addSelectionHandler(new SelectionHandler() { + + @Override + public void onSelection(SelectionEvent event) { + tdOpenSession + .setSelectedTabResource(tabResourcesSelectionPanel + .getSelectedItem()); + getWizardWindow().setEnableNextButton(true); + } + + }); + + setContent(tabResourcesSelectionPanel); + + } + + @Override + public void setup() { + Command sayFinish = new Command() { + + @Override + public void execute() { + TabResource tabResource = tdOpenSession + .getSelectedTabResource(); + + TDGXTServiceAsync.INSTANCE.setTabResource(tabResource, + new AsyncCallback() { + @Override + public void onFailure(Throwable caught) { + AlertMessageBox d = new AlertMessageBox( + "Error", "Error on set TabResource: " + + caught.getLocalizedMessage()); + d.addHideHandler(new HideHandler() { + + @Override + public void onHide(HideEvent event) { + // TODO Auto-generated method stub + + } + + }); + d.show(); + + } + + @Override + public void onSuccess(Void result) { + + } + + }); + getWizardWindow().fireCompleted(tabResource.getTrId()); + Log.info("OpenTD Tabular Resource selected :" + tabResource); + getWizardWindow().close(false); + + } + + }; + + getWizardWindow().setFinishCommand(sayFinish); + + } + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesSelectionPanel.java b/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesSelectionPanel.java new file mode 100644 index 0000000..01ed31c --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/TabResourcesSelectionPanel.java @@ -0,0 +1,223 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client; + +import java.util.Arrays; +import java.util.List; + +import org.gcube.portlets.user.td.open.client.dataresource.ResourceBundle; +import org.gcube.portlets.user.td.gxtservice.client.rpc.TDGXTServiceAsync; +import org.gcube.portlets.user.td.gxtservice.shared.TabResource; + +import com.allen_sauer.gwt.log.client.Log; +import com.google.gwt.core.client.GWT; +import com.google.gwt.core.client.Scheduler; +import com.google.gwt.core.client.Scheduler.ScheduledCommand; +import com.google.gwt.event.dom.client.KeyUpEvent; +import com.google.gwt.event.dom.client.KeyUpHandler; +import com.google.gwt.event.logical.shared.HasSelectionHandlers; +import com.google.gwt.event.logical.shared.SelectionHandler; +import com.google.gwt.event.shared.HandlerRegistration; +import com.google.gwt.user.client.rpc.AsyncCallback; +import com.sencha.gxt.core.client.IdentityValueProvider; +import com.sencha.gxt.core.client.Style.SelectionMode; +import com.sencha.gxt.data.client.loader.RpcProxy; +import com.sencha.gxt.data.shared.ListStore; +import com.sencha.gxt.data.shared.ModelKeyProvider; +import com.sencha.gxt.data.shared.Store; +import com.sencha.gxt.data.shared.Store.StoreFilter; +import com.sencha.gxt.data.shared.loader.ListLoadConfig; +import com.sencha.gxt.data.shared.loader.ListLoadResult; +import com.sencha.gxt.data.shared.loader.ListLoadResultBean; +import com.sencha.gxt.data.shared.loader.ListLoader; +import com.sencha.gxt.data.shared.loader.LoadResultListStoreBinding; +import com.sencha.gxt.widget.core.client.ContentPanel; +import com.sencha.gxt.widget.core.client.Resizable; +import com.sencha.gxt.widget.core.client.Resizable.Dir; +import com.sencha.gxt.widget.core.client.button.TextButton; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData; +import com.sencha.gxt.widget.core.client.event.SelectEvent; +import com.sencha.gxt.widget.core.client.event.SelectEvent.SelectHandler; +import com.sencha.gxt.widget.core.client.form.TextField; +import com.sencha.gxt.widget.core.client.grid.CheckBoxSelectionModel; +import com.sencha.gxt.widget.core.client.grid.ColumnConfig; +import com.sencha.gxt.widget.core.client.grid.ColumnModel; +import com.sencha.gxt.widget.core.client.grid.Grid; +import com.sencha.gxt.widget.core.client.toolbar.LabelToolItem; +import com.sencha.gxt.widget.core.client.toolbar.ToolBar; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public class TabResourcesSelectionPanel extends ContentPanel implements HasSelectionHandlers { + + private static final TabResourcesProperties properties = GWT.create(TabResourcesProperties.class); + + protected static final ColumnConfig nameColumn = new ColumnConfig(properties.name(), 50, "Name"); + protected static final ColumnConfig agencyColumn = new ColumnConfig(properties.agency(), 50, "Agency"); + protected static final ColumnConfig dateColumn = new ColumnConfig(properties.date(), 50, "Date"); + + protected Grid grid; + protected ResourceBundle res; + + + @SuppressWarnings("unchecked") + public TabResourcesSelectionPanel(ResourceBundle res) + { + this.res=res; + setHeaderVisible(false); + new Resizable(this, Dir.E, Dir.SE, Dir.S); + buildPanel(properties.id(), Arrays.>asList(nameColumn, agencyColumn, dateColumn), nameColumn); + } + + + protected void buildPanel(ModelKeyProvider keyProvider, List> columns, ColumnConfig autoexpandColumn) + { + + ToolBar toolBar = new ToolBar(); + toolBar.add(new LabelToolItem("Search: ")); + final TextField searchField = new TextField(); + toolBar.add(searchField); + + TextButton btnReload = new TextButton(); + //btnReload.setText("Reload"); + btnReload.setIcon(res.refresh16()); + btnReload.setToolTip("Reload"); + toolBar.add(btnReload); + + + IdentityValueProvider identity = new IdentityValueProvider(); + final CheckBoxSelectionModel sm = new CheckBoxSelectionModel(identity); + + ColumnModel cm = new ColumnModel(columns); + + final ExtendedListStore store = new ExtendedListStore(keyProvider); + + searchField.addKeyUpHandler(new KeyUpHandler() { + + @Override + public void onKeyUp(KeyUpEvent event) { + Log.trace("searchTerm: "+searchField.getCurrentValue()); + store.applyFilters(); + } + }); + + store.addFilter(new StoreFilter() { + + @Override + public boolean select(Store store, TabResource parent, TabResource item) { + String searchTerm = searchField.getCurrentValue(); + if (searchTerm == null) return true; + return TabResourcesSelectionPanel.this.select(item, searchTerm); + } + }); + + store.setEnableFilters(true); + + RpcProxy> proxy = new RpcProxy>() { + + + public void load(ListLoadConfig loadConfig, final AsyncCallback> callback) { + loadData(loadConfig, callback); + } + }; + final ListLoader> loader = new ListLoader>(proxy); + + loader.setRemoteSort(false); + loader.addLoadHandler(new LoadResultListStoreBinding>(store)); + + grid = new Grid(store, cm){ + @Override + protected void onAfterFirstAttach() { + super.onAfterFirstAttach(); + Scheduler.get().scheduleDeferred(new ScheduledCommand() { + @Override + public void execute() { + loader.load(); + } + }); + } + }; + + sm.setSelectionMode(SelectionMode.SINGLE); + grid.setLoader(loader); + grid.setSelectionModel(sm); + grid.getView().setAutoExpandColumn(autoexpandColumn); + grid.getView().setStripeRows(true); + grid.getView().setColumnLines(true); + grid.getView().setAutoFill(true); + grid.setBorders(false); + grid.setLoadMask(true); + grid.setColumnReordering(true); + + SelectHandler sh = new SelectHandler() { + @Override + public void onSelect(SelectEvent event) { + loader.load(); + } + }; + + btnReload.addSelectHandler(sh); + + VerticalLayoutContainer con = new VerticalLayoutContainer(); + con.add(toolBar, new VerticalLayoutData(1, -1)); + con.add(grid, new VerticalLayoutData(1, 1)); + setWidget(con); + } + + + + protected boolean select(TabResource item, String searchTerm) { + if (item.getName()!=null && item.getName().toLowerCase().contains(searchTerm.toLowerCase())) return true; + if (item.getAgency()!=null &&item.getAgency().toLowerCase().contains(searchTerm.toLowerCase())) return true; + if (item.getDate()!=null && item.getDate().toLowerCase().contains(searchTerm.toLowerCase())) return true; + return false; + } + + + protected void loadData(ListLoadConfig loadConfig, final AsyncCallback> callback) { + TDGXTServiceAsync.INSTANCE.getTabularResources(new AsyncCallback>() { + + @Override + public void onFailure(Throwable caught) { + callback.onFailure(caught); + } + + @Override + public void onSuccess(List result) { + Log.trace("loaded "+result.size()+" TabularResources"); + callback.onSuccess(new ListLoadResultBean(result)); + } + }); + } + + + @Override + public HandlerRegistration addSelectionHandler(SelectionHandler handler) { + return grid.getSelectionModel().addSelectionHandler(handler); + } + + public TabResource getSelectedItem() { + return grid.getSelectionModel().getSelectedItem(); + } + + protected class ExtendedListStore extends ListStore { + + public ExtendedListStore(ModelKeyProvider keyProvider) { + super(keyProvider); + } + + public void applyFilters() + { + super.applyFilters(); + } + + } + + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/dataresource/ResourceBundle.java b/src/main/java/org/gcube/portlets/user/td/open/client/dataresource/ResourceBundle.java new file mode 100644 index 0000000..ebbf6b8 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/dataresource/ResourceBundle.java @@ -0,0 +1,31 @@ +package org.gcube.portlets.user.td.open.client.dataresource; + + +import com.google.gwt.core.client.GWT; +import com.google.gwt.resources.client.ClientBundle; +import com.google.gwt.resources.client.ImageResource; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public interface ResourceBundle extends ClientBundle { + + public static final ResourceBundle IMPL=GWT.create(ResourceBundle.class); + + @Source("org/gcube/portlets/user/td/open/client/dataresource/resources/TDOpen.css") + TDOpenCSS tdOpenCss(); + + @Source("resources/arrow-refresh.png") + ImageResource refresh(); + + @Source("resources/arrow-refresh_16.png") + ImageResource refresh16(); + + + @Source("resources/arrow-refresh_32.png") + ImageResource refresh32(); +} + \ No newline at end of file diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/dataresource/TDOpenCSS.java b/src/main/java/org/gcube/portlets/user/td/open/client/dataresource/TDOpenCSS.java new file mode 100644 index 0000000..1b8688f --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/dataresource/TDOpenCSS.java @@ -0,0 +1,41 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.dataresource; + +import com.google.gwt.resources.client.CssResource; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public interface TDOpenCSS extends CssResource { + + @ClassName("wizard-title") + public String getWizardTitle(); + + @ClassName("wizard-footer") + public String getWizardFooter(); + + @ClassName("source-selection-hover") + public String getSourceSelectionHover(); + +// @ClassName("column-excluded") +// public String getColumnExcluded(); + + @ClassName("importSelection-sources") + public String getImportSelectionSources(); + + @ClassName("importSelection-source") + public String getImportSelectionSource(); + + @ClassName("sdmxRegistryUrlStyle") + public String getSDMXRegistryUrlStyle(); + + @ClassName("sdmxRegistryUrlInputStyle") + public String getSDMXRegistryUrlInputStyle(); + + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/general/SimpleWizardCard.java b/src/main/java/org/gcube/portlets/user/td/open/client/general/SimpleWizardCard.java new file mode 100644 index 0000000..d3a377b --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/general/SimpleWizardCard.java @@ -0,0 +1,33 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.general; + +import com.google.gwt.user.client.ui.HTML; +import com.sencha.gxt.widget.core.client.ContentPanel; + +/** + * A simple wizard card. + * @author Federico De Faveri defaveri@isti.cnr.it + */ +public class SimpleWizardCard extends WizardCard { + + /** + * Create a new simple wizard card. + * @param title the card title. + * @param footer the card footer. + * @param content the card content. + */ + public SimpleWizardCard(String title, String footer, String content) { + super(title, footer); + + ContentPanel contentPanel = new ContentPanel(); + contentPanel.setHeaderVisible(false); + HTML htmlContent = new HTML(content); + htmlContent.setStyleName("wizard-simple-content"); + contentPanel.add(htmlContent); + + setContent(contentPanel); + } + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardCard.java b/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardCard.java new file mode 100644 index 0000000..81cee3e --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardCard.java @@ -0,0 +1,272 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.general; + +import org.gcube.portlets.user.td.open.client.dataresource.ResourceBundle; + +import com.allen_sauer.gwt.log.client.Log; + +import com.google.gwt.user.client.ui.HTML; +import com.sencha.gxt.widget.core.client.Component; +import com.sencha.gxt.widget.core.client.ContentPanel; +import com.sencha.gxt.widget.core.client.container.BorderLayoutContainer; +import com.sencha.gxt.widget.core.client.event.SelectEvent.SelectHandler; + +/** + * Represents a Wizard Card. + */ +public class WizardCard extends BorderLayoutContainer { + + private WizardWindow wizardWindow; + protected ContentPanel titlePanel; + protected ContentPanel footerPanel; + protected boolean calculateFooter = false; + protected HTML titleHtml; + protected HTML footerHtml; + + final protected ResourceBundle res=ResourceBundle.IMPL; + + /** + * Creates a new wizard card. + * The footer is automatically calculated. + * @param title the card title. + */ + public WizardCard(String title) { + this(title,""); + calculateFooter = true; + } + + /** + * Creates a new wizard card. + * @param title the card title. + * @param footer the card footer. + */ + public WizardCard(String title, String footer) { + Log.info(title); + res.tdOpenCss().ensureInjected(); + + //add the title panel + titlePanel = new ContentPanel(); + titlePanel.setHeight(30); + titlePanel.setBodyStyle("background-color:#C3D9FF"); + titlePanel.setHeaderVisible(false); + + titleHtml = new HTML(title); + titleHtml.setStylePrimaryName(res.tdOpenCss().getWizardTitle()); + titlePanel.add(titleHtml); + + setNorthWidget(titlePanel, new BorderLayoutData(30)); + + //add the footer panel + footerPanel = new ContentPanel(); + footerPanel.setHeight(30); + footerPanel.setBodyStyle("background-color:#CDEB8B"); + footerPanel.setHeaderVisible(false); + + footerHtml = new HTML(footer); + footerHtml.setStylePrimaryName(res.tdOpenCss().getWizardFooter()); + footerPanel.add(footerHtml); + + setSouthWidget(footerPanel, new BorderLayoutData(30)); + + } + + + /** + * {@inheritDoc} + */ + public void setTitle(String title) + { + titleHtml.setHTML("

"+title+"

"); + } + + /** + * Sets the card footer. + * @param footer the footer. + */ + public void setFooter(String footer) + { + footerHtml.setHTML("

"+footer+"

"); + } + + /** + * Sets the card content. + * @param content the card content. + */ + public void setContent(Component content) + { + setCenterWidget(content); + } + + /** + * Sets the card content. + * @param content the card content. + */ + public void setContent(com.google.gwt.user.client.ui.Panel content) + { + setCenterWidget(content); + } + + /** + * Enables the next button. + * @param enable true to enable it, false otherwise. + */ + public void setEnableNextButton(boolean enable) + { + if (wizardWindow!=null){ + wizardWindow.setEnableNextButton(enable); + } + } + + /** + * Enables the back button. + * @param enable true to enable the button, false otherwise. + */ + public void setEnableBackButton(boolean enable) + { + if (wizardWindow!=null){ + wizardWindow.setEnableBackButton(enable); + } + } + + /** + * Sets the next button label. + * @param text the button label. + */ + public void setNextButtonText(String text) + { + if (wizardWindow!=null){ + wizardWindow.setNextButtonText(text); + } + } + + /** + * Sets the back button label. + * @param text the button label. + */ + + public void setBackButtonText(String text) + { + if (wizardWindow!=null){ + wizardWindow.setBackButtonText(text); + } + } + + + /** + * Visible the next button. + * @param visible true to show the button, false otherwise. + */ + public void setNextButtonVisible(boolean visible) + { + if (wizardWindow!=null){ + wizardWindow.setNextButtonVisible(visible); + } + } + + /** + * Visible the back button. + * @param visible true to show the button, false otherwise. + */ + public void setBackButtonVisible(boolean visible) + { + if (wizardWindow!=null){ + wizardWindow.setBackButtonVisible(visible); + } + } + + + public void setNextButtonToFinish() + { + if (wizardWindow!=null){ + wizardWindow.setNextButtonToFinish(); + } + } + + /** + * Sets the WizardWindow for this import card. + * @param wizardWindow the WizardWindow. + */ + protected void setWizardWindow(WizardWindow wizardWindow) + { + this.wizardWindow = wizardWindow; + if (calculateFooter) { + StringBuilder footer = new StringBuilder(); + footer.append("Step "); + footer.append(getCardPosition()); + footer.append(" of "); + footer.append(getCardSize()); + setFooter(footer.toString()); + } + } + + /** + * Returns the current wizard window. + * @return the wizard window. + */ + protected WizardWindow getWizardWindow() + { + if (wizardWindow==null) throw new IllegalStateException("No Wizard Window setup"); + return wizardWindow; + } + + public void addToWindowTitle(String toAdd) + { + wizardWindow.setTitle(wizardWindow.getOriginalTitle()+toAdd); + } + + /** + * Called before the card is showed. + */ + public void setup() + { + } + + /** + * Called when the card is disposed. + */ + public void dispose() + {} + + /** + * Add a listener to the next button. + * @param listener the listener to add. + */ + public void addNextButtonListener(SelectHandler listener) + { + if (wizardWindow!=null){ + wizardWindow.addNextButtonListener(listener); + } + } + + /** + * Gets the number of cards in the wizard window. + * @return the number of cards. + */ + public int getCardSize() + { + return getWizardWindow().getCardStackSize(); + } + + /** + * Returns this card position on card list. + * @return the card position on the card stack. + */ + public int getCardPosition() + { + int indexPosition = getWizardWindow().getCardStack().indexOf(this); + return (indexPosition>=0)?indexPosition+1:indexPosition; + } + + public void showErrorAndHide(String title, final String failureReason, final String failureDetails, final Throwable throwable) + { + wizardWindow.showErrorAndHide(title, failureReason, failureDetails, throwable); + } + + public void hideWindow() + { + wizardWindow.hide(); + } + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardListener.java b/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardListener.java new file mode 100644 index 0000000..3abaaed --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardListener.java @@ -0,0 +1,36 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.general; + +import org.gcube.portlets.user.td.gxtservice.shared.TRId; + + + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public interface WizardListener { + + /** + * Called when the wizard is completed without errors + * and return TableId + */ + public void completed(TRId trId); + + /** + * Called when the wizard has been aborted by the user. + */ + public void aborted(); + + /** + * Called when the something in the wizard is failed. + * @param throwable the exception or null. + * @param reason the failure reason or null. + * @param details the failure details or null. + */ + public void failed(Throwable throwable, String reason, String details); +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardWindow.java b/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardWindow.java new file mode 100644 index 0000000..9fc03d0 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/general/WizardWindow.java @@ -0,0 +1,484 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.general; + +import java.util.ArrayList; + +import org.gcube.portlets.user.td.gxtservice.shared.TRId; +import org.gcube.portlets.user.td.open.client.util.ErrorMessageBox; + + + +import com.allen_sauer.gwt.log.client.Log; +import com.google.gwt.core.client.Callback; +import com.google.gwt.user.client.Command; +import com.google.gwt.user.client.ui.Widget; +import com.google.web.bindery.event.shared.SimpleEventBus; +import com.sencha.gxt.core.client.resources.ThemeStyles; +import com.sencha.gxt.widget.core.client.Dialog; +import com.sencha.gxt.widget.core.client.Window; +import com.sencha.gxt.widget.core.client.button.TextButton; +import com.sencha.gxt.widget.core.client.container.CardLayoutContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData; +import com.sencha.gxt.widget.core.client.event.SelectEvent; +import com.sencha.gxt.widget.core.client.event.SelectEvent.SelectHandler; +import com.sencha.gxt.widget.core.client.toolbar.FillToolItem; +import com.sencha.gxt.widget.core.client.toolbar.ToolBar; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public class WizardWindow extends Window { + + protected ArrayList cardStack = new ArrayList(); + + protected TextButton backButton; + + protected TextButton nextButton; + + protected String originalTitle; + + protected boolean checkBeforeClose = true; + + protected boolean nextCardFinish = false; + + protected Command nextButtonAction = null; + + protected Command previousButtonAction = null; + + protected Command finishCommand = new Command() { + + public void execute() { + close(false); + } + }; + + + protected CardLayoutContainer cardContainer; + + protected ArrayList listeners; + + protected SimpleEventBus eventBus; + + protected boolean finish=true; + /** + * Create a new Wizard Window with the specified title. + * @param title the wizard window title. + */ + public WizardWindow(String title) + { + super(); + Log.info("Window "+title); + this.eventBus= new SimpleEventBus(); + Log.info(title); + //setModal(true); + setResizable(true); + setCollapsible(true); + + listeners = new ArrayList(); + + setHeadingText(title); + this.originalTitle = title; + + VerticalLayoutContainer container = new VerticalLayoutContainer(); + + cardContainer = new CardLayoutContainer(); + container.add(cardContainer, new VerticalLayoutData(1, 1)); + + ToolBar toolbar = new ToolBar(); + toolbar.addStyleName(ThemeStyles.getStyle().borderTop()); + + backButton = new TextButton("Back"); + backButton.setEnabled(false); + backButton.setVisible(false); + backButton.setTabIndex(1001); + toolbar.add(backButton); + toolbar.add(new FillToolItem()); + + nextButton = new TextButton("Open"); + nextButton.setEnabled(false); + nextButton.setTabIndex(1000); + toolbar.add(nextButton); + + toolbar.setLayoutData(new VerticalLayoutData(1, -1)); + container.add(toolbar); + + SelectHandler selectionHandler = new SelectHandler() { + + @Override + public void onSelect(SelectEvent event) { + TextButton button = (TextButton)event.getSource(); + String btnID = button.getId(); + + if (btnID.equals(backButton.getId())) { + + if(previousButtonAction!=null) { + previousButtonAction.execute(); + } + else { + previousCard(); + } + } else { + + if (nextButtonAction!=null) { + nextButtonAction.execute(); + } else { + nextCard(); + } + } + + } + }; + + backButton.addSelectHandler(selectionHandler); + nextButton.addSelectHandler(selectionHandler); + + setWidget(container); + } + + + + /** + * {@inheritDoc} + */ + @Override + protected void initTools() { + super.initTools(); + + //we can't distinguish between hide and hide with button + /*closeBtn.removeAllListeners(); + closeBtn.addListener(Events.Select, new Listener() { + public void handleEvent(ComponentEvent ce) { + MessageBox.confirm("Confirm", "Are you sure to cancel the operation?", new Listener() { + + @Override + public void handleEvent(MessageBoxEvent be) { + if (be.getButtonClicked().getItemId().equals(Dialog.YES)) { + hide(); + fireAborted(); + } + } + }); + } + });*/ + } + + public void addListener(WizardListener listener) + { + listeners.add(listener); + } + + public void removeListener(WizardListener listener) + { + listeners.remove(listener); + } + + /** + * Shows the next available card. + */ + public void nextCard() + { + + if (finish) { + callCardSetup(); + finishCommand.execute(); + } else { + Widget activeItem = cardContainer.getActiveWidget(); + + if (activeItem instanceof WizardCard) + ((WizardCard) activeItem).dispose(); + + int cardPos = cardStack.indexOf(activeItem); + + // NEXT -> + + nextButton.setEnabled(true); + backButton.setEnabled(true); + + int newPos = cardPos + 1; + + if (newPos == 0) { + // we are moving forward from the first card + backButton.setEnabled(false); + } + nextButtonAction = null; + previousButtonAction = null; + Log.info("cardStack size:" + cardStack.size()); + if (newPos < cardStack.size()) { + WizardCard card = cardStack.get(newPos); + cardContainer.setActiveWidget(card); + doLayout(); + card.setup(); + } else { + close(false); + } + } + } + + private void callCardSetup(){ + cardStack.get(cardStack.indexOf(cardContainer.getActiveWidget())).setup(); + } + + /** + * Shows the previous available card. + */ + public void previousCard() + { + Widget activeItem = cardContainer.getActiveWidget(); + + if (activeItem instanceof WizardCard) ((WizardCard)activeItem).dispose(); + + int cardPos = cardStack.indexOf(activeItem); + + //BACK <- + + nextButton.setEnabled(true); + backButton.setEnabled(true); + + int newPos=cardPos-1; + + + if (newPos == 0) { + backButton.setEnabled(false); + } + + nextButtonAction=null; + previousButtonAction=null; + + WizardCard card = cardStack.get(newPos); + cardContainer.setActiveWidget(card); + doLayout(); + //if (card instanceof WizardCard) ((WizardCard)card).setup(); + card.setup(); + } + + /** + * Returns the number of available cards. + * @return + */ + public int getCardStackSize() + { + return cardStack.size(); + } + + /** + * Returns the current active card. + * @return + */ + public int getCurrentCard() + { + return cardStack.indexOf(cardContainer.getActiveWidget()); + } + + public boolean checkBeforeClose() + { + return true; + } + + public void close(boolean check) { + checkBeforeClose = check; + hide(); + } + + /** + * Sets the label of next button to "Finish" value and add a close command to it. + */ + public void setNextButtonToFinish() + { + finish=true; + nextButton.setText("Finish"); + + } + + /** + * + * @param finishCommand + */ + public void setFinishCommand(Command finishCommand) { + this.finishCommand = finishCommand; + } + + /** + * Set the command for the next button. + * @param command the command to execute. + */ + public void setNextButtonCommand(Command command) + { + nextButtonAction = command; + } + + + /** + * Set the command for the previous button. + * @param command the command to execute. + */ + public void setPreviousButtonCommand(Command command) + { + previousButtonAction = command; + } + + /** + * {@inheritDoc} + */ + @Override + public void show() { + super.show(); + + Widget activeItem = cardContainer.getActiveWidget(); + + if (activeItem instanceof WizardCard) ((WizardCard)activeItem).setup(); + + } + + + + /** + * Set the card list. + * @param cards + */ + public void setCards(ArrayList cards) + { + for (WizardCard card:cards) { + addCard(card); + } + } + + /** + * Adds a card to this wizard. + * @param card the card to add. + */ + public void addCard(WizardCard card) + { + card.setWizardWindow(this); + cardContainer.add(card); + cardStack.add(card); + } + + /** + * Remove a card to this wizard. + * @param card the card to add. + */ + public void removeCard(WizardCard card) + { + cardContainer.remove(card); + cardStack.remove(card); + } + + + /** + * Enables the next button on the wizard. + * @param enable true to enable the next button, false otherwise. + */ + public void setEnableNextButton(boolean enable) + { + nextButton.setEnabled(enable); + } + + /** + * Enables the back button on the wizard. + * @param enable true to enable the back button, false otherwise. + */ + public void setEnableBackButton(boolean enable) + { + backButton.setEnabled(enable); + } + + /** + * Sets the next button label. + * @param text the button label. + */ + protected void setNextButtonText(String text) + { + nextButton.setText(text); + + } + + /** + * Sets the back button label. + * @param text the button label. + */ + protected void setBackButtonText(String text) + { + backButton.setText(text); + } + + /** + * Sets visible next button. + * @param visible + */ + protected void setNextButtonVisible(boolean visible) + { + nextButton.setVisible(visible); + } + + /** + * Sets visible back button. + * @param visible + */ + protected void setBackButtonVisible(boolean visible) + { + backButton.setVisible(visible); + } + + + /** + * Add a listener to the next button. + * @param listener the listener to add. + */ + protected void addNextButtonListener(SelectHandler listener) + { + nextButton.addSelectHandler(listener); + } + + /** + * @return the originalTitle + */ + public String getOriginalTitle() { + return originalTitle; + } + + /** + * Returns the card list. + * @return teh card list. + */ + public ArrayList getCardStack() + { + return cardStack; + } + + public void showErrorAndHide(String title, final String failureReason, final String failureDetails, final Throwable throwable) + { + ErrorMessageBox.showError(title, failureReason, failureDetails, new Callback() { + + @Override + public void onSuccess(Dialog result) { + } + + @Override + public void onFailure(Void reason) { + hide(); + fireFailed(throwable, failureReason, failureDetails); + } + }); + } + + public void fireCompleted(TRId trId) + { + for (WizardListener listener:listeners) listener.completed(trId); + } + + public void fireAborted() + { + for (WizardListener listener:listeners) listener.aborted(); + } + + public void fireFailed(Throwable throwable, String reason, String details) + { + for (WizardListener listener:listeners) listener.failed(throwable, reason, details); + } +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/source/FileSource.java b/src/main/java/org/gcube/portlets/user/td/open/client/source/FileSource.java new file mode 100644 index 0000000..890905d --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/source/FileSource.java @@ -0,0 +1,54 @@ +package org.gcube.portlets.user.td.open.client.source; + + +public class FileSource implements Source { + + + private static final long serialVersionUID = -5990408094142286488L; + + public static final FileSource INSTANCE = new FileSource(); + + + /** + * {@inheritDoc} + */ + @Override + public String getId() { + return "File"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getName() { + return "File source"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getDescription() { + return "Select this source if you want to retrive document from File"; + } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append("File source [getId()="); + builder.append(getId()); + builder.append(", getName()="); + builder.append(getName()); + builder.append(", getDescription()="); + builder.append(getDescription()); + builder.append("]"); + return builder.toString(); + } + + + +} \ No newline at end of file diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/source/Source.java b/src/main/java/org/gcube/portlets/user/td/open/client/source/Source.java new file mode 100644 index 0000000..cdd7543 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/source/Source.java @@ -0,0 +1,27 @@ +package org.gcube.portlets.user.td.open.client.source; + +import java.io.Serializable; + + +public interface Source extends Serializable { + + /** + * Returns the document type id. + * @return the document type id. + */ + public String getId(); + + /** + * Returns the document type name. + * @return the document type name. + */ + public String getName(); + + /** + * Returns the document type description. + * @return the document type description. + */ + public String getDescription(); + + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/source/TDOpenSource.java b/src/main/java/org/gcube/portlets/user/td/open/client/source/TDOpenSource.java new file mode 100644 index 0000000..1090e5b --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/source/TDOpenSource.java @@ -0,0 +1,68 @@ +package org.gcube.portlets.user.td.open.client.source; + + + + +public class TDOpenSource implements Source { + + + private static final long serialVersionUID = 3254879141340681969L; + + public static final TDOpenSource INSTANCE = new TDOpenSource(); + + protected String url; + + + /** + * {@inheritDoc} + */ + @Override + public String getId() { + return "SDMXRegistry"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getName() { + return "SDMX Registry source"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getDescription() { + return "Select this source if you want to retrive document from SDMX Registry"; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append("SDMXRegistry source [getId()="); + builder.append(getId()); + builder.append(", getName()="); + builder.append(getName()); + builder.append(", getDescription()="); + builder.append(getDescription()); + builder.append(", getUrl()="); + builder.append(getUrl()); + builder.append("]"); + return builder.toString(); + } + + + +} \ No newline at end of file diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/source/WorkspaceSource.java b/src/main/java/org/gcube/portlets/user/td/open/client/source/WorkspaceSource.java new file mode 100644 index 0000000..c3d47ff --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/source/WorkspaceSource.java @@ -0,0 +1,54 @@ +package org.gcube.portlets.user.td.open.client.source; + + +public class WorkspaceSource implements Source { + + + private static final long serialVersionUID = 2826706131664617270L; + + public static final WorkspaceSource INSTANCE = new WorkspaceSource(); + + + /** + * {@inheritDoc} + */ + @Override + public String getId() { + return "Workspace"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getName() { + return "Workspace source"; + } + + /** + * {@inheritDoc} + */ + @Override + public String getDescription() { + return "Select this source if you want to retrive document from Workspace"; + } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append("Workspace source [getId()="); + builder.append(getId()); + builder.append(", getName()="); + builder.append(getName()); + builder.append(", getDescription()="); + builder.append(getDescription()); + builder.append("]"); + return builder.toString(); + } + + + +} \ No newline at end of file diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/util/ErrorMessageBox.java b/src/main/java/org/gcube/portlets/user/td/open/client/util/ErrorMessageBox.java new file mode 100644 index 0000000..5a8239d --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/util/ErrorMessageBox.java @@ -0,0 +1,70 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.util; + +import com.google.gwt.core.client.Callback; +import com.google.gwt.user.client.ui.Label; +import com.sencha.gxt.widget.core.client.Dialog; +import com.sencha.gxt.widget.core.client.Dialog.PredefinedButton; +import com.sencha.gxt.widget.core.client.box.MessageBox; +import com.sencha.gxt.widget.core.client.event.HideEvent; +import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler; + +/** + * @author "Federico De Faveri defaveri@isti.cnr.it" + * + */ +public class ErrorMessageBox { + + + private static final String DETAILS = "Details"; + + + public static void showError(String title, String failureReason, final String failureDetails) + { + showError(title, failureReason, failureDetails, new NOPCallBack()); + } + + public static void showError(String title, String failureReason, final String failureDetails, final Callback callback) + { + final MessageBox box = new MessageBox(title); + box.setMessage(failureReason); + box.addHideHandler(new HideHandler() { + + @Override + public void onHide(HideEvent event) { + Dialog dialog = (Dialog) event.getSource(); + + if (dialog.getHideButton().getText().equals(DETAILS)){ + //box.close(); + showErrorDetails("Error details", failureDetails); + } else callback.onSuccess(dialog); + } + }); + /*FIXME box.setIcon(MessageBox.ERROR); + box.getDialog().cancelText = DETAILS; + box.getDialog().setButtons(MessageBox.OKCANCEL);*/ + box.show(); + } + + public static void showErrorDetails(String title, String failureDetails) + { + final Dialog simple = new Dialog(); + simple.setHeadingText(title); + simple.setPredefinedButtons(PredefinedButton.OK); + simple.setBodyStyleName("pad-text"); + + + simple.add(new Label("
"+failureDetails+"
")); + //simple.getItem(0).getFocusSupport().setIgnore(true); + + //FIXME simple.setScrollMode(ScrollMode.AUTO); + + simple.setHideOnButtonClick(true); + simple.setWidth(400); + simple.setHeight(400); + simple.show(); + } + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/util/Format.java b/src/main/java/org/gcube/portlets/user/td/open/client/util/Format.java new file mode 100644 index 0000000..be3ab4d --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/util/Format.java @@ -0,0 +1,35 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.util; + +/** + * @author Federico De Faveri defaveri@isti.cnr.it + * + */ +public class Format { + + /** + * Converts a file size into a {@link String} representation adding the misure unit. + * @param size the file size. + * @return the textual representation. + */ + public static String fileSize(long size) { + StringBuilder text = new StringBuilder(); + if (size < 1024) { + text.append(size); + text.append(" bytes"); + } else if (size < 1048576) { + text.append(Math.round(((size * 10) / 1024)) / 10); + text.append(" KB"); + } else if (size < 1073741824) { + text.append(Math.round(((size * 10) / 1048576)) / 10); + text.append(" MB"); + } else { + text.append(Math.round(((size * 10) / 1073741824)) / 10); + text.append(" GB"); + } + return text.toString(); + } + +} diff --git a/src/main/java/org/gcube/portlets/user/td/open/client/util/NOPCallBack.java b/src/main/java/org/gcube/portlets/user/td/open/client/util/NOPCallBack.java new file mode 100644 index 0000000..5a584b0 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/open/client/util/NOPCallBack.java @@ -0,0 +1,20 @@ +/** + * + */ +package org.gcube.portlets.user.td.open.client.util; + +import com.google.gwt.core.client.Callback; + +/** + * @author "Federico De Faveri defaveri@isti.cnr.it" + * + */ +public class NOPCallBack implements Callback { + + @Override + public void onFailure(F reason) {} + + @Override + public void onSuccess(T result) {} + +} diff --git a/src/main/resources/org/gcube/portlets/user/td/open/TDOpen.gwt.xml b/src/main/resources/org/gcube/portlets/user/td/open/TDOpen.gwt.xml new file mode 100644 index 0000000..c876a53 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/open/TDOpen.gwt.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/org/gcube/portlets/user/td/open/client/Messages.properties b/src/main/resources/org/gcube/portlets/user/td/open/client/Messages.properties new file mode 100644 index 0000000..c222555 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/open/client/Messages.properties @@ -0,0 +1,2 @@ +sendButton = Send +nameField = Enter your name \ No newline at end of file diff --git a/src/main/resources/org/gcube/portlets/user/td/open/client/Messages_fr.properties b/src/main/resources/org/gcube/portlets/user/td/open/client/Messages_fr.properties new file mode 100644 index 0000000..b4a7627 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/open/client/Messages_fr.properties @@ -0,0 +1,2 @@ +sendButton = Envoyer +nameField = Entrez votre nom \ No newline at end of file diff --git a/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/TDOpen.css b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/TDOpen.css new file mode 100644 index 0000000..21e8e84 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/TDOpen.css @@ -0,0 +1,53 @@ +@CHARSET "UTF-8"; + + +.wizard-title { + padding: 5px; + font-weight: bold; + font-size: small; + background-color: #C3D9FF; +} + +.wizard-footer { + padding: 5px; + font-weight: bold; + font-size: small; + text-align: right; + background-color: #CDEB8B +} + +.source-selection-hover:hover { + cursor: pointer; +} + + + +/*.column-excluded { + background-color: #e6e0da !important; + color: #bfa698; +}*/ + +.importSelection-sources { + padding: 30px; + display: block; + +} + +.importSelection-source { + padding-bottom: 20px; +} + + + +.sdmxRegistryUrlStyle { + padding-top:5px; +} + +.sdmxRegistryUrlInputStyle { + width:300px!important; +} + + +input#sdmxRegistryUrlInputFieldId-input { + width:300px!important; +} diff --git a/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh.png b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh.png new file mode 100644 index 0000000..764f995 Binary files /dev/null and b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh.png differ diff --git a/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh_16.png b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh_16.png new file mode 100644 index 0000000..72edf8a Binary files /dev/null and b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh_16.png differ diff --git a/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh_32.png b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh_32.png new file mode 100644 index 0000000..f3521ea Binary files /dev/null and b/src/main/resources/org/gcube/portlets/user/td/open/client/dataresource/resources/arrow-refresh_32.png differ diff --git a/src/main/webapp/TDOpen.css b/src/main/webapp/TDOpen.css new file mode 100644 index 0000000..7aca7ac --- /dev/null +++ b/src/main/webapp/TDOpen.css @@ -0,0 +1,34 @@ +/** Add css rules here for your application. */ + + +/** Example rules used by the template application (remove for your app) */ +h1 { + font-size: 2em; + font-weight: bold; + color: #777777; + margin: 40px 0px 70px; + text-align: center; +} + +.sendButton { + display: block; + font-size: 16pt; +} + +/** Most GWT widgets already have a style name defined */ +.gwt-DialogBox { + width: 400px; +} + +.dialogVPanel { + margin: 5px; +} + +.serverResponseLabelError { + color: red; +} + +/** Set ids using widget.getElement().setId("idOfElement") */ +#closeButton { + margin: 15px 6px 6px; +} diff --git a/src/main/webapp/TDOpen.html b/src/main/webapp/TDOpen.html new file mode 100644 index 0000000..72a861b --- /dev/null +++ b/src/main/webapp/TDOpen.html @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + Web Application Starter Project + + + + + + + + + + + + + + + + + + + + + + +

Web Application Starter Project

+ + + + + + + + + + + + +
Please enter your name:
+ + diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..520475d --- /dev/null +++ b/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,34 @@ + + + + + + + + TDOpenService + org.gcube.portlets.user.td.open.server.TDOpenServiceImpl + + + + jUnitHostImpl + com.google.gwt.junit.server.JUnitHostImpl + + + + + TDOpenService + tabulardataportlet/TDOpenService + + + jUnitHostImpl + TDOpenManagerWidgets/junithost/* + + + + + TDOpen.html + + + diff --git a/src/test/java/org/gcube/portlets/user/td/open/client/GwtTestTDOpen.java b/src/test/java/org/gcube/portlets/user/td/open/client/GwtTestTDOpen.java new file mode 100644 index 0000000..916788f --- /dev/null +++ b/src/test/java/org/gcube/portlets/user/td/open/client/GwtTestTDOpen.java @@ -0,0 +1,83 @@ +package org.gcube.portlets.user.td.open.client; + +import java.util.List; + +import org.gcube.portlets.user.td.gxtservice.client.rpc.TDGXTService; +import org.gcube.portlets.user.td.gxtservice.client.rpc.TDGXTServiceAsync; +import org.gcube.portlets.user.td.gxtservice.shared.TabResource; + +import com.google.gwt.core.client.GWT; +import com.google.gwt.junit.client.GWTTestCase; +import com.google.gwt.user.client.rpc.AsyncCallback; +import com.google.gwt.user.client.rpc.ServiceDefTarget; + +/** + * GWT JUnit integration tests must extend GWTTestCase. + * Using "GwtTest*" naming pattern exclude them from running with + * surefire during the test phase. + * + * If you run the tests using the Maven command line, you will have to + * navigate with your browser to a specific url given by Maven. + * See http://mojo.codehaus.org/gwt-maven-plugin/user-guide/testing.html + * for details. + */ +public class GwtTestTDOpen extends GWTTestCase { + + /** + * Must refer to a valid module that sources this class. + */ + public String getModuleName() { + return "org.gcube.portlets.user.td.open.TDOpenJUnit"; + } + + /** + * This test will send a request to the server + */ + public void testResource() { + // Create the service that we will test. + TDGXTServiceAsync tdGXTService = GWT.create(TDGXTService.class); + ServiceDefTarget target = (ServiceDefTarget) tdGXTService; + System.out.println(GWT.getModuleBaseURL() + "TDGXTService"); + target.setServiceEntryPoint(GWT.getModuleBaseURL() + "TDGXTService"); + + // Since RPC calls are asynchronous, we will need to wait for a response + // after this test method returns. This line tells the test runner to wait + // up to 7 seconds before timing out. + delayTestFinish(7000); + + // Send a request to the server. + tdGXTService.getTabularResources(new AsyncCallback>() { + + @Override + public void onFailure(Throwable caught) { + // The request resulted in an unexpected error. + fail("Request failure: " + caught.getMessage()); + + } + + @Override + public void onSuccess(List result) { + // Shows the first three resources. + int i=0; + for(TabResource tr:result){ + i++; + System.out.println(tr.toString()); + if(i>3){ + break; + } + } + + assertTrue(result.size()>0); + + // Now that we have received a response, we need to tell the test runner + // that the test is complete. You must call finishTest() after an + // asynchronous test finishes successfully, or the test will time out. + finishTest(); + + } + }); + + } + + +} diff --git a/src/test/resources/org/gcube/portlets/user/td/open/TDOpenJUnit.gwt.xml b/src/test/resources/org/gcube/portlets/user/td/open/TDOpenJUnit.gwt.xml new file mode 100644 index 0000000..71ededf --- /dev/null +++ b/src/test/resources/org/gcube/portlets/user/td/open/TDOpenJUnit.gwt.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + diff --git a/templates/INSTALL b/templates/INSTALL new file mode 100644 index 0000000..e69de29 diff --git a/templates/LICENSE b/templates/LICENSE new file mode 100644 index 0000000..cc51139 --- /dev/null +++ b/templates/LICENSE @@ -0,0 +1,6 @@ +gCube System - License +------------------------------------------------------------ + +The gCube/gCore software is licensed as Free Open Source software conveying to the EUPL (http://ec.europa.eu/idabc/eupl). +The software and documentation is provided by its authors/distributors "as is" and no expressed or +implied warranty is given for its use, quality or fitness for a particular case. \ No newline at end of file diff --git a/templates/MAINTAINERS b/templates/MAINTAINERS new file mode 100644 index 0000000..0bc9be3 --- /dev/null +++ b/templates/MAINTAINERS @@ -0,0 +1 @@ +Giancarlo Panichi (giancarlo.panichi@isti.cnr.it), CNR Pisa, Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" diff --git a/templates/README b/templates/README new file mode 100644 index 0000000..e81341a --- /dev/null +++ b/templates/README @@ -0,0 +1,40 @@ +The gCube System - ${name} +------------------------------------------------------------ + +This work has been supported by the following European projects: iMarine (FP7-INFRASTRUCTURES-2011-2) + +Authors +------- + +Giancarlo Panichi (giancarlo.panichi@isti.cnr.it), CNR Pisa, +Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" + + +Version and Release Date +------------------------ + +v. ${version} (${release.date}) + +Description +----------- + +${project.description} + +Download information +-------------------- +Source code URL: ${scm.url} + + +Documentation +------------- + +${project.description} + + +Licensing +--------- + +This software is licensed under the terms you may find in the file named "LICENSE" in this directory. + + + diff --git a/templates/changelog.xml b/templates/changelog.xml new file mode 100644 index 0000000..470a87b --- /dev/null +++ b/templates/changelog.xml @@ -0,0 +1,6 @@ + + + First Release + + \ No newline at end of file diff --git a/templates/descriptor.xml b/templates/descriptor.xml new file mode 100644 index 0000000..b978636 --- /dev/null +++ b/templates/descriptor.xml @@ -0,0 +1,39 @@ + + servicearchive + + tar.gz + + / + + + ${distroDirectory} + / + true + + README + LICENSE + INSTALL + MAINTAINERS + changelog.xml + + 755 + + + + + ${distroDirectory}/svnpath.txt + /${artifactId} + + + ${configDirectory}/profile.xml + / + + + target/${build.finalName}.${packaging} + /${artifactId} + + + \ No newline at end of file diff --git a/templates/profile.xml b/templates/profile.xml new file mode 100644 index 0000000..ffa3274 --- /dev/null +++ b/templates/profile.xml @@ -0,0 +1,29 @@ + + + + Service + + ${project.description} + PortletsUser + ${project.name} + 1.0.0 + + + ${project.description} + ${project.name} + ${version} + + ${project.groupId} + ${project.artifactId} + ${project.version} + + library + + ${project.build.finalName}.${project.packaging} + + + + + + + diff --git a/templates/svnpath.txt b/templates/svnpath.txt new file mode 100644 index 0000000..dcd0d22 --- /dev/null +++ b/templates/svnpath.txt @@ -0,0 +1 @@ +${scm.url} \ No newline at end of file