Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / othersharedtree / OtherSharedTreeView.java @ 3646552f

History | View | Annotate | Download (6.5 kB)

1
/*
2
 * Copyright 2011-2012 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.FolderContextMenu;
39
import gr.grnet.pithos.web.client.PithosDisclosurePanel;
40
import gr.grnet.pithos.web.client.TreeView;
41
import gr.grnet.pithos.web.client.foldertree.Folder;
42

    
43
import com.google.gwt.core.client.GWT;
44
import com.google.gwt.resources.client.ImageResource;
45
import com.google.gwt.resources.client.ImageResource.ImageOptions;
46
import com.google.gwt.resources.client.ImageResource.RepeatStyle;
47
import com.google.gwt.safehtml.client.SafeHtmlTemplates;
48
import com.google.gwt.safehtml.shared.SafeHtml;
49
import com.google.gwt.user.cellview.client.CellTree;
50
import com.google.gwt.user.cellview.client.HasKeyboardSelectionPolicy.KeyboardSelectionPolicy;
51
import com.google.gwt.user.cellview.client.TreeNode;
52
import com.google.gwt.user.client.Command;
53
import com.google.gwt.user.client.ui.Composite;
54
import com.google.gwt.user.client.ui.Tree;
55

    
56
public class OtherSharedTreeView extends Composite implements TreeView {
57

    
58
    public void updateChildren(Folder folder) {
59
        TreeNode root = tree.getRootTreeNode();
60
        updateChildren(root, folder);
61
    }
62

    
63
    private void updateChildren(TreeNode node, Folder folder) {
64
        for (int i=0; i<node.getChildCount(); i++) {
65
            if (node.isChildOpen(i)) {
66
                if (folder.equals(node.getChildValue(i))) {
67
                    node.setChildOpen(i, false, true);
68
                    node.setChildOpen(i, true, true);
69
                }
70
                else {
71
                    TreeNode n = node.setChildOpen(i, true);
72
                    updateChildren(n, folder);
73
                }
74
            }
75
        }
76
    }
77

    
78
    static interface BasicResources extends CellTree.Resources {
79

    
80
        @Override
81
                @ImageOptions(flipRtl = true)
82
        @Source("gr/grnet/pithos/web/client/cellTreeClosedItem.png")
83
        ImageResource cellTreeClosedItem();
84

    
85
        @Override
86
                @ImageOptions(flipRtl = true)
87
        @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
88
        ImageResource cellTreeLoading();
89

    
90
        @Override
91
                @ImageOptions(flipRtl = true)
92
        @Source("gr/grnet/pithos/web/client/cellTreeOpenItem.png")
93
        ImageResource cellTreeOpenItem();
94

    
95
        @Override
96
                @Source({"gr/grnet/pithos/web/client/PithosCellTreeBasic.css"})
97
        CellTree.Style cellTreeStyle();
98
        
99
        @Source("gr/grnet/pithos/web/client/cellTreeLoadingBasic.gif")
100
        @ImageOptions(repeatStyle=RepeatStyle.None)
101
        ImageResource cellTreeLoadingBasic();
102
    }
103

    
104
    public static interface Images extends Tree.Resources, FolderContextMenu.Images {
105

    
106
        @Source("gr/grnet/pithos/resources/home22.png")
107
        ImageResource home();
108

    
109
        @Source("gr/grnet/pithos/resources/2folder22.png")
110
        public ImageResource folderYellow();
111

    
112
        @Source("gr/grnet/pithos/resources/mimetypes/document.png")
113
        ImageResource document();
114

    
115
        @Source("gr/grnet/pithos/resources/sharedtome22.png")
116
        ImageResource othersShared();
117

    
118
        @Source("gr/grnet/pithos/resources/myshared22.png")
119
        ImageResource myShared();
120

    
121
        @Source("gr/grnet/pithos/resources/folder_user.png")
122
        ImageResource sharedFolder();
123

    
124
        @Source("gr/grnet/pithos/resources/edit_user.png")
125
        ImageResource user();
126
    }
127

    
128
    static Images images = GWT.create(Images.class);
129

    
130
    static interface Templates extends SafeHtmlTemplates {
131
        public Templates INSTANCE = GWT.create(Templates.class);
132

    
133
        @Template("<span>{0}</span>")
134
        public SafeHtml nameSpan(String name);
135
      }
136

    
137
    interface Style extends gr.grnet.pithos.web.client.PithosDisclosurePanel.Style {
138
            @Override
139
                String disclosurePanel();
140
    }
141

    
142
    interface Resources extends gr.grnet.pithos.web.client.PithosDisclosurePanel.Resources {
143
                @Override
144
                @Source("PithosOtherSharedDisclosurePanel.css")
145
                Style pithosDisclosurePanelCss();
146

    
147
                @Override
148
                @Source("gr/grnet/pithos/resources/sharedtome22.png")
149
            ImageResource icon();
150
    }
151

    
152
    private OtherSharedTreeViewModel model;
153

    
154
    private CellTree tree;
155
    
156
    public OtherSharedTreeView(OtherSharedTreeViewModel viewModel) {
157
        this.model = viewModel;
158
        
159
        PithosDisclosurePanel panel = new PithosDisclosurePanel((Resources) GWT.create(Resources.class), "Shared with me", false); 
160
        /*
161
         * Create the tree using the model. We use <code>null</code> as the default
162
         * value of the root node. The default value will be passed to
163
         * CustomTreeModel#getNodeInfo();
164
         */
165
        CellTree.Resources res = GWT.create(BasicResources.class);
166
        tree = new CellTree(model, null, res);
167
        tree.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
168

    
169
        panel.setContent(tree);
170
        initWidget(panel);
171
    }
172

    
173

    
174
    @Override
175
        public Folder getSelection() {
176
       return model.getSelection();
177
    }
178

    
179
    public void updateFolder(Folder folder, boolean showfiles, Command callback) {
180
        model.updateFolder(folder, showfiles, callback);
181
    }
182
}