95643afc39052c00909cbf9a0cddab2ef64044bc
[pithos-web-client] / src / gr / grnet / pithos / web / client / othersharedtree / OtherSharedTreeView.java
1 /*
2  * Copyright 2011-2013 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
36 package gr.grnet.pithos.web.client.othersharedtree;
37
38 import gr.grnet.pithos.web.client.Const;
39 import gr.grnet.pithos.web.client.FolderContextMenu;
40 import gr.grnet.pithos.web.client.PithosDisclosurePanel;
41 import gr.grnet.pithos.web.client.TreeView;
42 import gr.grnet.pithos.web.client.foldertree.Folder;
43
44 import com.google.gwt.core.client.GWT;
45 import com.google.gwt.resources.client.ImageResource;
46 import com.google.gwt.resources.client.ImageResource.ImageOptions;
47 import com.google.gwt.resources.client.ImageResource.RepeatStyle;
48 import com.google.gwt.safehtml.client.SafeHtmlTemplates;
49 import com.google.gwt.safehtml.shared.SafeHtml;
50 import com.google.gwt.user.cellview.client.CellTree;
51 import com.google.gwt.user.cellview.client.HasKeyboardSelectionPolicy.KeyboardSelectionPolicy;
52 import com.google.gwt.user.cellview.client.TreeNode;
53 import com.google.gwt.user.client.Command;
54 import com.google.gwt.user.client.ui.Composite;
55 import com.google.gwt.user.client.ui.Tree;
56
57 public class OtherSharedTreeView extends Composite implements TreeView {
58
59     public void updateChildren(Folder folder) {
60         TreeNode root = tree.getRootTreeNode();
61         updateChildren(root, folder);
62     }
63
64     private void updateChildren(TreeNode node, Folder folder) {
65         for (int i=0; i<node.getChildCount(); i++) {
66             if (node.isChildOpen(i)) {
67                 if (folder.equals(node.getChildValue(i))) {
68                     node.setChildOpen(i, false, true);
69                     node.setChildOpen(i, true, true);
70                 }
71                 else {
72                     TreeNode n = node.setChildOpen(i, true);
73                     updateChildren(n, folder);
74                 }
75             }
76         }
77     }
78
79     static interface BasicResources extends CellTree.Resources {
80
81         @Override
82                 @ImageOptions(flipRtl = true)
83         @Source("gr/grnet/pithos/web/client/cellTreeClosedItem.png")
84         ImageResource cellTreeClosedItem();
85
86         @Override
87                 @ImageOptions(flipRtl = true)
88         @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
89         ImageResource cellTreeLoading();
90
91         @Override
92                 @ImageOptions(flipRtl = true)
93         @Source("gr/grnet/pithos/web/client/cellTreeOpenItem.png")
94         ImageResource cellTreeOpenItem();
95
96         @Override
97                 @Source({"gr/grnet/pithos/web/client/PithosCellTreeBasic.css"})
98         CellTree.Style cellTreeStyle();
99         
100         @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
101         @ImageOptions(repeatStyle=RepeatStyle.None)
102         ImageResource cellTreeLoadingBasic();
103     }
104
105     public static interface Images extends Tree.Resources, FolderContextMenu.Images {
106
107         @Source("gr/grnet/pithos/resources/home22.png")
108         ImageResource home();
109
110         @Source("gr/grnet/pithos/resources/2folder22.png")
111         public ImageResource folderYellow();
112
113         @Source("gr/grnet/pithos/resources/mimetypes/document.png")
114         ImageResource document();
115
116         @Source("gr/grnet/pithos/resources/sharedtome22.png")
117         ImageResource othersShared();
118
119         @Source("gr/grnet/pithos/resources/myshared22.png")
120         ImageResource myShared();
121
122         @Source("gr/grnet/pithos/resources/folder_user.png")
123         ImageResource sharedFolder();
124
125         @Source("gr/grnet/pithos/resources/edit_user.png")
126         ImageResource user();
127     }
128
129     static Images images = GWT.create(Images.class);
130
131     static interface Templates extends SafeHtmlTemplates {
132         public Templates INSTANCE = GWT.create(Templates.class);
133
134         @Template("<span>{0}</span>")
135         public SafeHtml nameSpan(String name);
136       }
137
138     interface Style extends gr.grnet.pithos.web.client.PithosDisclosurePanel.Style {
139         @Override
140                 String disclosurePanel();
141     }
142
143     interface Resources extends gr.grnet.pithos.web.client.PithosDisclosurePanel.Resources {
144                 @Override
145                 @Source("PithosOtherSharedDisclosurePanel.css")
146                 Style pithosDisclosurePanelCss();
147
148                 @Override
149                 @Source("gr/grnet/pithos/resources/sharedtome22.png")
150         ImageResource icon();
151     }
152
153     private OtherSharedTreeViewModel model;
154
155     private CellTree tree;
156     
157     public OtherSharedTreeView(OtherSharedTreeViewModel viewModel, boolean ajaxLoader) {
158         this.model = viewModel;
159         
160         PithosDisclosurePanel panel = new PithosDisclosurePanel((Resources) GWT.create(Resources.class), Const.TXT_SHARED_WITH_ME, false, ajaxLoader);
161         /*
162          * Create the tree using the model. We use <code>null</code> as the default
163          * value of the root node. The default value will be passed to
164          * CustomTreeModel#getNodeInfo();
165          */
166         CellTree.Resources res = GWT.create(BasicResources.class);
167         tree = new CellTree(model, null, res);
168         tree.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
169
170         panel.setContent(tree);
171         initWidget(panel);
172     }
173
174
175     @Override
176         public Folder getSelection() {
177        return model.getSelection();
178     }
179
180     public void updateFolder(Folder folder, boolean showfiles, Command callback) {
181         model.updateFolder(folder, showfiles, callback);
182     }
183 }