Statistics
| Branch: | Tag: | Revision:

root / web_client / src / gr / grnet / pithos / web / client / FeedbackDialog.java @ 4ffffd23

History | View | Annotate | Download (5.4 kB)

1
/*
2
 * Copyright 2011 GRNET S.A. All rights reserved.
3
 *
4
 * Redistribution and use in source and binary forms, with or
5
 * without modification, are permitted provided that the following
6
 * conditions are met:
7
 *
8
 *   1. Redistributions of source code must retain the above
9
 *      copyright notice, this list of conditions and the following
10
 *      disclaimer.
11
 *
12
 *   2. Redistributions in binary form must reproduce the above
13
 *      copyright notice, this list of conditions and the following
14
 *      disclaimer in the documentation and/or other materials
15
 *      provided with the distribution.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
 * POSSIBILITY OF SUCH DAMAGE.
29
 *
30
 * The views and conclusions contained in the software and
31
 * documentation are those of the authors and should not be
32
 * interpreted as representing official policies, either expressed
33
 * or implied, of GRNET S.A.
34
 */
35
package gr.grnet.pithos.web.client;
36

    
37
import gr.grnet.pithos.web.client.foldertree.Resource;
38
import gr.grnet.pithos.web.client.rest.PostRequest;
39

    
40
import com.google.gwt.core.client.GWT;
41
import com.google.gwt.core.client.Scheduler;
42
import com.google.gwt.dom.client.NativeEvent;
43
import com.google.gwt.event.dom.client.ClickEvent;
44
import com.google.gwt.event.dom.client.ClickHandler;
45
import com.google.gwt.event.dom.client.KeyCodes;
46
import com.google.gwt.http.client.Response;
47
import com.google.gwt.user.client.Event.NativePreviewEvent;
48
import com.google.gwt.user.client.ui.Anchor;
49
import com.google.gwt.user.client.ui.Button;
50
import com.google.gwt.user.client.ui.DialogBox;
51
import com.google.gwt.user.client.ui.FlexTable;
52
import com.google.gwt.user.client.ui.HTML;
53
import com.google.gwt.user.client.ui.HasHorizontalAlignment;
54
import com.google.gwt.user.client.ui.HorizontalPanel;
55
import com.google.gwt.user.client.ui.TextArea;
56
import com.google.gwt.user.client.ui.TextBox;
57
import com.google.gwt.user.client.ui.VerticalPanel;
58

    
59

    
60
/**
61
 * A dialog box that displays info about invitations
62
 */
63
public class FeedbackDialog extends DialogBox {
64

    
65
        private final String WIDTH_FIELD = "35em";
66
        private final String WIDTH_TEXT = "42em";
67

    
68
        /**
69
         * The widget constructor.
70
         */
71
        public FeedbackDialog(final Pithos app) {
72
                // Set the dialog's caption.
73
                Anchor close = new Anchor();
74
                close.addStyleName("close");
75
                close.addClickHandler(new ClickHandler() {
76
                        
77
                        @Override
78
                        public void onClick(ClickEvent event) {
79
                                hide();
80
                        }
81
                });
82
                setText("Send feedback");
83
                setAnimationEnabled(true);
84
                setGlassEnabled(true);
85
                setStyleName("pithos-DialogBox");
86
                VerticalPanel outer = new VerticalPanel();
87
                outer.add(close);
88
                
89
                VerticalPanel inner = new VerticalPanel();
90
                inner.addStyleName("inner");
91
                // Create the text and set a style name so we can style it with CSS.
92
                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.");
93
                text.setStyleName("pithos-credentialsText");
94
                inner.add(text);
95
                FlexTable table = new FlexTable();
96
                table.setText(0, 0, "Please describe your problem here, provide as many details as possible");
97
                final TextArea msg = new TextArea();
98
                msg.setWidth("100%");
99
                msg.setHeight("100px");
100
                table.setWidget(1, 0, msg);
101

    
102
                table.getFlexCellFormatter().setStyleName(0, 0, "props-labels");
103
                table.getFlexCellFormatter().setStyleName(0, 1, "props-values");
104
                inner.add(table);
105

    
106
                // Create the 'OK' button, along with a listener that hides the dialog
107
                // when the button is clicked.
108
                Button confirm = new Button("Submit feedback", new ClickHandler() {
109
                        @Override
110
                        public void onClick(ClickEvent event) {
111
                                PostRequest sendFeedback = new PostRequest("/tools/", "", "feedback", "feedback-msg=" + msg.getText()) {
112
                                        
113
                                        @Override
114
                                        protected void onUnauthorized(Response response) {
115
                                                app.sessionExpired();
116
                                        }
117
                                        
118
                                        @Override
119
                                        public void onSuccess(Resource result) {
120
                                                app.displayInformation("Feedback sent");
121
                                        }
122
                                        
123
                                        @Override
124
                                        public void onError(Throwable t) {
125
                                                GWT.log("", t);
126
                                        }
127
                                };
128
                                sendFeedback.setHeader("X-Auth-Token", app.getToken());
129
                                Scheduler.get().scheduleDeferred(sendFeedback);
130
                                hide();
131
                        }
132
                });
133
                confirm.addStyleName("button");
134
                inner.add(confirm);
135
                outer.add(inner);
136
                outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);
137
                setWidget(outer);
138
        }
139

    
140
        @Override
141
        protected void onPreviewNativeEvent(NativePreviewEvent preview) {
142
                super.onPreviewNativeEvent(preview);
143
                NativeEvent evt = preview.getNativeEvent();
144
                if (evt.getType().equals("keydown"))
145
                        // Use the popup's key preview hooks to close the dialog when
146
                        // either enter or escape is pressed.
147
                        switch (evt.getKeyCode()) {
148
                                case KeyCodes.KEY_ENTER:
149
                                case KeyCodes.KEY_ESCAPE:
150
                                        hide();
151
                                        break;
152
                        }
153
        }
154
}