Experimentaly added a "please wait" popup during potentialy long delete operations
[pithos-web-client] / src / gr / grnet / pithos / web / client / FeedbackDialog.java
index dc6872a..b8710f9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2011 GRNET S.A. All rights reserved.
+ * Copyright 2011-2012 GRNET S.A. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or
  * without modification, are permitted provided that the following
@@ -39,11 +39,15 @@ import gr.grnet.pithos.web.client.rest.PostRequest;
 
 import com.google.gwt.core.client.GWT;
 import com.google.gwt.core.client.Scheduler;
+import com.google.gwt.dom.client.Element;
+import com.google.gwt.dom.client.EventTarget;
 import com.google.gwt.dom.client.NativeEvent;
+import com.google.gwt.dom.client.TextAreaElement;
 import com.google.gwt.event.dom.client.ClickEvent;
 import com.google.gwt.event.dom.client.ClickHandler;
 import com.google.gwt.event.dom.client.KeyCodes;
 import com.google.gwt.http.client.Response;
+import com.google.gwt.i18n.client.Dictionary;
 import com.google.gwt.user.client.Event.NativePreviewEvent;
 import com.google.gwt.user.client.ui.Anchor;
 import com.google.gwt.user.client.ui.Button;
@@ -60,12 +64,23 @@ import com.google.gwt.user.client.ui.VerticalPanel;
  */
 public class FeedbackDialog extends DialogBox {
 
+       Dictionary otherProperties = Dictionary.getDictionary("otherProperties");
+       
+       Pithos app;
+       
+       String appData;
+       
+       TextArea msg;
+       
        /**
         * The widget constructor.
         */
-       public FeedbackDialog(final Pithos app) {
+       public FeedbackDialog(final Pithos _app, final String _appData) {
+               app = _app;
+               appData = _appData;
+               
                // Set the dialog's caption.
-               Anchor close = new Anchor();
+               Anchor close = new Anchor("close");
                close.addStyleName("close");
                close.addClickHandler(new ClickHandler() {
                        
@@ -86,12 +101,12 @@ public class FeedbackDialog extends DialogBox {
                VerticalPanel inner = new VerticalPanel();
                inner.addStyleName("inner");
                // Create the text and set a style name so we can style it with CSS.
-               HTML text = new HTML("Pithos is currently in alpha test and we would appreciate any<br>" + "kind of feedback. We welcome any suggestions, questions and<br>" + " bug reports you may have.");
+               HTML text = new HTML("Pithos+ is currently in alpha test and we would appreciate any<br>" + "kind of feedback. We welcome any suggestions, questions and<br>" + " bug reports you may have.");
                text.setStyleName("pithos-credentialsText");
                inner.add(text);
                FlexTable table = new FlexTable();
                table.setText(0, 0, "Please describe your problem here, provide as many details as possible");
-               final TextArea msg = new TextArea();
+               msg = new TextArea();
                msg.setWidth("100%");
                msg.setHeight("100px");
                table.setWidget(1, 0, msg);
@@ -105,25 +120,7 @@ public class FeedbackDialog extends DialogBox {
                Button confirm = new Button("Submit feedback", new ClickHandler() {
                        @Override
                        public void onClick(ClickEvent event) {
-                               PostRequest sendFeedback = new PostRequest("/tools/", "", "feedback", "feedback-msg=" + msg.getText()) {
-                                       
-                                       @Override
-                                       protected void onUnauthorized(Response response) {
-                                               app.sessionExpired();
-                                       }
-                                       
-                                       @Override
-                                       public void onSuccess(Resource result) {
-                                               app.displayInformation("Feedback sent");
-                                       }
-                                       
-                                       @Override
-                                       public void onError(Throwable t) {
-                                               GWT.log("", t);
-                                       }
-                               };
-                               sendFeedback.setHeader("X-Auth-Token", app.getToken());
-                               Scheduler.get().scheduleDeferred(sendFeedback);
+                               sendFeedback();
                                hide();
                        }
                });
@@ -138,14 +135,41 @@ public class FeedbackDialog extends DialogBox {
        protected void onPreviewNativeEvent(NativePreviewEvent preview) {
                super.onPreviewNativeEvent(preview);
                NativeEvent evt = preview.getNativeEvent();
-               if (evt.getType().equals("keydown"))
+               if (evt.getType().equals("keydown")) {
                        // Use the popup's key preview hooks to close the dialog when
                        // either enter or escape is pressed.
                        switch (evt.getKeyCode()) {
                                case KeyCodes.KEY_ENTER:
+                                       sendFeedback();
+                                       hide();
+                                       break;
                                case KeyCodes.KEY_ESCAPE:
                                        hide();
                                        break;
                        }
+               }
+       }
+
+       /**
+        */
+       void sendFeedback() {
+               PostRequest sendFeedback = new PostRequest("", "", otherProperties.get("feedbackUrl"), "feedback_msg=" + msg.getText() + "&feedback_data=" + appData + "&auth=" + app.getToken()) {
+                       
+                       @Override
+                       protected void onUnauthorized(Response response) {
+                               app.sessionExpired();
+                       }
+                       
+                       @Override
+                       public void onSuccess(Resource result) {
+                               app.displayInformation("Feedback sent");
+                       }
+                       
+                       @Override
+                       public void onError(Throwable t) {
+                               GWT.log("", t);
+                       }
+               };
+               Scheduler.get().scheduleDeferred(sendFeedback);
        }
 }