Blame view

datalets/graph-datalet/graph-datalet.html 10.3 KB
ce4b5fb1   Luigi Serra   graph-datalet
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
  <!--

  @license

      The MIT License (MIT)

  

      Copyright (c) 2015 Dipartimento di Informatica - Università di Salerno - Italy

  

      Permission is hereby granted, free of charge, to any person obtaining a copy

      of this software and associated documentation files (the "Software"), to deal

      in the Software without restriction, including without limitation the rights

      to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

      copies of the Software, and to permit persons to whom the Software is

      furnished to do so, subject to the following conditions:

  

      The above copyright notice and this permission notice shall be included in

      all copies or substantial portions of the Software.

  

      THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

      IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

      FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

      AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

      LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

      OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN

      THE SOFTWARE.

  -->

  

  <!--

  * Developed by :

  * ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu

  *

  -->

  

  <link rel="import" href="../base-datalet/base-datalet.html">

  <link rel="import" href="../../bower_components/iron-flex-layout/iron-flex-layout.html">

  <link rel="import" href="../../bower_components/paper-slider/paper-slider.html">

  

  <!--

  `preview-datalet` is a datalet that allow user to preview the content of a web page. It creates a thumbnail of the site using the data-url attribute passed as input.

  

  Example:

  

      <preview-datalet data-url="http://spod.routetopa.eu"

      </preview-datalet>

  

  

  @element preview-datalet

  @status beta

  @homepage

  @group datalets

  -->

  

  <dom-module id="graph-datalet">

      <template>

  

          <link rel="stylesheet" href="static/css/graphStyle.css">

  

          <style is="custom-style">

              .content {

                  /*width: 50%;*/

                  margin: 0px auto;

              }

  

          </style>

  

         <div class="layout vertical">

              <div id="toolbar">

                  <paper-slider min="900" max="1500" value="{{width}}"></paper-slider>

              </div>

4f0953cd   Luigi Serra   graph datalet
68
              <div style="align-content: center;" id="graph-content">

ce4b5fb1   Luigi Serra   graph-datalet
69
70
71
72
73
74
75
76
77
78
79
80
81
                  <svg id="sbiricuda"></svg>

              </div>

         </div>

  

          <base-datalet id="base" data-url="{{dataUrl}}"></base-datalet>

  

      </template>

  

      <script src="static/js/d3.v3.js"></script>

      <script src="static/js/buildGraph.js"></script>

  

      <script>

  

4f0953cd   Luigi Serra   graph datalet
82
83
          var _this;

  

