File: tree.js

package info (click to toggle)
wims 2%3A4.30%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 185,332 kB
  • sloc: xml: 366,687; javascript: 120,570; java: 62,170; ansic: 61,221; sh: 7,747; perl: 3,939; yacc: 3,217; cpp: 1,915; lex: 1,805; makefile: 1,084; lisp: 914; pascal: 601; python: 520; php: 318; asm: 7
file content (267 lines) | stat: -rw-r--r-- 6,687 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
 * Content-seperated javascript tree widget
 * Copyright (C) 2005 SilverStripe Limited
 * Feel free to use this on your websites, but please leave this message in the fies
 * http://www.silverstripe.com/blog
*/

/*
 * Initialise all trees identified by <ul class="tree">
 */

/**
 * Usefull function for popup window displaying
 * @param {*} mylink
 * @param {*} windowname
 * @returns
 */
function popup(mylink, windowname){
  if (! window.focus)return true;
  var href;
  if (typeof(mylink) == 'string')
    href=mylink;
  else
    href=mylink.href;
  window.open(href, windowname, 'width=800,height=500,scrollbars=yes');
  return false;
}

/**
 * autoInit_trees
 */
function autoInit_trees() {
  //console.log("autoInit_trees");
  var candidates = document.getElementsByTagName('ul');
  for(var i=0;i<candidates.length;i++) {
    if(candidates[i].className && candidates[i].className.indexOf('tree') != -1) {
      initTree(candidates[i]);
      candidates[i].className = candidates[i].className.replace(/ ?unformatted ?/, ' ');
    }
  }
}

/**
 * Initialise a tree node, converting all its LIs appropriately
 * @param {*} el
 * @returns
 */
function initTree(el) {
  //console.log("initTree");
  var i,j;
  var spanA, spanB, spanC;
  var startingPoint, stoppingPoint, childUL;

  // Find all LIs to process
  for(i=0;i<el.childNodes.length;i++) {
    if(el.childNodes[i].tagName && el.childNodes[i].tagName.toLowerCase() == 'li') {
      var li = el.childNodes[i];

      // Create our extra spans
      spanA = document.createElement('span');
      spanB = document.createElement('span');
      spanC = document.createElement('span');
      spanA.appendChild(spanB);
      spanB.appendChild(spanC);
      spanA.className = 'a ' + li.className.replace('closed','spanClosed');
      spanA.onMouseOver = function() {}
      spanB.className = 'b';
      spanB.onclick = treeToggle;
      spanC.className = 'c';

      // Find the UL within the LI, if it exists
      stoppingPoint = li.childNodes.length;
      startingPoint = 0;
      childUL = null;
      for(j=0;j<li.childNodes.length;j++) {
        if(li.childNodes[j].tagName && li.childNodes[j].tagName.toLowerCase() == 'div') {
          startingPoint = j + 1;
          continue;
        }

        if(li.childNodes[j].tagName && li.childNodes[j].tagName.toLowerCase() == 'ul') {
          childUL = li.childNodes[j];
          stoppingPoint = j;
          break;
        }
      }

      // Move all the nodes up until that point into spanC
      for(j=startingPoint;j<stoppingPoint;j++) {
        spanC.appendChild(li.childNodes[startingPoint]);
      }

      // Insert the outermost extra span into the tree
      if(li.childNodes.length > startingPoint) {
        li.insertBefore(spanA, li.childNodes[startingPoint]);
      } else {
        li.appendChild(spanA);
      }

      // Process the children
      if(childUL != null) {
        if(initTree(childUL)) {
          li.classList.add('children');
          spanA.classList.add('children');
        }
      }
    }
  }

  if(li) {
    // li and spanA will still be set to the last item
    li.classList.add('last');
    spanA.classList.add('last');
    return true;
  } else {
    return false;
  }
}

/**
 * +/- toggle the tree
 *
 * @param {*} el the <span class="b"> node
 * @param {*} force will force it to "open" or "close"
 */
