basic attribute pass-thru
[p5sagit/Devel-Size.git] / static / public / tm.js
CommitLineData
b2fc39a5 1var 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
18var 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
29function 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
5a78486c 37 levelsToShow: 1,
b2fc39a5 38 //parent box title heights
5a78486c 39 titleHeight: 11,
b2fc39a5 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
5a78486c 87 duration: 500,
b2fc39a5 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;
bb66f8a1 102
bb66f8a1 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);
b2fc39a5 106 }
5a78486c 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 : "");
f60f09e5 110 html += JSON.stringify(data.attr, undefined, 4);
bb66f8a1 111
b2fc39a5 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) {
875c1073 122 jQuery.getJSON('jit_tree/'+nodeId+'/1', function(data) {
f9d8678b 123 console.log("Node "+nodeId);
124 console.log(data);
b2fc39a5 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
142if(true) {
875c1073 143 jQuery.getJSON('jit_tree/1/1', function(data) {
f9d8678b 144 console.log(data);
b2fc39a5 145 tm.loadJSON(data);
146 tm.refresh();
147 });
148}
149else {
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
b2fc39a5 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}