A little polish
[p5sagit/Devel-Size.git] / static / public / tm.js
1 var labelType, useGradients, nativeTextSupport, animate;
2
3 (function() {
4   var ua = navigator.userAgent,
5       iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
6       typeOfCanvas = typeof HTMLCanvasElement,
7       nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
8       textSupport = nativeCanvasSupport 
9         && (typeof document.createElement('canvas').getContext('2d').fillText == 'function');
10   //I'm setting this based on the fact that ExCanvas provides text support for IE
11   //and that as of today iPhone/iPad current text support is lame
12   labelType = (!nativeCanvasSupport || (textSupport && !iStuff))? 'Native' : 'HTML';
13   nativeTextSupport = labelType == 'Native';
14   useGradients = nativeCanvasSupport;
15   animate = !(iStuff || !nativeCanvasSupport);
16 })();
17
18 var Log = {
19   elem: false,
20   write: function(text){
21     if (!this.elem) 
22       this.elem = document.getElementById('log');
23     this.elem.innerHTML = text;
24     this.elem.style.left = (500 - this.elem.offsetWidth / 2) + 'px';
25   }
26 };
27
28
29 function init(){
30   //init data
31   //end
32   //init TreeMap
33   var tm = new $jit.TM.Squarified({
34     //where to inject the visualization
35     injectInto: 'infovis',
36     //show only one tree level
37     levelsToShow: 1,
38     //parent box title heights
39     titleHeight: 11,
40     //enable animations
41     animate: animate,
42     //box offsets
43     offset: 1,
44     //use canvas text
45     Label: {
46       type: labelType,
47       size: 9,
48       family: 'Tahoma, Verdana, Arial'
49     },
50     //enable specific canvas styles
51     //when rendering nodes
52     Node: {
53       CanvasStyles: {
54         shadowBlur: 0,
55         shadowColor: '#000'
56       }
57     },
58     //Attach left and right click events
59     Events: {
60       enable: true,
61       onClick: function(node) {
62         if(node) tm.enter(node);
63       },
64       onRightClick: function() {
65         tm.out();
66       },
67       //change node styles and canvas styles
68       //when hovering a node
69       onMouseEnter: function(node, eventInfo) {
70         if(node) {
71           //add node selected styles and replot node
72           node.setCanvasStyle('shadowBlur', 7);
73           node.setData('color', '#888');
74           tm.fx.plotNode(node, tm.canvas);
75           tm.labels.plotLabel(tm.canvas, node);
76         }
77       },
78       onMouseLeave: function(node) {
79         if(node) {
80           node.removeData('color');
81           node.removeCanvasStyle('shadowBlur');
82           tm.plot();
83         }
84       }
85     },
86     //duration of the animations
87     duration: 500,
88     //Enable tips
89     Tips: {
90       enable: true,
91       type: 'Native',
92       //add positioning offsets
93       offsetX: 20,
94       offsetY: 20,
95       //implement the onShow method to
96       //add content to the tooltip when a node
97       //is hovered
98       onShow: function(tip, node, isLeaf, domElement) {
99         var html = "<div class=\"tip-title\">" + node.name 
100           + "</div><div class=\"tip-text\">";
101         var data = node.data;
102
103         html += sprintf("Size: %d (%d + %d)<br />", data.self_size+data.kids_size, data.self_size, data.kids_size);
104         if (data.child_count) {
105             html += sprintf("Children: %d of %d<br />", data.child_count, data.kids_node_count);
106         }
107         html += sprintf("Depth: %d<br />", data.depth);
108         html += sprintf("Parent: %d<br />", data.parent_id);
109         html += sprintf("Id: %s%s<br />", node.id, data._ids_merged ? data._ids_merged : "");
110         //html += JSON.stringify(data, undefined, 4);
111
112         tip.innerHTML =  html; 
113       }  
114     },
115     //Implement this method for retrieving a requested  
116     //subtree that has as root a node with id = nodeId,  
117     //and level as depth. This method could also make a server-side  
118     //call for the requested subtree. When completed, the onComplete   
119     //callback method should be called.  
120     request: function(nodeId, level, onComplete){  
121         if (true) {
122             jQuery.getJSON('jit_tree/'+nodeId+'/1', function(data) {
123                 console.log("Node "+nodeId);
124                 console.log(data);
125                 onComplete.onComplete(nodeId, data);  
126             });
127         }
128         else {
129             var tree = memnodes[0];
130             var subtree = $jit.json.getSubtree(tree, nodeId);  
131             $jit.json.prune(subtree, 2);  
132             onComplete.onComplete(nodeId, subtree);  
133         }
134     },
135     //Add the name of the node in the corresponding label
136     //This method is called once, on label creation and only for DOM labels.
137     onCreateLabel: function(domElement, node){
138         domElement.innerHTML = node.name;
139     }
140   });
141   
142 if(true) {
143     jQuery.getJSON('jit_tree/1/1', function(data) {
144         console.log(data);
145         tm.loadJSON(data);
146         tm.refresh();
147     });
148 }
149 else {
150   //var pjson = eval('(' + json + ')');  
151   var pjson = memnodes[0];
152   $jit.json.prune(pjson, 2);
153   console.log(pjson);
154   tm.loadJSON(pjson);
155   tm.refresh();
156 }
157
158   //add event to the back button
159   var back = $jit.id('back');
160   $jit.util.addEvent(back, 'click', function() {
161     tm.out();
162   });
163 }