619f4b98892455f0bcc5c05900ca51dee3b0e15c
[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.commands.AddUserCommand;\r
38 import gr.grnet.pithos.web.client.foldertree.Folder;\r
39 import gr.grnet.pithos.web.client.grouptree.Group;\r
40 \r
41 import com.google.gwt.dom.client.NativeEvent;\r
42 import com.google.gwt.event.dom.client.ClickEvent;\r
43 import com.google.gwt.event.dom.client.ClickHandler;\r
44 import com.google.gwt.event.dom.client.KeyCodes;\r
45 import com.google.gwt.event.dom.client.KeyDownEvent;\r
46 import com.google.gwt.user.client.Command;\r
47 import com.google.gwt.user.client.Event.NativePreviewEvent;\r
48 import com.google.gwt.user.client.ui.Anchor;\r
49 import com.google.gwt.user.client.ui.Button;\r
50 import com.google.gwt.user.client.ui.DialogBox;\r
51 import com.google.gwt.user.client.ui.FlexTable;\r
52 import com.google.gwt.user.client.ui.HasHorizontalAlignment;\r
53 import com.google.gwt.user.client.ui.TextBox;\r
54 import com.google.gwt.user.client.ui.VerticalPanel;\r
55 \r
56 /**\r
57  * The 'Folder properties' dialog box implementation.\r
58  */\r
59 public class GroupCreateDialog extends DialogBox {\r
60 \r
61     protected Pithos app;\r
62 \r
63     private Command callback;\r
64     \r
65         /**\r
66          * The widget that holds the folderName of the folder.\r
67          */\r
68         TextBox groupName = new TextBox();\r
69 \r
70         final VerticalPanel inner;\r
71 \r
72         public GroupCreateDialog(final Pithos app) {\r
73                 this(app, null);\r
74         }\r
75         \r
76         /**\r
77          * The widget's constructor.\r
78          */\r
79         public GroupCreateDialog(final Pithos app, Command callback) {\r
80         this.app = app;\r
81         this.callback = callback;\r
82         \r
83                 Anchor close = new Anchor("close");\r
84                 close.addStyleName("close");\r
85                 close.addClickHandler(new ClickHandler() {\r
86                         \r
87                         @Override\r
88                         public void onClick(ClickEvent event) {\r
89                                 hide();\r
90                         }\r
91                 });\r
92 \r
93                 setAnimationEnabled(true);\r
94                 setGlassEnabled(true);\r
95                 setStyleName("pithos-DialogBox");\r
96 \r
97                 // Enable IE selection for the dialog (must disable it upon closing it)\r
98                 Pithos.enableIESelection();\r
99 \r
100                 // Use this opportunity to set the dialog's caption.\r
101                 setText("Create group");\r
102 \r
103                 // Outer contains inner and buttons\r
104                 VerticalPanel outer = new VerticalPanel();\r
105                 outer.add(close);\r
106                 // Inner contains generalPanel and permPanel\r
107                 inner = new VerticalPanel();\r
108                 inner.addStyleName("inner");\r
109 \r
110                 VerticalPanel generalPanel = new VerticalPanel();\r
111         FlexTable generalTable = new FlexTable();\r
112         generalTable.setText(0, 0, "Name");\r
113 \r
114         generalTable.setWidget(0, 1, groupName);\r
115 \r
116         generalTable.getFlexCellFormatter().setStyleName(0, 0, "props-labels");\r
117         generalTable.getFlexCellFormatter().setStyleName(0, 1, "props-values");\r
118         generalTable.setCellSpacing(4);\r
119         generalPanel.add(generalTable);\r
120         inner.add(generalPanel);\r
121 \r
122         outer.add(inner);\r
123 \r
124                 // Create the 'Create/Update' button, along with a listener that hides the dialog\r
125                 // when the button is clicked and quits the application.\r
126                 String okLabel = "Create";\r
127                 final Button ok = new Button(okLabel, new ClickHandler() {\r
128                         @Override\r
129                         public void onClick(ClickEvent event) {\r
130                                 createGroup();\r
131                                 closeDialog();\r
132                         }\r
133                 });\r
134                 ok.addStyleName("button");\r
135                 outer.add(ok);\r
136         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
137 \r
138         setWidget(outer);\r
139         }\r
140 \r
141         @Override\r
142         public void center() {\r
143                 super.center();\r
144                 groupName.setFocus(true);\r
145         }\r
146 \r
147         @Override\r
148         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
149                 super.onPreviewNativeEvent(preview);\r
150 \r
151                 NativeEvent evt = preview.getNativeEvent();\r
152                 if (evt.getType().equals(KeyDownEvent.getType().getName()))\r
153                         // Use the popup's key preview hooks to close the dialog when either\r
154                         // enter or escape is pressed.\r
155                         switch (evt.getKeyCode()) {\r
156                                 case KeyCodes.KEY_ENTER:\r
157                                         createGroup();\r
158                     closeDialog();\r
159                                         break;\r
160                                 case KeyCodes.KEY_ESCAPE:\r
161                                         closeDialog();\r
162                                         break;\r
163                         }\r
164         }\r
165 \r
166 \r
167         /**\r
168          * Enables IE selection prevention and hides the dialog\r
169          * (we disable the prevention on creation of the dialog)\r
170          */\r
171         public void closeDialog() {\r
172                 Pithos.preventIESelection();\r
173                 hide();\r
174                 if (callback != null)\r
175                         callback.execute();\r
176         }\r
177 \r
178         /**\r
179          * Generate an RPC request to create a new folder.\r
180          */\r
181         void createGroup() {\r
182                 String name = groupName.getText().trim();\r
183                 if (name.length() == 0)\r
184                         return;\r
185                 Group group = app.addGroup(name);\r
186                 \r
187                 new AddUserCommand(app, null, group).execute();\r
188         }\r
189 }\r