summaryrefslogtreecommitdiff
path: root/js/tablecontrol.js
blob: f389c428c2be37b456a17cb808b0e38ed796504d (plain)
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
/** coding:utf-8 */

/** Some helper's functions
 * Public domain or unknown author(s)
 * TODO : move it to another file
 **/
function findPos(obj) {
	var curleft = curtop = 0;
	if (obj.offsetParent) {
		curleft = obj.offsetLeft
		curtop = obj.offsetTop
		while (obj = obj.offsetParent) {
			curleft += obj.offsetLeft
			curtop += obj.offsetTop
		}
	}
	return [curleft,curtop];
}

function getParent(element, parentTagName)
{
	if ( ! element )
		return null;
	else if ( element.nodeType == 1 && element.tagName.toLowerCase() == parentTagName.toLowerCase() )
		return element;
	else
		return getParent(element.parentNode, parentTagName);
}
function getNextSibling(elt)
{
	var sibling = elt.nextSibling;
	while (sibling != null) {
		if (sibling.nodeName == elt.nodeName) return sibling;
		sibling = sibling.nextSibling;
	}
	return null;
}
function getPreviousSibling(elt)
{
	var sibling = elt.previousSibling;
	while (sibling != null) {
		if (sibling.nodeName == elt.nodeName)
			return sibling;
		sibling = sibling.previousSibling;
	}
	return null;
}
function strRepeat(str, n) {
	var i, ret = '';
	for ( i = 0; i < n; i++ )
		ret += str;
	return ret;
}

/** @class TableControl
 * @author Rémi Lanvin
 */
