-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathTreemap.js
439 lines (390 loc) · 13.8 KB
/
Treemap.js
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
'use strict';
/**
* Creates a new empty Treemap with position (x, y), width and height.
* To specify drawing a bit more, you can give drawing options. 'sort' is true or false. If false, the elements will be shuffeled.
* 'direction' is either "horizontal", "vertical" or "both". With 'ignore', you can easily switch on and off branches of the Treemap.
* Content may be added using addData() or addTreemap().
*
* @class Treemap
* @constructor
* @param {Number} x x position
* @param {Number} y y position
* @param {Number} w width
* @param {Number} h height
* @param {Object} [options] drawing and sorting options {sort:true or false, direction:"horizontal", "vertical" or "both", ignore:["abc", "xyz"]}
* @return {Treemap} the new empty Treemap
*/
/**
* @class Treemap
* @ignore
* @constructor (mainly for internal use)
* @param {Treemap} parent the parent Treemap
* @param {String|Number|Object|Array} data one data element to store. could be anything.
* @param {Number} count initial count
* @return {Treemap} the new Treemap that represents one item
*/
/**
* @class Treemap
* @ignore
* @constructor (mainly for internal use)
* @param {Treemap} parent the parent Treemap
* @return {Treemap} the new empty Treemap
*/
function Treemap() {
this.parent;
this.data;
this.count = 0;
this.items = [];
/**
* x position of the rectangle.
* @property x
* @type {Number}
*/
this.x = 0;
/**
* y position of the rectangle.
* @property y
* @type {Number}
*/
this.y = 0;
/**
* width of the rectangle.
* @property w
* @type {Number}
*/
this.w = 0;
/**
* height of the rectangle.
* @property h
* @type {Number}
*/
this.h = 0;
this.options;
if (arguments.length >= 4) {
this.x = arguments[0];
this.y = arguments[1];
this.w = arguments[2];
this.h = arguments[3];
this.options = arguments[4];
} else {
this.parent = arguments[0];
this.data = arguments[1];
this.count = arguments[2] || 0;
}
this.x = this.x || 0;
this.y = this.y || 0;
this.w = this.w || 0;
this.h = this.h || 0;
/**
* the minimum count value of the items in the items array
* @property minCount
* @type {Number}
*/
this.minCount = 0;
/**
* the maximum count value of the items in the items array
* @property maxCount
* @type {Number}
*/
this.maxCount = 0;
/**
* level of the item; the root node has level 0
* @property level
* @type {Number}
*/
this.level = 0;
if (this.parent) this.level = this.parent.level + 1;
/**
* the depth of the branch; end nodes have depth 0
* @property depth
* @type {Number}
*/
this.depth = 0;
/**
* the number of items in the complete branch
* @property itemCount
* @type {Number}
*/
this.itemCount = 1;
/**
* index of the item in the sorted items array.
* @property index
* @type {Number}
*/
this.index = 0;
this.root = this;
this.isRoot = true;
if (this.parent) {
this.root = this.parent.root;
this.isRoot = false;
};
this.options = this.options || this.root.options;
this.ignored = false;
/**
* Adds data to the Treemap. If you give just one parameter, this value will be added to the items array.
* If there is already an item which has this value as data, just increase the counter of that item.
* If not, create a new Treemap with that data and init the counter with 1.
* If you have a complex object or array of nested subitems, you can give a second parameter,
* which defines what keys should be used to build the Treemap. This second parameter is in the form
* {children:"items", count:"size", data:"name"}.
* The key 'children' defines, where to find the nested arrays. If you have a plain nested array, just leave this out.
* The key 'count' defines, which value to map to the size of the rectangles of the Treemap.
* The key 'data' defines, which data to store. If omitted, the complete object or array branch is stored.
* This might be the way to choose in most cases. That way you keep all the information accessible when drawing the treemap.
*
* @method addData
* @param {String|Number|Object|Array} data the data element (e.g. a String)
* @param {Object} [keys] which keys should be used to build the Treemap: e.g. {children:"items", count:"size", data:"name"}. See the example for different ways how to use that.
* @return {Boolean} returns true, if a new treemap was created
*/
Treemap.prototype.addData = function(data, keys) {
if (keys) {
// store data. If a key is given, just store that part of the object, otherwise the whole branch.
if (keys.data) this.data = data[keys.data];
else this.data = data;
// store counter. if data is a number, just use that as a counter. if data is an object, store what's given at the key 'count'.
if (typeof data === "number") this.count = data;
else this.count = data[keys.count] || 0;
// get children. if the key 'children' is defined use that. otherwise data might be just an array, so use it directly.
var children = data;
if (keys.children) children = data[keys.children];
if (children instanceof Array) {
children.forEach(function(child) {
var t = new Treemap(this);
this.items.push(t);
t.addData(child, keys);
}.bind(this));
return true;
}
return false;
} else {
// data is a "simple" value (String, Number, small Object or Array) which should be counted.
var i = this.items.findIndex(function(el) { return el.data == data; });
if (i >= 0) {
// the element is already in this Treemap, so just increase counter
this.items[i].count++;
return false;
} else {
// the element is not found, so create a new Treemap for it
this.items.push(new Treemap(this, data, 1));
}
return true;
}
// There should have been reached one of the other returns. If not:
return false;
}
/**
* Adds an empty treemap to this treemap. If data is given, this could be used
* to show and hide a complete sub-treemap from the diagram. There is no check,
* if there is already another treemap with that data.
*
* @method addTreemap
* @param {String|Number|Object|Array} data the data element (e.g. a String)
* @param {Number} [count] the initial counter
* @return {Treemap} returns the new Treemap
*/
Treemap.prototype.addTreemap = function(data, count) {
var t = new Treemap(this, data, count);
this.items.push(t);
return t;
}
// The size of a rectangle depends on the counter. So it's important to sum
// up all the counters recursively. Only called internally.
Treemap.prototype.sumUpCounters = function() {
// Adjust parameter this.ignore: if ignore option is defined and this.data is listed in that ignored=true
if (this.options.ignore instanceof Array) {
if (this.options.ignore.indexOf(this.data) >= 0) {
this.ignored = true;
} else {
this.ignored = false;
}
}
// return count or 0 depending on this.ignored
if (this.items.length == 0) {
if (this.ignored) return 0;
} else {
this.minCount = Number.MAX_VALUE;
this.maxCount = 0;
this.depth = 0;
this.itemCount = 1;
this.count = 0;
if (this.ignored) return 0;
for (var i = 0; i < this.items.length; i++) {
var sum = this.items[i].sumUpCounters();
this.count += sum;
this.minCount = min(this.minCount, sum);
this.maxCount = max(this.maxCount, sum);
this.depth = max(this.depth, this.items[i].depth + 1);
this.itemCount += this.items[i].itemCount;
}
}
return this.count;
}
/**
* Calculates the rectangles of each item. While doing this, all counters
* and ignore flags are updated.
*
* @method calculate
*/
Treemap.prototype.calculate = function() {
// Stop immediately, if it's an empty array
if (this.items.length == 0) return;
// if it's the root node, sum up all counters recursively
if (this == this.root) this.sumUpCounters();
// If to ignore this element, adjust parameters and stop
if (this.ignored) {
this.x = -100000; // just a value far outside the screen, so it won't show up if it's drawn accidentally
this.y = 0;
this.w = 0;
this.h = 0;
return;
}
// sort or shuffle according to the given option
if (this.options.sort == true || this.options.sort == undefined) {
// sort items
this.items.sort(function(a, b) {
if (a.count < b.count) return 1;
if (a.count > b.count) return -1;
else return 0;
});
} else {
// shuffle explicitly
shuffleArray(this.items);
}
// give every child an index. could be handy for drawing
for (var i = 0; i < this.items.length; i++) {
this.items[i].index = i;
}
// Starting point is a rectangle and a number of counters to fit in.
// So, as nothing has fit in the rect, restSum, restW, ... are the starting rect and the sum of all counters
var restSum = this.count;
var pad = this.options.padding || 0;
var restX = this.x + pad;
var restY = this.y + pad;
var restW = this.w - pad * 2;
var restH = this.h - pad * 2;
// Fit in rows. One row consits of one or more rects that should be as square as possible in average.
// actIndex always points on the first counter, that has not fitted in.
var actIndex = 0;
while (actIndex < this.items.length) {
// A row is always along the shorter edge (a).
var isHorizontal = true; // horizontal row
var a = restW;
var b = restH;
if (this.options.direction != 'horizontal') {
if (restW > restH || this.options.direction == 'vertical') {
isHorizontal = false; // vertical row
a = restH;
b = restW;
}
}
// How many items to fit into the row?
var rowSum = 0;
var rowCount = 0;
var avRelPrev = Number.MAX_VALUE;
for (var i = actIndex; i < this.items.length; i++) {
rowSum += this.items[i].count;
rowCount++;
// a * bLen is the rect of the row
var percentage = rowSum / restSum;
var bLen = b * percentage;
var avRel = (a / rowCount) / bLen;
// Let's assume it's a horizontal row. The rects are as square as possible,
// as soon as the average width (a / rowCount) gets smaller than the row height (bLen).
if (avRel < 1 || i == this.items.length - 1) {
// Which is better, the actual or the previous fitting?
if (avRelPrev < 1 / avRel) {
// previous fitting is better, so revert to that
rowSum -= this.items[i].count;
rowCount--;
bLen = b * rowSum / restSum;
i--;
}
// get the position and length of the row according to isHorizontal (horizontal or not).
var aPos = restX;
var bPos = restY;
var aLen = restW;
if (!isHorizontal) {
aPos = restY;
bPos = restX;
aLen = restH;
}
// now we can transform the counters between index actIndex and i to rects (in fact to treemaps)
for (var j = actIndex; j <= i; j++) {
// map aLen according to the value of the counter
var aPart = aLen * this.items[j].count / rowSum;
if (isHorizontal) {
this.items[j].x = aPos;
this.items[j].y = bPos;
this.items[j].w = aPart;
this.items[j].h = bLen;
} else {
this.items[j].x = bPos;
this.items[j].y = aPos;
this.items[j].w = bLen;
this.items[j].h = aPart;
}
// negative width or height not allowed
this.items[j].w = max(this.items[j].w, 0);
this.items[j].h = max(this.items[j].h, 0);
// now that the position, width and height is set, it's possible to calculate the nested treemap.
this.items[j].calculate();
aPos += aPart;
}
// adjust dimensions for the next row
if (isHorizontal) {
restY += bLen;
restH -= bLen;
} else {
restX += bLen;
restW -= bLen;
}
restSum -= rowSum;
break;
}
avRelPrev = avRel;
}
actIndex = i + 1;
}
};
/**
* A simple recursive drawing routine. Draws only the rectangles. If you want to draw more of the
* content you can supply a function for drawing one item. This function gets the actual item
* as a parameter and has access to all the fields of that item, most important x, y, w, and h.
* Example:
* ```
* myTreemap.draw(function(item) {
* var r = min(item.w/4, item.h/4, 5);
* rect(item.x, item.y, item.w, item.h, r);
* });
* ```
*
* @method draw
* @param {Function} [drawItemFunction] a function that draws one item
*/
Treemap.prototype.draw = function(drawItemFunction) {
if (!this.ignored) {
// use the drawing function if given, otherwise draw a simple rect.
if (drawItemFunction) drawItemFunction(this);
else rect(this.x, this.y, this.w, this.h);
for (var i = 0; i < this.items.length; i++) {
this.items[i].draw(drawItemFunction);
}
}
};
}
/**
* Randomize array element order in-place.
* Using Durstenfeld shuffle algorithm.
*
* @ignore
*/
function shuffleArray(array) {
for (var i = array.length - 1; i > 0; i--) {
var j = floor(random() * (i + 1));
var temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}
module.exports = Treemap;