Replaced simple prompts for creating groups and adding users with normal dialogs
[pithos-web-client] / src / gr / grnet / pithos / web / client / GroupCreateDialog.java
1 /*\r
2  * Copyright 2011-2012 GRNET S.A. All rights reserved.\r
3  *\r
4  * Redistribution and use in source and binary forms, with or\r
5  * without modification, are permitted provided that the following\r
6  * conditions are met:\r
7  *\r
8  *   1. Redistributions of source code must retain the above\r
9  *      copyright notice, this list of conditions and the following\r
10  *      disclaimer.\r
11  *\r
12  *   2. Redistributions in binary form must reproduce the above\r
13  *      copyright notice, this list of conditions and the following\r
14  *      disclaimer in the documentation and/or other materials\r
15  *      provided with the distribution.\r
16  *\r
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS\r
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR\r
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\r
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\r
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\r
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
28  * POSSIBILITY OF SUCH DAMAGE.\r
29  *\r
30  * The views and conclusions contained in the software and\r
31  * documentation are those of the authors and should not be\r
32  * interpreted as representing official policies, either expressed\r
33  * or implied, of GRNET S.A.\r
34  */\r
35 package gr.grnet.pithos.web.client;\r
36 \r
37 import gr.grnet.pithos.web.client.foldertree.Folder;\r
38 \r
39 import com.google.gwt.dom.client.NativeEvent;\r
40 import com.google.gwt.event.dom.client.ClickEvent;\r
41 import com.google.gwt.event.dom.client.ClickHandler;\r
42 import com.google.gwt.event.dom.client.KeyCodes;\r
43 import com.google.gwt.event.dom.client.KeyDownEvent;\r
44 import com.google.gwt.user.client.Event.NativePreviewEvent;\r
45 import com.google.gwt.user.client.ui.Anchor;\r
46 import com.google.gwt.user.client.ui.Button;\r
47 import com.google.gwt.user.client.ui.DialogBox;\r
48 import com.google.gwt.user.client.ui.FlexTable;\r
49 import com.google.gwt.user.client.ui.HasHorizontalAlignment;\r
50 import com.google.gwt.user.client.ui.TextBox;\r
51 import com.google.gwt.user.client.ui.VerticalPanel;\r
52 \r
53 /**\r
54  * The 'Folder properties' dialog box implementation.\r
55  */\r
56 public class GroupCreateDialog extends DialogBox {\r
57 \r
58     protected Pithos app;\r
59 \r
60         /**\r
61          * The widget that holds the folderName of the folder.\r
62          */\r
63         TextBox groupName = new TextBox();\r
64 \r
65         final VerticalPanel inner;\r
66 \r
67         /**\r
68          * The widget's constructor.\r
69          */\r
70         public GroupCreateDialog(final Pithos app) {\r
71         this.app = app;\r
72                 Anchor close = new Anchor();\r
73                 close.addStyleName("close");\r
74                 close.addClickHandler(new ClickHandler() {\r
75                         \r
76                         @Override\r
77                         public void onClick(ClickEvent event) {\r
78                                 hide();\r
79                         }\r
80                 });\r
81 \r
82                 setAnimationEnabled(true);\r
83                 setGlassEnabled(true);\r
84                 setStyleName("pithos-DialogBox");\r
85 \r
86                 // Enable IE selection for the dialog (must disable it upon closing it)\r
87                 Pithos.enableIESelection();\r
88 \r
89                 // Use this opportunity to set the dialog's caption.\r
90                 setText("Create group");\r
91 \r
92                 // Outer contains inner and buttons\r
93                 VerticalPanel outer = new VerticalPanel();\r
94                 outer.add(close);\r
95                 // Inner contains generalPanel and permPanel\r
96                 inner = new VerticalPanel();\r
97                 inner.addStyleName("inner");\r
98 \r
99                 VerticalPanel generalPanel = new VerticalPanel();\r
100         FlexTable generalTable = new FlexTable();\r
101         generalTable.setText(0, 0, "Name");\r
102 \r
103         generalTable.setWidget(0, 1, groupName);\r
104 \r
105         generalTable.getFlexCellFormatter().setStyleName(0, 0, "props-labels");\r
106         generalTable.getFlexCellFormatter().setStyleName(0, 1, "props-values");\r
107         generalTable.setCellSpacing(4);\r
108         generalPanel.add(generalTable);\r
109         inner.add(generalPanel);\r
110 \r
111         outer.add(inner);\r
112 \r
113                 // Create the 'Create/Update' button, along with a listener that hides the dialog\r
114                 // when the button is clicked and quits the application.\r
115                 String okLabel = "Create";\r
116                 final Button ok = new Button(okLabel, new ClickHandler() {\r
117                         @Override\r
118                         public void onClick(ClickEvent event) {\r
119                                 createGroup();\r
120                                 closeDialog();\r
121                         }\r
122                 });\r
123                 ok.addStyleName("button");\r
124                 outer.add(ok);\r
125         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
126 \r
127         setWidget(outer);\r
128         }\r
129 \r
130         @Override\r
131         public void center() {\r
132                 super.center();\r
133                 groupName.setFocus(true);\r
134         }\r
135 \r
136         @Override\r
137         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
138                 super.onPreviewNativeEvent(preview);\r
139 \r
140                 NativeEvent evt = preview.getNativeEvent();\r
141                 if (evt.getType().equals(KeyDownEvent.getType().getName()))\r
142                         // Use the popup's key preview hooks to close the dialog when either\r
143                         // enter or escape is pressed.\r
144                         switch (evt.getKeyCode()) {\r
145                                 case KeyCodes.KEY_ENTER:\r
146                                         createGroup();\r
147                     closeDialog();\r
148                                         break;\r
149                                 case KeyCodes.KEY_ESCAPE:\r
150                                         closeDialog();\r
151                                         break;\r
152                         }\r
153         }\r
154 \r
155 \r
156         /**\r
157          * Enables IE selection prevention and hides the dialog\r
158          * (we disable the prevention on creation of the dialog)\r
159          */\r
160         public void closeDialog() {\r
161                 Pithos.preventIESelection();\r
162                 hide();\r
163         }\r
164 \r
165         /**\r
166          * Generate an RPC request to create a new folder.\r
167          */\r
168         private void createGroup() {\r
169                 String name = groupName.getText().trim();\r
170                 if (name.length() == 0)\r
171                         return;\r
172                 app.addGroup(name);\r
173         }\r
174 }\r