var TableControl = {
	controlled_tables: [],
	active_rows: [],
	default_options: {
		tree:              false,    // way of sorting rows
		activeClassName:   'active',
		spreadActiveClass: true,     // spread the 'active' class to childrens ?
		controlBox:        null      // an id
	},
	
	/**
	 * Init the table 'table_id'
	 * @param table_id table id
	 * @param options  an 'options' object - optional
	 */
	create: function(table_id)
	{

		var table = $(table_id);
		if ( ! table || table.tagName != 'TABLE' )
			return;

		var options = Object.extend(this.default_options, arguments[1] || {});
		
		var tbody = table.getElementsByTagName('TBODY');
		var row = tbody[0].getElementsByTagName('TR');
	
		var i, j, input;
		for (i = 0; i < row.length; i++ ) {
			row[i].table_id = table_id;

			input = row[i].getElementsByTagName("INPUT");
			// initialize tree values
			if ( options.tree ) {
				row[i].tree_left = 0;
				row[i].tree_right = 0;

				for ( j = 0; j < input.length; j++ ) {
					if ( input[j].name.substring(0,3) == 'lft' )
						row[i].tree_left = input[j];
					else if ( input[j].name.substring(0,3) == 'rgt' )
						row[i].tree_right = input[j];
				}

				row[i].tree_diff = parseInt(row[i].tree_right.value,10) - parseInt(row[i].tree_left.value,10);

				span = row[i].getElementsByTagName("SPAN");
				for ( j = 0; j < span.length; j++ ) {
					if ( span[j].className == "depthmark" )
						row[i].tree_depthmark = span[j];
				}
			}
			// initialize classical position values
			else {
				for ( j = 0; j < input.length; j++ ) {
					if ( input[j].name.substring(0,13) == 'list_position' )
						row[i].list_position = input[j];
				}
			}
			Event.observe(row[i], 'click', function(e) { TableControl._onClick(e) }, false);
		}
		if ( options.controlBox ) {
			options.controlBoxElt = $(options.controlBox);
			// may not be a control box if there are no rows currently
			if (options.controlBoxElt)
			   options.controlBoxElt.style.left = parseInt(findPos(table)) + parseInt (table.scrollWidth - 30) + 'px';
		}

		
		if ( options.tree ) {
			this._buildTree(table);
			var form = getParent(table, "FORM");
			if ( form )
				Event.observe(form, 'submit', function(e) { TableControl._calculateValues(table.root_node) }, false);
		}
		
		this.controlled_tables[table_id] = options;
	},
	
	/**
	 * Move up the active row
	 */
	up: function(table_id)
	{
		var options;
		if ( ! ( options = this.controlled_tables[table_id] ) )
			return;

		var row = this.active_rows[table_id];
		if ( ! row )
			return;

		if ( options.tree ) {
			var previous_row = this._getPreviousTreeNode(row);
			// already on the top
			if ( ! previous_row ) return;

			var parent = row.parentNode;
			this._swapTreeNode(row, previous_row);
			this._moveSubTreeBefore(row, previous_row, parent);
		}
		else {
			var previous_row = getPreviousSibling(row);
			if ( ! previous_row )
				return;
			var parent = row.parentNode;
			parent.removeChild(row);
			parent.insertBefore(row, previous_row);

			var tmp = row.list_position.value;
			row.list_position.value = previous_row.list_position.value;
			previous_row.list_position.value = tmp;
		}
	},
	
	/**
	 * Move down the active row
	 */
	down: function(table_id)
	{
		var options;
		if ( ! ( options = this.controlled_tables[table_id]) )
			return;

		var row = this.active_rows[table_id];
		if ( ! row )
			return;

		if ( options.tree ) {
			var next_row = this._getNextTreeNode(row);
			// already on the bottom
			if ( ! next_row ) return;
			
			var next_next_row = this._getNextTreeNode(next_row);
			var parent = row.parentNode;
			
			this._swapTreeNode(row, next_row);
			
			if ( next_next_row )
				this._moveSubTreeBefore(row, next_next_row, parent);
			else {
				var last_child = ( next_row.childs.length > 0 ? next_row.childs[next_row.childs.length - 1] : next_row );
				var end_row = getNextSibling(last_child);
				this._moveSubTreeBefore(row, end_row, parent);
			}
		}
		else {
			var next_row = getNextSibling(row);
			if ( ! next_row )
				return;
			var parent = next_row.parentNode;
			parent.removeChild(next_row);
			parent.insertBefore(next_row, row);
			
			var tmp = row.list_position.value;
			row.list_position.value = next_row.list_position.value;
			next_row.list_position.value = tmp;
		}
	},
	
	/**
	 * Move deeper the active row
	 * Only works when the option 'tree' is true
	 */
	deeper: function(table_id)
	{
		var options;
		if ( ! ( options = this.controlled_tables[table_id] ) )
			return;
		if ( ! options.tree )
			return;

		var row = this.active_rows[table_id];
		if ( ! row )
			return;

		// check if futur parent is deeper enough
		var previous_row = getPreviousSibling(row);
		if ( ! previous_row || (this._getDepth(previous_row) < this._getDepth(row) ))
			return;

		previous_row = this._getPreviousTreeNode(row);
		this._removeTreeNode(row);
		this._addTreeNode(row, previous_row);

		this._forEachChilds(row, function(node) {
			var old_depth = TableControl._getDepth(node);
			var new_depth = old_depth + 1;
			var e = new RegExp('depth' + old_depth, "g");
			node.className = node.className.replace(e, 'depth' + new_depth);
			node.tree_depthmark.innerHTML = strRepeat('&rarr;', new_depth);
		});
	},

	/**
	 * Move shallower the active row
	 * Only works when the option 'tree' is true
	 */
	shallower: function (table_id)
	{
		var options;
		if ( ! ( options = this.controlled_tables[table_id] ) )
			return;
		if ( ! options.tree )
			return;

		var row = this.active_rows[table_id];
		if ( ! row )
			return;
		
		// check the depth
		if ( this._getDepth(row) <= 0 )
			return;

		var parent = row.parent;
		this._removeTreeNode(row);
		this._addTreeNode(row, parent.parent, parent);
		
		this._forEachChilds(row, function(node) {
			var old_depth = TableControl._getDepth(node);
			var new_depth = old_depth - 1;
			var e = new RegExp('depth' + old_depth, "g");
			node.className = node.className.replace(e, 'depth' + new_depth);
			node.tree_depthmark.innerHTML = strRepeat('&rarr;', new_depth);
		});
	},
	
	/** @internal stuff **/

	/** @private
	 * OnClick handler. Activate the selected row
	 */
	_onClick: function(e)
	{
		var row = Event.element(e);
		if ( row.tagName != 'TR' )
			row = getParent(row, 'TR');

		var active_row = this.active_rows[row.table_id];
		var options = this.controlled_tables[row.table_id];

		// desactivate previously active row
		if ( active_row ) {
			Element.removeClassName(active_row, options.activeClassName);
			if ( options.tree && options.spreadActiveClass ) {
				this._forEachChilds(active_row, function(e) {
					Element.removeClassName(e, options.activeClassName);
				});
			}
		}
		else if ( options.controlBoxElt ) {
			Element.addClassName(options.controlBoxElt, options.activeClassName);
		}
		// if clicking on the same row : no more active row
		if ( active_row && active_row == row ) {
			this.active_rows[row.table_id] = null;
			Element.removeClassName(options.controlBoxElt, options.activeClassName);
		}
		// else activate the new selected row
		else {
			Element.addClassName(row, options.activeClassName);
			if ( options.tree && options.spreadActiveClass ) {
				this._forEachChilds(row, function(e) {
					Element.addClassName(e, options.activeClassName);
				});
			}
			this.active_rows[row.table_id] = row;
		}
		return;
	},

	/** @private
	 * Convert a class name like "depthN" to "N"
	 */
	_getDepth: function(elt)
	{
		return ( elt ? parseInt(elt.className.substr(5),10) : -1 );
	},

	/** @private
	 * Return the previous node in the tree
	 */
	_getPreviousTreeNode: function(node)
	{
		if ( ! node || ! node.parent ) return null;
		var i = node.parent.childs.indexOf(node);
		return (i > 0 ? node.parent.childs[i-1] : null);
	},

	/** @private
	 * Return the next node in the tree
	 */
	_getNextTreeNode: function (node)
	{
		if ( ! node || ! node.parent ) return null;
		var i = node.parent.childs.indexOf(node);
		return (i < node.parent.childs.length - 1 ? node.parent.childs[i+1] : null);
	},

	/** @private
	 * Swap 'node1' and 'node2' in the tree
	 */
	_swapTreeNode: function(node1, node2)
	{
		if ( !node1 || !node2 || (node1.parent != node2.parent) )
			return false;

		var node1_pos = node1.parent.childs.indexOf(node1);
		var node2_pos = node1.parent.childs.indexOf(node2);
		node1.parent.childs[node1_pos] = node2;
		node1.parent.childs[node2_pos] = node1;
		return true;
	},

	/** @private
	 * Remove 'nove' from the tree
	 */
	_removeTreeNode: function(node)
	{
		if ( ! node || ! node.parent )
			return false;
		var i = node.parent.childs.indexOf(node);
		node.parent.childs.splice(i, 1);
		node.parent = null;
	},

	/** @private
	 * Add 'node' as child of 'parent'.
	 * If 'position' if given, 'node' is added before 'position'. Else it is
	 * added after the last child.
	 */
	_addTreeNode: function(node, parent, position)
	{
		if ( ! node || ! parent )
			return;
		node.parent = parent;
		if ( position ) {
			var i = parent.childs.indexOf(position) + 1;
			if ( i < parent.childs.length )
				parent.childs.splice(i, 0, node);
			else
				parent.childs.push(node);
		}
		else
			parent.childs.push(node);
	},

	/** @private
	 * Do f(node) for each node's childs (including itself).
	 */
	_forEachChilds: function(node, f)
	{
		f(node);
		var i;
		for (i = 0; i < node.childs.length; i++ )
			this._forEachChilds(node.childs[i], f);
	},
	/** @private
	 * Move the subtree starting from 'node' before 'position'
	 * @param parent the DOM parent
	 */
	_moveSubTreeBefore: function(node, position, parent)
	{
		this._forEachChilds(node, function(node) { 
			parent.removeChild(node);
			if ( position )
				parent.insertBefore(node, position);
			else
				parent.appendChild(node);
		});
	},
	/** @private
	 * Rebuild a tree from a non-recursive DOM structure
	 */
	_buildTree: function(table)
	{
		if ( ! table )
			return;

		table.root_node = {
			is_root_node: true,
			childs: new Array()
		};
		var tbody = table.getElementsByTagName("TBODY");
		var row = tbody[0].getElementsByTagName("TR");
		var i;
		for ( i = 0; i < row.length; i++ ) {
			if ( this._getDepth(row[i]) == 0 ) {
				table.root_node.childs.push(row[i])
				this._buildSubTree(row[i], table.root_node);
			}
		}
	},
	_buildSubTree: function(node, parent)
	{
		node.parent = parent;
		var node_depth = this._getDepth(node);
		var child_depth = node_depth + 1;
		var next_node = getNextSibling(node);
		var next_node_depth = -1;
		node.childs = new Array();
		while ( next_node && ( (next_node_depth = this._getDepth(next_node)) > node_depth ) ) {
			if ( next_node_depth == child_depth ) {
				node.childs.push(next_node);
				this._buildSubTree(next_node, node);
			}
			next_node = getNextSibling(next_node);
		}
	},
	/** @private
	 * Do a tree traversal algorithm and fill "lft" and "rgt" values
	 */
	_calculateValues: function(node, n)
	{
		if ( node.is_root_node ) {
			n = new Array();
			n.push(1);
		}
		else {
			node.tree_left.value = ++(n[0]);
		}
		var i;
		for ( i = 0; i < node.childs.length; i++ )
			this._calculateValues(node.childs[i], n);
		
		if ( ! node.is_root_node ) {
			node.tree_right.value = ++(n[0]);
		}
	}
}