Blame view

datalets/datasetexplorer-datalet/js/buildtreemap2.js 13.2 KB
ab77b03a   lucvic   Added datasetexpl...
1
2
3
4
  /**
   * Created by Utente on 17/07/2015.
   */
  
26e669ac   Renato De Donato   treemap conflict
5
6
7
  function build2(root, meta, place_holder, select_listener, width, height) {
      var plwidth = width >= 0 ? width : $(place_holder).width(),
          plheight = height >= 0 ? height : $(place_holder).height();
ab77b03a   lucvic   Added datasetexpl...
8
9
  
      var margin = {top: 20, right: 0, bottom: 0, left: 0},
ab77b03a   lucvic   Added datasetexpl...
10
11
12
13
14
15
16
          width  = plwidth,
          height =  plheight - margin.top - margin.bottom,
          formatNumber = d3.format(",d"),
          transitioning;
  
      var x = d3.scale.linear()
          .domain([0, width])
ab77b03a   lucvic   Added datasetexpl...
17
18
19
20
21
22
23
24
25
26
27
28
          .range([0, width]);
  
      var y = d3.scale.linear()
          .domain([0, height])
          .range([0, height]);
  
      var treemap = d3.layout.treemap()
          .children(function(d, depth) { return depth ? null : d._children; })
          .sort(function(a, b) { return a.value - b.value; })
          .ratio(height / width * 0.5 * (1 + Math.sqrt(5)))
          .round(false);
  
26e669ac   Renato De Donato   treemap conflict
29
      var svg = d3.select(place_holder).append("svg")
ab77b03a   lucvic   Added datasetexpl...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
          .attr("width", width + margin.left + margin.right)
          .attr("height", height + margin.bottom + margin.top)
          .style("margin-left", -margin.left + "px")
          .style("margin.right", -margin.right + "px")
          .append("g")
          .attr("transform", "translate(" + margin.left + "," + margin.top + ")")
          .style("shape-rendering", "crispEdges");
  
      var grandparent = svg.append("g")
          .attr("class", "grandparent");
  
      var dataletContainer = null;
  
      grandparent.append("rect")
          .attr("y", -margin.top)
          .attr("width", width)
cc57caa4   Renato De Donato   datasetexplorer
46
47
48
49
50
51
52
          .attr("height", margin.top)
          //.call(rect)
          .attr("onmousemove", function() {
              //var data = ["lvl", "name", "color", "description", "logoUrl", "datasets", "datasetUrl"];
              var data = ["top", "", "#000000", "", "", "", ""];
              //data[3] = OW.getLanguageText('ode', 'back');
              data[3] = datasetexplorer_ln["ode+back_"+datasetexplorer_ln["ln"]];
cc0a0122   Renato De Donato   new scatter + dat...
53
              /*error*/data[3] = "<< Click to navigate back to the top level.";
cc57caa4   Renato De Donato   datasetexplorer
54
55
56
57
  
              return "showTooltip(evt, '" + data + "')";
          })
          .attr("onmouseout", function() {return "hideTooltip()";})
ab77b03a   lucvic   Added datasetexpl...
58
59
60
61
62
63
64
65
66
67
68
69
  
      grandparent.append("text")
          .attr("x", 6)
          .attr("y", 6 - margin.top)
          .attr("dy", ".75em");
  
      //d3.json
      initialize(root);
      accumulate(root);
      layout(root);
      display(root);
  
ab77b03a   lucvic   Added datasetexpl...
70
71
72
73
74
75
76
77
78
79
80
81
82
      function initialize(root) {
          root.x = root.y = 0;
          root.dx = width;
          root.dy = height;
          root.depth = 0;
      }
  
      // Aggregate the values for internal nodes. This is normally done by the
      // treemap layout, but not here because of our custom implementation.
      // We also take a snapshot of the original children (_children) to avoid
      // the children being overwritten when when layout is computed.
      function accumulate(d) {
          return (d._children = d.children)
042eeb13   Renato De Donato   treemap ckan bugs...
83
              ? d.value = d.children.reduce(function(p, v) { return p + accumulate(v); }, 0)
ab77b03a   lucvic   Added datasetexpl...
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
              : d.value;
      }
  
      // Compute the treemap layout recursively such that each group of siblings
      // uses the same size (1×1) rather than the dimensions of the parent cell.
      // This optimizes the layout for the current zoom state. Note that a wrapper
      // object is created for the parent node for each group of siblings so that
      // the parent’s dimensions are not discarded as we recurse. Since each group
      // of sibling was laid out in 1×1, we must rescale to fit using absolute
      // coordinates. This lets us use a viewport to zoom.
      function layout(d) {
          if (d._children) {
              treemap.nodes({_children: d._children});
              var i = 0;
              d._children.forEach(function(c) {
                  c.x = d.x + c.x * d.dx;
                  c.y = d.y + c.y * d.dy;
                  c.dx *= d.dx;
                  c.dy *= d.dy;
                  c.parent = d;
                  c.depth = d.depth + 1;
                  c.color = c.depth < 2
4f261647   lucvic   Updated datasetex...
106
                          ? d3.scale.ordinal().domain(d3.range(d._children.length)).range(["#8dd3c7","#ffffb3","#bebada","#fb8072","#80b1d3","#fdb462","#b3de69","#fccde5","#d9d9d9","#bc80bd","#ccebc5","#ffed6f"])(i++)
276d756a   lucvic   Fixed: Dataset pr...
107
                          : d.color;
ab77b03a   lucvic   Added datasetexpl...
108
109
110
111
112
                  layout(c);
              });
          }
      }
  
7d89b743   lucvic   Spinner + Word wrap
113
      function display(d) {
ab77b03a   lucvic   Added datasetexpl...
114
115
116
117
          grandparent
              .datum(d.parent)
              .on("click", transition)
              .select("text")
c50348c3   Renato De Donato   datasetexplorer
118
              .text( name(d) );
ab77b03a   lucvic   Added datasetexpl...
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  
          var g1 = svg.insert("g", ".grandparent")
              .datum(d)
              .attr("class", "depth");
  
          var g = g1.selectAll("g")
              .data(d._children)
              .enter().append("g");
  
          g.filter(function(d) { return d._children; })
              .classed("children", true)
              .on("click", transition);
  
          g.selectAll(".child")
              .data(function(d) { return d._children || [d]; })
              .enter().append("rect")
              .attr("class", "child")
              .call(rect);
  
          g.append("rect")
              .attr("class", "parent")
              .call(rect)
b53fef03   Renato De Donato   treemap tooltip
141
142
              .attr("onmousemove", function(d) {
                  //var data = ["lvl", "name", "color", "description", "logoUrl", "datasets", "datasetUrl"];
fb7aea2c   Renato De Donato   tooltip, a new hope!
143
                  var data = ["", d.name, d.color, "", "", d.value, ""];
fb05b400   Renato De Donato   controllet 2.0, n...
144
                  //console.log(d);
fb7aea2c   Renato De Donato   tooltip, a new hope!
145
                  data[2] = ["#000000"];
8d00609c   Renato De Donato   d.name bug
146
                  var id = (d.name) ? d.name.split(':')[1] : undefined;
b53fef03   Renato De Donato   treemap tooltip
147
148
149
                  if (d.depth == 1) {
                      // FIRST LVL
                      data[0] = "first";
12fe9d17   Renato De Donato   datasetexplorer
150
                      data[1] = meta[id]['title'];
a53fbbed   Renato De Donato   select-dataset ne...
151
152
153
                      data[3] = meta[id]['description'];
                      data[4] = "/ow_static/themes/spod_theme_matter/images/logos/"+id+".png";
                      //data[4] = "/ow_static/themes/spod_theme_matter/images/logos/"+meta[id]['logo_png'];
b53fef03   Renato De Donato   treemap tooltip
154
155
156
                  } else if (d._children && !d._children[0]._children) {
                      // LAST LVL
                      data[0] = "last";
c50348c3   Renato De Donato   datasetexplorer
157
                      data[6] = d._children[0].name;
b53fef03   Renato De Donato   treemap tooltip
158
159
160
                  } else {
                      // MIDDLE LVL
                      data[0] = "middle";
b53fef03   Renato De Donato   treemap tooltip
161
                  }
fcfe75af   Renato De Donato   evt evt evt
162
                  return "showTooltip(evt, '" + data + "')";
b53fef03   Renato De Donato   treemap tooltip
163
164
              })
              .attr("onmouseout", function() {return "hideTooltip()";})
ab77b03a   lucvic   Added datasetexpl...
165
166
167
  
          g.append("text")
              .attr("dy", ".75em")
7d89b743   lucvic   Spinner + Word wrap
168
              .call(text);
ab77b03a   lucvic   Added datasetexpl...
169
  
fb05b400   Renato De Donato   controllet 2.0, n...
170
171
172
173
174
175
176
177
          //g.append("svg")
          //    .attr("class", "foreignObject")
          //    .attr("width", function(d) { return x(d.x + d.dx) - x(d.x); })
          //    .attr("height", function(d) { return y(d.y + d.dy) - y(d.y); })
          //    .append("text")
          //    .attr("dy", ".75em")
          //    .call(text);
  
ab77b03a   lucvic   Added datasetexpl...
178
179
180
181
182
          function transition(d) {
              if (transitioning || !d) return;
              transitioning = true;
  
              if (dataletContainer) {
ab77b03a   lucvic   Added datasetexpl...
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
                  dataletContainer.remove();
                  dataletContainer = null;
              }
  
              var g2 = display(d),
                  t1 = g1.transition().duration(750),
                  t2 = g2.transition().duration(750);
  
              // Update the domain only after entering new elements.
              x.domain([d.x, d.x + d.dx]);
              y.domain([d.y, d.y + d.dy]);
  
              // Enable anti-aliasing during the transition.
              svg.style("shape-rendering", null);
  
              // Draw child nodes on top of parent nodes.
7d89b743   lucvic   Spinner + Word wrap
199
              svg.selectAll(".depth").sort(function(a, b) { return b.depth - a.depth; });
ab77b03a   lucvic   Added datasetexpl...
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
  
              // Fade-in entering text.
              g2.selectAll("text").style("fill-opacity", 0);
  
              // Transition to the new view.
              t1.selectAll("text").call(text).style("fill-opacity", 0);
              t2.selectAll("text").call(text).style("fill-opacity", 1);
              t1.selectAll("rect").call(rect);
              t2.selectAll("rect").call(rect);
  
              // Remove the old node when the transition is finished.
              t1.remove().each("end", function() {
                  svg.style("shape-rendering", "crispEdges");
                  transitioning = false;
              });
          }
  
          if (!d._children[0]._children) {
7d89b743   lucvic   Spinner + Word wrap
218
              if (select_listener) {
0d080e7d   lucvic   CKAN and OPENDATA...
219
                  var url = d._children[0].name;
5c96a7bc   Renato De Donato   controllet invali...
220
221
                  //var ret = "Data provider not supported yet."
                  var ret = url;
0d080e7d   lucvic   CKAN and OPENDATA...
222
223
224
225
226
227
228
229
  
                  // Check if CKAN
                  var strDatasetPos = url.indexOf('/dataset/');
                  var strResourcePos = (strDatasetPos >= 0) ? url.indexOf('/resource/') : -1;
                  if (strDatasetPos >= 0 && strResourcePos > strDatasetPos) {
                      var urlSegment1 = url.substring(0, strDatasetPos);
                      var urlResourceEnd = url.indexOf('/', strResourcePos + 10);
                      var resourceId = url.substring(strResourcePos + 10, urlResourceEnd);
fa810463   lucvic   Fixed CKAN url ge...
230
                      ret = urlSegment1 + "/api/action/datastore_search?resource_id=" + resourceId;
0d080e7d   lucvic   CKAN and OPENDATA...
231
232
233
234
235
236
237
238
                  }
  
                  // Check if OPENDATASOFT
                  var strExploreDatasetPos = url.indexOf('/explore/dataset/');
                  if (strExploreDatasetPos >= 0) {
                      var urlSegment1 = url.substring(0, strExploreDatasetPos);
                      var datasetEnd = url.indexOf(strExploreDatasetPos + 17, '/');
                      var datasetId = url.substring(strExploreDatasetPos + 17, datasetEnd >= 0 ? datasetEnd : url.length);
fa810463   lucvic   Fixed CKAN url ge...
239
                      ret = urlSegment1 + '/api/records/1.0/search?dataset=' + datasetId;
0d080e7d   lucvic   CKAN and OPENDATA...
240
241
                  }
  
fa810463   lucvic   Fixed CKAN url ge...
242
                  select_listener(ret);
7d89b743   lucvic   Spinner + Word wrap
243
244
              }
  
ab77b03a   lucvic   Added datasetexpl...
245
246
              var dataurl = d._children[0].name;
              var pageurl = dataurl.replace(/\/download\/.*/, '');
ab77b03a   lucvic   Added datasetexpl...
247
248
              dataletContainer = svg
                  .append("foreignObject")
276d756a   lucvic   Fixed: Dataset pr...
249
250
                  .attr("width", root.dx)
                  .attr("height", root.dy - root.y)
a31f0660   root   sevc-controllet i...
251
252
                  .append("xhtml:body")
                  .html('<iframe src="'+pageurl+'" width="'+root.dx+'" height="'+root.dy+'"></iframe>');
ab77b03a   lucvic   Added datasetexpl...
253
254
255
256
257
          }
  
          return g;
      }
  
ab77b03a   lucvic   Added datasetexpl...
258
      function text(text) {
7d89b743   lucvic   Spinner + Word wrap
259
260
261
262
263
264
          text
              .attr("x", function(d) { return x(d.x) + 6; })
              .attr("y", function(d) { return y(d.y) + 6; });
          text.call(wrap);
      }
  
2217c83d   lucvic   Support for meta ...
265
      function checkProviderName(name) {
2217c83d   lucvic   Support for meta ...
266
          if (name.substr(0, 2) == 'p:') {
2217c83d   lucvic   Support for meta ...
267
268
269
              var pid = name.substr(2);
              name = meta[pid].title;
          }
2217c83d   lucvic   Support for meta ...
270
271
272
          return name;
      }
  
7d89b743   lucvic   Spinner + Word wrap
273
274
275
276
277
278
279
      function wrap(d) {
          var wwidth = width;
          var hheight = height;
  
          d.each(function(){
              var text = d3.select(this),
                  d = text[0][0].__data__,
8d00609c   Renato De Donato   d.name bug
280
                  name = (d.name) ? checkProviderName(d.name.trim()) : "";
53621764   lucvic   Text layout fix
281
                  words = name.search(/\s+/) >= 0 ? name.split(/\s+/).reverse() : [name],
7d89b743   lucvic   Spinner + Word wrap
282
283
284
285
                  word = words.pop(),
                  line = [word],
                  lineNumber = 0,
                  lineHeight = 1.1, // ems
8f4623a8   lucvic   Updated datasetex...
286
287
                  //x = parseFloat(text.attr("x")),
                  //y = parseFloat(text.attr("y")),
7d89b743   lucvic   Spinner + Word wrap
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
                  dy = parseFloat(text.attr("dy"));
                  text.selectAll("tspan").remove();
  
              var fx = d3.scale.linear()
                  .domain([d.parent.x, d.parent.x + d.parent.dx])
                  .range([0, wwidth]);
  
              var fy = d3.scale.linear()
                  .domain([d.parent.y, d.parent.y + d.parent.dy])
                  .range([0, hheight]);
  
              var tspan = text
                      .text(null)
                      .append("tspan")
                      .attr("x", fx(d.x) + 6)
                      .attr("y", fy(d.y) + 6)
53621764   lucvic   Text layout fix
304
305
                      .attr("dy", lineNumber++ * lineHeight + dy + "em")
                      .text(word);
7d89b743   lucvic   Spinner + Word wrap
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
              var width = fx(d.x + d.dx) - fx(d.x) - 12;
              var height = fy(d.y + d.dy) - fy(d.y) - 6;
  
              while (word = words.pop()) {
                  line.push(word);
                  tspan.text(line.join(" "));
                  if (tspan.node().getComputedTextLength() > width) {
                      line.pop();
                      tspan.text(line.join(" "));
  
                      line = [word];
  
                      tspan = text
                          .append("tspan")
                          .attr("x", fx(d.x) + 6)
                          .attr("y", fy(d.y) + 6)
                          .attr("dy", lineNumber++ * lineHeight + dy + "em")
                          .text(word);
  
                      if (text.node().offsetHeight > height) {
                          tspan.remove();
                          break;
                      }
                  }
              }
          });
ab77b03a   lucvic   Added datasetexpl...
332
333
334
335
336
337
338
339
340
341
342
343
344
      }
  
      function rect(rect) {
          rect.attr("x", function(d) { return x(d.x); })
              .attr("y", function(d) { return y(d.y); })
              .attr("width", function(d) { return x(d.x + d.dx) - x(d.x); })
              .attr("height", function(d) { return y(d.y + d.dy) - y(d.y); })
              .style("fill", function(d, i) { return d.color; })
              ;
      }
  
      function name(d) {
          return d.parent
a53fbbed   Renato De Donato   select-dataset ne...
345
              ? name(d.parent) + "." + checkProviderName(d.name)
c50348c3   Renato De Donato   datasetexplorer
346
              : checkProviderName(d.name);
ab77b03a   lucvic   Added datasetexpl...
347
      }
b53fef03   Renato De Donato   treemap tooltip
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
  
  };
  
  function showTooltip(e, data) {
      var data = data.split(",");
  
      treemap_tooltip.name = data[1];
      treemap_tooltip.color = data[2];
      treemap_tooltip.description = data[3];
      treemap_tooltip.logoUrl = data[4];
      treemap_tooltip.datasets = data[5];
      treemap_tooltip.datasetUrl = data[6];
  
      treemap_tooltip.showTooltip(e, data[0]);
  }
  
  function hideTooltip() {
      treemap_tooltip.hideTooltip();
  }