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