Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / FeedbackDialog.java @ 28267d27

History | View | Annotate | Download (5.6 kB)

1
/*
2
 * Copyright 2011-2012 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.Element;
43
import com.google.gwt.dom.client.EventTarget;
44
import com.google.gwt.dom.client.NativeEvent;
45
import com.google.gwt.dom.client.TextAreaElement;
46
import com.google.gwt.event.dom.client.ClickEvent;
47
import com.google.gwt.event.dom.client.ClickHandler;
48
import com.google.gwt.event.dom.client.KeyCodes;
49
import com.google.gwt.http.client.Response;
50
import com.google.gwt.i18n.client.Dictionary;
51
import com.google.gwt.user.client.Event.NativePreviewEvent;
52
import com.google.gwt.user.client.ui.Anchor;
53
import com.google.gwt.user.client.ui.Button;
54
import com.google.gwt.user.client.ui.DialogBox;
55
import com.google.gwt.user.client.ui.FlexTable;
56
import com.google.gwt.user.client.ui.HTML;
57
import com.google.gwt.user.client.ui.HasHorizontalAlignment;
58
import com.google.gwt.user.client.ui.TextArea;
59
import com.google.gwt.user.client.ui.VerticalPanel;
60

    
61

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

    
67
        Dictionary otherProperties = Dictionary.getDictionary("otherProperties");
68
        
69
        Pithos app;
70
        
71
        String appData;
72
        
73
        TextArea msg;
74
        
75
        /**
76
         * The widget constructor.
77
         */
78
        public FeedbackDialog(final Pithos _app, final String _appData) {
79
                app = _app;
80
                appData = _appData;
81
                
82
                // Set the dialog's caption.
83
                Anchor close = new Anchor("close");
84
                close.addStyleName("close");
85
                close.addClickHandler(new ClickHandler() {
86
                        
87
                        @Override
88
                        public void onClick(ClickEvent event) {
89
                                hide();
90
                        }
91
                });
92
                setText("Send feedback");
93
                setGlassEnabled(true);
94
                
95
                setStyleName("pithos-DialogBox");
96

    
97
                VerticalPanel outer = new VerticalPanel();
98
                outer.add(close);
99
                
100
                VerticalPanel inner = new VerticalPanel();
101
                inner.addStyleName("inner");
102
                // Create the text and set a style name so we can style it with CSS.
103
                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.");
104
                text.setStyleName("pithos-credentialsText");
105
                inner.add(text);
106
                FlexTable table = new FlexTable();
107
                table.setText(0, 0, "Please describe your problem here, provide as many details as possible");
108
                msg = new TextArea();
109
                msg.setWidth("100%");
110
                msg.setHeight("100px");
111
                table.setWidget(1, 0, msg);
112

    
113
                table.getFlexCellFormatter().setStyleName(0, 0, "props-labels");
114
                table.getFlexCellFormatter().setStyleName(0, 1, "props-values");
115
                inner.add(table);
116

    
117
                // Create the 'OK' button, along with a listener that hides the dialog
118
                // when the button is clicked.
119
                Button confirm = new Button("Submit feedback", new ClickHandler() {
120
                        @Override
121
                        public void onClick(ClickEvent event) {
122
                                sendFeedback();
123
                                hide();
124
                        }
125
                });
126
                confirm.addStyleName("button");
127
                inner.add(confirm);
128
                outer.add(inner);
129
                outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);
130
                setWidget(outer);
131
        }
132

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

    
152
        /**
153
         */
154
        void sendFeedback() {
155
                PostRequest sendFeedback = new PostRequest("", "", otherProperties.get("feedbackUrl"), "feedback_msg=" + msg.getText() + "&feedback_data=" + appData + "&auth=" + app.getToken()) {
156
                        
157
                        @Override
158
                        protected void onUnauthorized(Response response) {
159
                                app.sessionExpired();
160
                        }
161
                        
162
                        @Override
163
                        public void onSuccess(Resource result) {
164
                                app.displayInformation("Feedback sent");
165
                        }
166
                        
167
                        @Override
168
                        public void onError(Throwable t) {
169
                                GWT.log("", t);
170
                        }
171
                };
172
                Scheduler.get().scheduleDeferred(sendFeedback);
173
        }
174
}