www/admin/extensions/tree.js

Code
Comments
Other
Rev Date Author Line
7604 25 Feb 19 nicklas 1 /* $Id $
7604 25 Feb 19 nicklas 2   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 3   Copyright (C) 2013 Nicklas Nordborg
7604 25 Feb 19 nicklas 4
7604 25 Feb 19 nicklas 5   This file is part of BASE - BioArray Software Environment.
7604 25 Feb 19 nicklas 6   Available at http://base.thep.lu.se/
7604 25 Feb 19 nicklas 7
7604 25 Feb 19 nicklas 8   BASE is free software; you can redistribute it and/or
7604 25 Feb 19 nicklas 9   modify it under the terms of the GNU General Public License
7604 25 Feb 19 nicklas 10   as published by the Free Software Foundation; either version 3
7604 25 Feb 19 nicklas 11   of the License, or (at your option) any later version.
7604 25 Feb 19 nicklas 12
7604 25 Feb 19 nicklas 13   BASE is distributed in the hope that it will be useful,
7604 25 Feb 19 nicklas 14   but WITHOUT ANY WARRANTY; without even the implied warranty of
7604 25 Feb 19 nicklas 15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7604 25 Feb 19 nicklas 16   GNU General Public License for more details.
7604 25 Feb 19 nicklas 17
7604 25 Feb 19 nicklas 18   You should have received a copy of the GNU General Public License
7604 25 Feb 19 nicklas 19   along with BASE. If not, see <http://www.gnu.org/licenses/>.
7604 25 Feb 19 nicklas 20   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 21
7604 25 Feb 19 nicklas 22   @author Nicklas
7604 25 Feb 19 nicklas 23 */
7604 25 Feb 19 nicklas 24 'use strict';
7604 25 Feb 19 nicklas 25
7604 25 Feb 19 nicklas 26 var Tree = function()
7604 25 Feb 19 nicklas 27 {
7604 25 Feb 19 nicklas 28   var tree = {};
7604 25 Feb 19 nicklas 29   
7604 25 Feb 19 nicklas 30   tree.initPage = function()
7604 25 Feb 19 nicklas 31   {
7604 25 Feb 19 nicklas 32     IconStore.addDefaultIcons();
7604 25 Feb 19 nicklas 33     
7604 25 Feb 19 nicklas 34     IconStore.addIconSet('ExtensionPoint', 'extensionpoint.png', 'extensionpoint-selected.png');
7604 25 Feb 19 nicklas 35     IconStore.addIconSet('ExtensionPointDisabled', 'extensionpoint-disabled.png', 'extensionpoint-disabled-selected.png');
7604 25 Feb 19 nicklas 36     IconStore.addIconSet('ExtensionPointError', 'extensionpoint-error.png', 'extensionpoint-error-selected.png');
7604 25 Feb 19 nicklas 37     
7604 25 Feb 19 nicklas 38     IconStore.addIconSet('Extension', 'extension.png', 'extension-selected.png');
7604 25 Feb 19 nicklas 39     IconStore.addIconSet('ExtensionDisabled', 'extension-disabled.png', 'extension-disabled-selected.png');
7604 25 Feb 19 nicklas 40     IconStore.addIconSet('ExtensionError', 'extension-error.png', 'extension-error-selected.png');
7604 25 Feb 19 nicklas 41     IconStore.addIconSet('ExtensionWarning', 'extension-warning.png', 'extension-warning-selected.png');
7604 25 Feb 19 nicklas 42
7604 25 Feb 19 nicklas 43     IconStore.addIconSet('Plugin', 'plugin.png', 'plugin-selected.png');
7604 25 Feb 19 nicklas 44     IconStore.addIconSet('PluginDisabled', 'plugin-disabled.png', 'plugin-disabled-selected.png');
7604 25 Feb 19 nicklas 45     IconStore.addIconSet('PluginError', 'plugin-error.png', 'plugin-error-selected.png');
7604 25 Feb 19 nicklas 46
7604 25 Feb 19 nicklas 47     IconStore.addIconSet('JarFile', 'jarfile.png', 'jarfile-selected.png');
7604 25 Feb 19 nicklas 48     IconStore.addIconSet('JarFileError', 'jarfile-error.png', 'jarfile-error-selected.png');
7604 25 Feb 19 nicklas 49     IconStore.addIconSet('JarFileWarning', 'jarfile-warning.png', 'jarfile-warning-selected.png');
7604 25 Feb 19 nicklas 50     IconStore.addIconSet('JarFileModified', 'jarfile-modified.png', 'jarfile-modified-selected.png');
7604 25 Feb 19 nicklas 51     IconStore.addIconSet('JarFileModifiedError', 'jarfile-modified-error.png', 'jarfile-modified-error-selected.png');
7604 25 Feb 19 nicklas 52     IconStore.addIconSet('JarFileModifiedWarning', 'jarfile-modified-warning.png', 'jarfile-modified-warning-selected.png');
7604 25 Feb 19 nicklas 53
7604 25 Feb 19 nicklas 54     IconStore.addIconSet('XmlFile', 'item.png', 'item-selected.png');
7604 25 Feb 19 nicklas 55     IconStore.addIconSet('XmlFileError', 'item-error.png', 'item-error-selected.png');
7604 25 Feb 19 nicklas 56     IconStore.addIconSet('XmlFileWarning', 'item-warning.png', 'item-warning-selected.png');
7604 25 Feb 19 nicklas 57     IconStore.addIconSet('XmlFileModified', 'item-modified.png', 'item-modified-selected.png');
7604 25 Feb 19 nicklas 58     IconStore.addIconSet('XmlFileModifiedError', 'item-modified-error.png', 'item-modified-error-selected.png');
7604 25 Feb 19 nicklas 59     IconStore.addIconSet('XmlFileModifiedWarning', 'item-modified-warning.png', 'item-modified-warning-selected.png');
7604 25 Feb 19 nicklas 60
7604 25 Feb 19 nicklas 61     Events.addEventHandler('joust', 'joust-select', tree.onSelect);
7604 25 Feb 19 nicklas 62     
7604 25 Feb 19 nicklas 63     Joust2.draw('joust');
7604 25 Feb 19 nicklas 64   }
7604 25 Feb 19 nicklas 65
7604 25 Feb 19 nicklas 66   
7604 25 Feb 19 nicklas 67   tree.onSelect = function(event)
7604 25 Feb 19 nicklas 68   {
7604 25 Feb 19 nicklas 69     var menuItem = event.target.item;
7604 25 Feb 19 nicklas 70     
7604 25 Feb 19 nicklas 71     if (menuItem.type == 'extension-point')
7604 25 Feb 19 nicklas 72     {
7604 25 Feb 19 nicklas 73       tree.extensionPointOnClick(menuItem.externalId);
7604 25 Feb 19 nicklas 74     }
7604 25 Feb 19 nicklas 75     else if (menuItem.type == 'extension')
7604 25 Feb 19 nicklas 76     {
7604 25 Feb 19 nicklas 77       tree.extensionOnClick(menuItem.externalId);
7604 25 Feb 19 nicklas 78     }
7604 25 Feb 19 nicklas 79     else if (menuItem.type == 'file')
7604 25 Feb 19 nicklas 80     {
7604 25 Feb 19 nicklas 81       tree.fileOnClick(menuItem.fileUri);
7604 25 Feb 19 nicklas 82     }
7604 25 Feb 19 nicklas 83     else if (menuItem.type == 'plugin')
7604 25 Feb 19 nicklas 84     {
7604 25 Feb 19 nicklas 85       tree.pluginOnClick(menuItem.className);
7604 25 Feb 19 nicklas 86     }
7604 25 Feb 19 nicklas 87     else if (menuItem.externalId.indexOf('root.') == 0)
7604 25 Feb 19 nicklas 88     {
7604 25 Feb 19 nicklas 89       tree.rootOnClick();
7604 25 Feb 19 nicklas 90     }
7604 25 Feb 19 nicklas 91   }
7604 25 Feb 19 nicklas 92   
7604 25 Feb 19 nicklas 93   tree.extensionPointOnClick = function(extensionPointId)
7604 25 Feb 19 nicklas 94   {
7604 25 Feb 19 nicklas 95     var url = 'details.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 96     url += '&extensionPointId='+encodeURIComponent(extensionPointId);
7604 25 Feb 19 nicklas 97     parent.frames['details'].location.href = url;
7604 25 Feb 19 nicklas 98   }
7604 25 Feb 19 nicklas 99   
7604 25 Feb 19 nicklas 100   tree.extensionOnClick = function(extensionId)
7604 25 Feb 19 nicklas 101   {
7604 25 Feb 19 nicklas 102     var url = 'details.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 103     url += '&extensionId='+encodeURIComponent(extensionId);
7604 25 Feb 19 nicklas 104     parent.frames['details'].location.href = url;
7604 25 Feb 19 nicklas 105   }
7604 25 Feb 19 nicklas 106   
7604 25 Feb 19 nicklas 107   tree.fileOnClick = function(fileUri)
7604 25 Feb 19 nicklas 108   {
7604 25 Feb 19 nicklas 109     var url = 'details.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 110     url += '&fileuri='+encodeURIComponent(fileUri);
7604 25 Feb 19 nicklas 111     parent.frames['details'].location.href = url;
7604 25 Feb 19 nicklas 112   }
7604 25 Feb 19 nicklas 113   
7604 25 Feb 19 nicklas 114   tree.pluginOnClick = function(className)
7604 25 Feb 19 nicklas 115   {
7604 25 Feb 19 nicklas 116     var url = '../plugindefinitions/index.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 117     url += '&cmd=ViewItemByClass&iframe=1';
7604 25 Feb 19 nicklas 118     url += '&className='+encodeURIComponent(className);
7604 25 Feb 19 nicklas 119     parent.frames['details'].location.href = url;
7604 25 Feb 19 nicklas 120   }
7604 25 Feb 19 nicklas 121
7604 25 Feb 19 nicklas 122   tree.rootOnClick = function()
7604 25 Feb 19 nicklas 123   {
7604 25 Feb 19 nicklas 124     var url = 'details.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 125     parent.frames['details'].location.href = url;
7604 25 Feb 19 nicklas 126   }
7604 25 Feb 19 nicklas 127   
7604 25 Feb 19 nicklas 128   /**
7604 25 Feb 19 nicklas 129     Select the node representing the extension with
7604 25 Feb 19 nicklas 130     the given file name.
7604 25 Feb 19 nicklas 131   */
7604 25 Feb 19 nicklas 132   tree.selectFile = function(filename)
7604 25 Feb 19 nicklas 133   {
7604 25 Feb 19 nicklas 134     var menuElement = Doc.element(filename);
7604 25 Feb 19 nicklas 135     if (menuElement)
7604 25 Feb 19 nicklas 136     {
7604 25 Feb 19 nicklas 137       //Joust2.open(menuElement);
7604 25 Feb 19 nicklas 138       Joust2.select(menuElement);
7604 25 Feb 19 nicklas 139     }
7604 25 Feb 19 nicklas 140   }
7604 25 Feb 19 nicklas 141   
7604 25 Feb 19 nicklas 142   /**
7604 25 Feb 19 nicklas 143     Set the icon for all menu items with the given external id. 
7604 25 Feb 19 nicklas 144     NOTE! A single extension may appear in multiple places in the tree!
7604 25 Feb 19 nicklas 145    */
7604 25 Feb 19 nicklas 146   tree.setIcon = function(externalId, icon)
7604 25 Feb 19 nicklas 147   {
7604 25 Feb 19 nicklas 148     var icons = [];
7604 25 Feb 19 nicklas 149     icons[externalId] = icon;
7604 25 Feb 19 nicklas 150     tree.setIconsByExternalId(icons);
7604 25 Feb 19 nicklas 151   }
7604 25 Feb 19 nicklas 152
7604 25 Feb 19 nicklas 153   /**
7604 25 Feb 19 nicklas 154     Enabled/disable all child icons for the selected
7604 25 Feb 19 nicklas 155     menu item.
7604 25 Feb 19 nicklas 156   */
7604 25 Feb 19 nicklas 157   tree.setChildIcons = function(menuElement, enable)
7604 25 Feb 19 nicklas 158   {
7604 25 Feb 19 nicklas 159     var menuElement = Doc.element(menuElement);
7604 25 Feb 19 nicklas 160     if (!menuElement) return;
7604 25 Feb 19 nicklas 161     
7604 25 Feb 19 nicklas 162     var menuItem = menuElement.item;
7604 25 Feb 19 nicklas 163     if (!menuItem.children) return;
7604 25 Feb 19 nicklas 164     
7604 25 Feb 19 nicklas 165     var icons = [];
7604 25 Feb 19 nicklas 166     for (var childNo = 0; childNo < menuItem.children.length; childNo++)
7604 25 Feb 19 nicklas 167     {
7604 25 Feb 19 nicklas 168       var child = menuItem.children[childNo];
7604 25 Feb 19 nicklas 169       
7604 25 Feb 19 nicklas 170       if (child.type == 'group')
7604 25 Feb 19 nicklas 171       {
7604 25 Feb 19 nicklas 172         // Receusive call into grouped extensions
7604 25 Feb 19 nicklas 173         tree.setChildIcons(child.id, enable);
7604 25 Feb 19 nicklas 174       }
7604 25 Feb 19 nicklas 175       else
7604 25 Feb 19 nicklas 176       {
7604 25 Feb 19 nicklas 177         var iconName = child.icon;
7604 25 Feb 19 nicklas 178         if (iconName.indexOf('Error') == -1)
7604 25 Feb 19 nicklas 179         {
7604 25 Feb 19 nicklas 180           var isDisabled = iconName.indexOf('Disabled') > 0;
7604 25 Feb 19 nicklas 181           if (enable && isDisabled)
7604 25 Feb 19 nicklas 182           {
7604 25 Feb 19 nicklas 183             iconName = iconName.replace('Disabled', '');
7604 25 Feb 19 nicklas 184           }
7604 25 Feb 19 nicklas 185           else if (!enable && !isDisabled)
7604 25 Feb 19 nicklas 186           {
7604 25 Feb 19 nicklas 187             iconName += 'Disabled';
7604 25 Feb 19 nicklas 188           }
7604 25 Feb 19 nicklas 189           icons[child.externalId] = iconName;
7604 25 Feb 19 nicklas 190         }
7604 25 Feb 19 nicklas 191       }
7604 25 Feb 19 nicklas 192     }
7604 25 Feb 19 nicklas 193     tree.setIconsByExternalId(icons);
7604 25 Feb 19 nicklas 194   }
7604 25 Feb 19 nicklas 195
7604 25 Feb 19 nicklas 196   
7604 25 Feb 19 nicklas 197   /**
7604 25 Feb 19 nicklas 198     'icons' is an array with <key>=<externalId> and <value>=<new icon name>
7604 25 Feb 19 nicklas 199     Loop through all menu items and change the icon if the external id 
7604 25 Feb 19 nicklas 200     matches.
7604 25 Feb 19 nicklas 201   */
7604 25 Feb 19 nicklas 202   tree.setIconsByExternalId = function(icons)
7604 25 Feb 19 nicklas 203   {
7604 25 Feb 19 nicklas 204     var tree = Doc.element('joust');
7604 25 Feb 19 nicklas 205     
7604 25 Feb 19 nicklas 206     var menuElements = tree.getElementsByClassName('joustitem');
7604 25 Feb 19 nicklas 207     for (var menuNo = 0; menuNo < menuElements.length; menuNo++)
7604 25 Feb 19 nicklas 208     {
7604 25 Feb 19 nicklas 209       var menuElement = menuElements[menuNo];
7604 25 Feb 19 nicklas 210       var menuItem = menuElement.item;
7604 25 Feb 19 nicklas 211       
7604 25 Feb 19 nicklas 212       var iconName = icons[menuItem.externalId];
7604 25 Feb 19 nicklas 213       if (iconName)
7604 25 Feb 19 nicklas 214       {
7604 25 Feb 19 nicklas 215         menuItem.icon = iconName;
7604 25 Feb 19 nicklas 216         Joust2.updateIconsAndText(menuElement);
7604 25 Feb 19 nicklas 217       }
7604 25 Feb 19 nicklas 218     }
7604 25 Feb 19 nicklas 219   }
7604 25 Feb 19 nicklas 220
7604 25 Feb 19 nicklas 221   
7604 25 Feb 19 nicklas 222   return tree;
7604 25 Feb 19 nicklas 223 }();
7604 25 Feb 19 nicklas 224
7604 25 Feb 19 nicklas 225 Doc.onLoad(Tree.initPage);