ce4b5fb1   Luigi Serra   graph-datalet
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
          Polymer({

              is : 'graph-datalet',

  

              properties: {

                  /**

                   * It's the url for the preview

                   *

                   * @attribute url

                   * @type Strig

                   * @default ''

                   */

                  data : {

                      type : Object,

                      value : undefined

                  },

  

                  width: {

                      type: Number,

4f0953cd   Luigi Serra   graph datalet
102
                      value: undefined,

ce4b5fb1   Luigi Serra   graph-datalet
103
104
105
106
107
108
109
110
111
112
113
                      observer : '_widthChanged'

                  },

  

                  height : {

                      type : Number,

                      type: undefined

                  },

  

                  svg: {

                      type: Object,

                      value: undefined

4f0953cd   Luigi Serra   graph datalet
114
115
116
117
118
119
120
121
122
123
124
                  },

  

                  gnodes:{

                      type: Array,

                      value: undefined

                  },

  

                  glinks:{

                      type: Array,

                      value: undefined

                  },

ce4b5fb1   Luigi Serra   graph-datalet
125
126
              },

  

4f0953cd   Luigi Serra   graph datalet
127
             /* buildGraph: function (t){

ce4b5fb1   Luigi Serra   graph-datalet
128
129
130
131
132
133
134
135
136
137
                  var graph = {};

  

                  graph.nodes = t.nodes;

                  graph.links = t.links;

  

                  force = d3.layout.force().nodes(graph.nodes).links(graph.links).size([this.width, this.height]).charge(-1e3).friction(.7).linkDistance(function (t)

                  {

                      return t.value ? t.value : 80

                  }).on("tick", this.tick).start();

  

4f0953cd   Luigi Serra   graph datalet
138
                  this.glinks = this.svg.selectAll(".link").data(graph.links).enter().append("line").attr("class", "link");

ce4b5fb1   Luigi Serra   graph-datalet
139
  

4f0953cd   Luigi Serra   graph datalet
140
                  this.gnodes = this.svg.selectAll(".node").data(graph.nodes).enter().append("g").attr("class", function (t) {

ce4b5fb1   Luigi Serra   graph-datalet
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
                      return t.fixed ? "node fixed" : "node"

                  }).attr("name", function (t) {

                      return t.name ? t.name.split(" ").join("_").toLowerCase() : ""

                  }).on("mouseover", this.mouseover).on("mouseout", this.mouseout).on("click", this.active).append("circle").attr("class", function (t) {

                      return t.fixed ? "" : "drag"

                  }).attr("r", function (t) {

                      return t.r ? t.r : 15

                  }).attr("style", function (t) {

                      return t.color ? "stroke:" + t.color : !1

                  });

  

                  //d3.selectAll(".drag").call(force.drag), svg.selectAll("g.fixed").call(text);

                  d3.selectAll(".drag").call(force.drag), this.svg.selectAll("g.node").call(this.text);

  

              },

              text: function (t)

              {

                  var e = t.append("svg:foreignObject").attr("width", 120).attr("height", 30);

                  e.attr("style", function (t) {

                      return "color:" + (t.color ? t.color : "#000")

                  }).append("xhtml:div").html(function (t) {

                      //return t.fixed ? t.name : null

                      return t.name;

                  })

              },

  

              tick : function () {

                  // d3.select("svg").attr("style", "transform:translate(8%)");

                  d3.selectAll("g foreignObject").attr("x", function (t) {

                      return t.x + (t.r ? 1.1 * t.r : 15)

                  }).attr("y", function (t) {

                      return t.y - 35

                  });

  

                  d3.selectAll("#logo text").attr("x", function (t) {

                      return t.x + .7 * (t.r ? t.r : 15)

                  }).attr("y", function (t) {

                      return t.y

                  });

  

4f0953cd   Luigi Serra   graph datalet
181
182
183
  

  

                  _this.gnodes.attr("cx", function (t) {

ce4b5fb1   Luigi Serra   graph-datalet
184
185
186
                      return t.x = Math.max(25, Math.min(this.width - 50, t.x))

                  }).attr("cy", function (t) {

                      return t.y = Math.max(8, Math.min(600, t.y))

4f0953cd   Luigi Serra   graph datalet
187
188
189
                  });

  

                  _this.glinks.attr("x1", function (t) {

ce4b5fb1   Luigi Serra   graph-datalet
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
                      return t.source.x

                  }).attr("y1", function (t) {

                      return t.source.y

                  }).attr("x2", function (t) {

                      return t.target.x

                  }).attr("y2", function (t) {

                      return t.target.y

                  })

              },

              mouseover : function (t) {

                  d3.select(this).selectAll("circle").transition().duration(600).ease("elastic").attr("r", function (t) {

                      return 1 == t.fixed ? 1.4 * t.r : 15

                  });

                  //$("#sbiricuda").html($("." + t.name.split(" ").join("_").toLowerCase()).html())

              },

  

              mouseout : function () {

                  d3.select(this).selectAll("text").style("visibility", "hidden"), d3.select(this).selectAll("circle").transition().duration(400).attr("r", function (t) {

                      return t.r ? t.r : 15

                  })

              },

  

              active : function (t) {

                 t.fixed && openModal(t.name)

              },

  

              openModal : function(t) {

                  var e = t.split(" ").join("_").toLowerCase();

                  $(".modal-content").hide();

                  $("." + e).fadeIn();

                  $("#modal").modal()

              },*/

  

              /**

               * It is called after the element’s template has been stamped and all elements inside the element’s local

               * DOM have been configured (with values bound from parents, deserialized attributes, or else default values)

               * and had their ready method called.

               *

               * Extract the dataset domain from the entire URL and set the text content of the datalet footer.

               *

               * @method ready

               *

               */

              ready: function(){

                  width = this.width;

                  this.height = 9 * this.width / 16;

                  height = this.height;

                  svg = d3.select("svg#sbiricuda").attr("class", "svg").attr({

                      width: "100%",

                      height: "100%"

4f0953cd   Luigi Serra   graph datalet
240
                  })//.attr("viewBox", "0 0 " + this.width + " " + this.height).attr("pointer-events", "all").style("position", "absolute").attr("style", "transform:translate(0px)");

ce4b5fb1   Luigi Serra   graph-datalet
241
242
243
244
245
  

                  var g = JSON.parse(this.data);

                  g.nodes[0].x = this.width / 2;

                  g.nodes[0].y = this.height / 2;

                  buildGraph(g);

4f0953cd   Luigi Serra   graph datalet
246
247
248
249
250
251
252
253
254
255
256
257
258
  

                 /* _this = this;

  

                  this.height = 9 * this.width / 16;

                  this.svg = d3.select("svg#sbiricuda").attr("class", "svg").attr({

                      width: "100%",

                      height: "100%"

                  }).attr("viewBox", "0 0 " + this.width + " " + this.height).attr("pointer-events", "all").style("position", "absolute").attr("style", "transform:translate(0px)");

  

                  var g = JSON.parse(this.data);

                  g.nodes[0].x = this.width / 2;

                  g.nodes[0].y = this.height / 2;

                  this.buildGraph(g);*/

ce4b5fb1   Luigi Serra   graph-datalet
259
260
261
262
263
264
265
266
267
268
269
270
              },

  

              _widthChanged: function(oldValue, newValue){

  

                  width = this.width;

                  this.height = 9 * this.width / 16;

                  height = this.height;

  

                  svg = d3.select("svg#sbiricuda").attr("class", "svg").attr({

                      width: "100%",

                      height: "100%"

                  }).attr("viewBox", "0 0 " + this.width + " " + height).attr("pointer-events", "all").style("position", "absolute").attr("style", "transform:translate(0px)");

4f0953cd   Luigi Serra   graph datalet
271
272
273
274
  

                  var g = JSON.parse(this.data);

                  g.nodes[0].x = this.width / 2;

                  g.nodes[0].y = this.height / 2;

ce4b5fb1   Luigi Serra   graph-datalet
275
276
277
278
              }

          });

      </script>

  </dom-module>