function treeToggle(el, force) {
  //console.log("treeToggle");
  el = this;
  while(el != null && (!el.tagName || el.tagName.toLowerCase() != "li")) el = el.parentNode;

  // Get UL within the LI
  var childSet = findChildWithTag(el, 'ul');
  var topSpan = findChildWithTag(el, 'span');

  if( force != null ){
    if( force == "open"){
      treeOpen( topSpan, el )
    } else if( force == "close" ){
      treeClose( topSpan, el )
    }
  } else if( childSet != null) {
    // Is open, close it
    if(!el.className.match(/(^| )closed($| )/)) {
      treeClose( topSpan, el )
    // Is closed, open it
    } else {
      treeOpen( topSpan, el )
    }
  }
}

/**
 * treeOpen
 * @param {*} a
 * @param {*} b
 */
function treeOpen(a, b ){
  //console.log("treeOpen");
  a.classList.remove('spanClosed');
  b.classList.remove('closed');
}

/**
 *  * [Jquery] treeToggleAll : Open/close all tree inside "elem"
 * elem can be a css id (#ident) or a css class (.classname)
 * added by obado
 * @param {*} elem
 */
function treeToggleAll( elem ){
  //console.log("treeToggleAll");
  //$(elem+" .children").toggleClass("closed");
  if ($(elem).hasClass("all_open")){
    $(elem+" .children").addClass("closed");
    $(elem).removeClass("all_open");
  }
  else{
    $(elem+" .children").removeClass("closed");
    $(elem).addClass("all_open");
  }
}

/**
 * treeClose
 * @param {*} a
 * @param {*} b
 */
function treeClose(a, b ){
  //console.log("treeClose");
  a.classList.add('spanClosed');
  b.classList.add('closed');
}

/**
 * Find the a child of el of type tag
 * @param {*} el
 * @param {*} tag
 * @returns
 */
function findChildWithTag(el, tag) {
  //console.log("findChildWithTag");
  for(var i=0;i<el.childNodes.length;i++) {
    if(el.childNodes[i].tagName != null && el.childNodes[i].tagName.toLowerCase() == tag) return el.childNodes[i];
  }
  return null;
}

/**
 * Functions to add and remove class names
 * Mac IE hates unnecessary spaces
 * @param {*} el
 * @param {*} cls
 * @param {*} forceBefore
 */
function addClass(el, cls, forceBefore) {
  //console.log(`addClass ${cls}`);
  if(forceBefore != null && el.className.match(new RegExp('(^| )' + forceBefore))) {
    el.className = el.className.replace(new RegExp("( |^)" + forceBefore), '$1' + cls + ' ' + forceBefore);

  } else if(!el.className.match(new RegExp('(^| )' + cls + '($| )'))) {
    el.className += ' ' + cls;
    el.className = el.className.replace(/(^ +)|( +$)/g, '');
  }
}

/**
 * removeClass
 * @param {*} el
 * @param {*} cls
 */
function removeClass(el, cls) {
  //console.log("removeClass");
  var old = el.className;
  var newCls = ' ' + el.className + ' ';
  newCls = newCls.replace(new RegExp(' (' + cls + ' +)+','g'), ' ');
  el.className = newCls.replace(/(^ +)|( +$)/g, '');
}

/*
 * Handlers for automated loading
 */
_LOADERS = Array();

/**
 * callAllLoaders
 */
function callAllLoaders() {
  var i, loaderFunc;
  for(i=0;i<_LOADERS.length;i++) {
    loaderFunc = _LOADERS[i];
    if(loaderFunc != callAllLoaders) loaderFunc();
  }
}

/**
 * appendLoader
 * @param {*} loaderFunc
 */
function appendLoader(loaderFunc) {
  if(window.onload && window.onload != callAllLoaders)
    _LOADERS[_LOADERS.length] = window.onload;

  window.onload = callAllLoaders;

  _LOADERS[_LOADERS.length] = loaderFunc;
}

appendLoader(autoInit_trees);