Document the role of PithosDisclosurePanel
[pithos-web-client] / src / gr / grnet / pithos / web / client / GroupCreateDialog.java
1 /*\r
2  * Copyright 2011-2013 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                 setGlassEnabled(true);\r
94                 setStyleName("pithos-DialogBox");\r
95 \r
96                 // Enable IE selection for the dialog (must disable it upon closing it)\r
97                 Pithos.enableIESelection();\r
98 \r
99                 // Use this opportunity to set the dialog's caption.\r
100                 setText("Create group");\r
101 \r
102                 // Outer contains inner and buttons\r
103                 VerticalPanel outer = new VerticalPanel();\r
104                 outer.add(close);\r
105                 // Inner contains generalPanel and permPanel\r
106                 inner = new VerticalPanel();\r
107                 inner.addStyleName("inner");\r
108 \r
109                 VerticalPanel generalPanel = new VerticalPanel();\r
110         FlexTable generalTable = new FlexTable();\r
111         generalTable.setText(0, 0, "Name");\r
112 \r
113         generalTable.setWidget(0, 1, groupName);\r
114 \r
115         generalTable.getFlexCellFormatter().setStyleName(0, 0, "props-labels");\r
116         generalTable.getFlexCellFormatter().setStyleName(0, 1, "props-values");\r
117         generalTable.setCellSpacing(4);\r
118         generalPanel.add(generalTable);\r
119         inner.add(generalPanel);\r
120 \r
121         outer.add(inner);\r
122 \r
123                 // Create the 'Create/Update' button, along with a listener that hides the dialog\r
124                 // when the button is clicked and quits the application.\r
125                 String okLabel = "Create";\r
126                 final Button ok = new Button(okLabel, new ClickHandler() {\r
127                         @Override\r
128                         public void onClick(ClickEvent event) {\r
129                                 createGroup();\r
130                                 closeDialog();\r
131                         }\r
132                 });\r
133                 ok.addStyleName("button");\r
134                 outer.add(ok);\r
135         outer.setCellHorizontalAlignment(inner, HasHorizontalAlignment.ALIGN_CENTER);\r
136 \r
137         setWidget(outer);\r
138         }\r
139 \r
140         @Override\r
141         public void center() {\r
142                 super.center();\r
143                 groupName.setFocus(true);\r
144         }\r
145 \r
146         @Override\r
147         protected void onPreviewNativeEvent(NativePreviewEvent preview) {\r
148                 super.onPreviewNativeEvent(preview);\r
149 \r
150                 NativeEvent evt = preview.getNativeEvent();\r
151                 if (evt.getType().equals(KeyDownEvent.getType().getName()))\r
152                         // Use the popup's key preview hooks to close the dialog when either\r
153                         // enter or escape is pressed.\r
154                         switch (evt.getKeyCode()) {\r
155                                 case KeyCodes.KEY_ENTER:\r
156                                         createGroup();\r
157                     closeDialog();\r
158                                         break;\r
159                                 case KeyCodes.KEY_ESCAPE:\r
160                                         closeDialog();\r
161                                         break;\r
162                         }\r
163         }\r
164 \r
165 \r
166         /**\r
167          * Enables IE selection prevention and hides the dialog\r
168          * (we disable the prevention on creation of the dialog)\r
169          */\r
170         public void closeDialog() {\r
171                 Pithos.preventIESelection();\r
172                 hide();\r
173                 if (callback != null)\r
174                         callback.execute();\r
175         }\r
176 \r
177         /**\r
178          * Generate an RPC request to create a new folder.\r
179          */\r
180         void createGroup() {\r
181                 String name = groupName.getText().trim();\r
182                 if (name.length() == 0)\r
183                         return;\r
184                 Group group = app.addGroup(name);\r
185                 \r
186                 new AddUserCommand(app, null, group).execute();\r
187         }\r
188 }\r