Statistics
| Branch: | Tag: | Revision:

root / web_client / src / gr / grnet / pithos / web / client / InvitationsDialog.java @ 63f9af58

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.TextBox;
56
import com.google.gwt.user.client.ui.VerticalPanel;
57

    
58

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

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

    
67
        /**
68
         * The widget constructor.
69
         */
70
        public InvitationsDialog(final Pithos app, Invitations inv) {
71
                Anchor close = new Anchor();
72
                close.addStyleName("close");
73
                close.addClickHandler(new ClickHandler() {
74
                        
75
                        @Override
76
                        public void onClick(ClickEvent event) {
77
                                hide();
78
                        }
79
                });
80
                // Set the dialog's caption.
81
                setText("Invite people (" + inv.getInvitationsLeft() + " invitations left)");
82
                setAnimationEnabled(true);
83
                setGlassEnabled(true);
84
                setStyleName("pithos-DialogBox");
85
                VerticalPanel outer = new VerticalPanel();
86
                outer.add(close);
87

    
88
                VerticalPanel inner = new VerticalPanel();
89
                inner.addStyleName("inner");
90
                // Create the text and set a style name so we can style it with CSS.
91
                HTML text = new HTML("You have " + inv.getInvitationsLeft() + " invitations left in your account.");
92
                text.setStyleName("pithos-credentialsText");
93
                text.setWidth(WIDTH_TEXT);
94
                inner.add(text);
95
                FlexTable table = new FlexTable();
96
                table.setText(0, 0, "Name");
97
                table.setText(1, 0, "E-mail");
98
                final TextBox name = new TextBox();
99
                name.setWidth(WIDTH_FIELD);
100
                table.setWidget(0, 1, name);
101

    
102
                final TextBox emailBox = new TextBox();
103
                emailBox.setWidth(WIDTH_FIELD);
104
                table.setWidget(1, 1, emailBox);
105

    
106
                table.getFlexCellFormatter().setStyleName(0, 0, "props-labels");
107
                table.getFlexCellFormatter().setStyleName(0, 1, "props-values");
108
                table.getFlexCellFormatter().setStyleName(1, 0, "props-labels");
109
                table.getFlexCellFormatter().setStyleName(1, 1, "props-values");
110
                inner.add(table);
111

    
112
                Button confirm = new Button("Send", new ClickHandler() {
113
                        @Override
114
                        public void onClick(ClickEvent event) {
115
                                PostRequest sendInvitation = new PostRequest("/im/", "", "invitations?uniq=" + emailBox.getText().trim() + "&realname=" + name.getText().trim()) {
116
                                        
117
                                        @Override
118
                                        protected void onUnauthorized(Response response) {
119
                                                app.sessionExpired();
120
                                        }
121
                                        
122
                                        @Override
123
                                        public void onSuccess(Resource result) {
124
                                        }
125
                                        
126
                                        @Override
127
                                        public void onError(Throwable t) {
128
                                                GWT.log("", t);
129
                                        }
130
                                };
131
                                sendInvitation.setHeader("X-Auth-Token", app.getToken());
132
                                Scheduler.get().scheduleDeferred(sendInvitation);
133
                                hide();
134
                        }
135
                });
136
                confirm.addStyleName("button");
137
                inner.add(confirm);
138
                outer.add(inner);
139
                outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);
140
                setWidget(outer);
141
        }
142

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