Blame view

datalets/datasetexplorer-datalet/datasetexplorer-datalet.html 7.81 KB
ab77b03a   lucvic   Added datasetexpl...
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
  <!--
  @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="http://deep.routetopa.eu/COMPONENTS/datalets/base-ajax-json-jsonpath-datalet/base-ajax-json-jsonpath-datalet.html">
  
  <!--
  
  `datasetexplorer-datalet` is a treemap datalet based on d3js treemap project http://bl.ocks.org/mbostock/4063582
  A treemap recursively subdivides area into rectangles; the area of any node in the tree corresponds to its value.
  This is an enhanced version designed to help users to navigate associated dataset providers.
  
  At this moment it requires server-side elaboration, but later version will hopefully be completely client-side.
  
  Example:
  
      <datasetexplorer-datalet
          data-url="http://ckan.routetopa.eu/api/action/datastore_search?resource_id=#"
          fields='["field1","field2"]'>
      </datasetexplorer-datalet>
  
  @element datasetexplorer-datalet
  @status v0.1
  @demo demo/index.html
  @group datalets
  -->
  
  <dom-module id="datasetexplorer-datalet">
      <template>
          <style is="custom-style">
  
              :host ::content h6 {
                  color: red;
              }
  
              :host ::content #treemap_placeholder {
                  width: 100%;
                  height: 70%;
                  min-height: 500px;
7d89b743   lucvic   Spinner + Word wrap
67
68
                  background: #ffffff;
                  position: relative;
ab77b03a   lucvic   Added datasetexpl...
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
              }
  
              :host ::content text {
                  pointer-events: none;
              }
  
              :host ::content .grandparent text {
                  font-weight: bold;
              }
  
              :host ::content rect {
                  fill: none;
                  stroke: #fff;
              }
  
              :host ::content rect.parent,
              .grandparent rect {
                  stroke-width: 2px;
              }
  
              :host ::content .grandparent rect {
                  fill: orange;
              }
  
              :host ::content .grandparent:hover rect {
                  fill: #ee9700;
              }
  
              :host ::content .children rect.parent,
              .grandparent rect {
                  cursor: pointer;
              }
  
              :host ::content .children rect.parent {
                  fill: #bbb;
                  -fill-opacity: .5;
                  fill-opacity: 1;
              }
  
              :host ::content .children:hover rect.child {
                  fill: #bbb;
              }
7d89b743   lucvic   Spinner + Word wrap
111
112
113
114
115
116
117
118
119
120
121
  
              :host ::content .spinner  {
                  position: absolute;
                  left: 50%;
                  top: 50%;
                  width: 160px;
                  height: 160px;
                  margin-left: -80px;
                  margin-top: -80px;
  
              }
ab77b03a   lucvic   Added datasetexpl...
122
          </style>
7d89b743   lucvic   Spinner + Word wrap
123
          <div id="treemap_placeholder"><img class="spinner" src="spin.svg" /></div>
ab77b03a   lucvic   Added datasetexpl...
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
          <base-ajax-json-jsonpath-datalet data-url="{{dataUrl}}" fields="{{fields}}" data="{{data}}"></base-ajax-json-jsonpath-datalet>
      </template>
  
      <script src="http://deep.routetopa.eu/COMPONENTS/datalets/shared_js/d3.js"></script>
      <script src="js/buildtreemap.js"></script>
      <script>
  
          var DatasetexplorerBehavior = {
  
              map : {
                  name : "",
                  children : []
              },
  
              transformData: function(e)
              {
                  var treemapData = [];
                  DatasetexplorerBehavior.map.name = this._component.name;
  
                  if(this.data.length > 1) {
                      for (i = 0; i < this.data.length; i++) {
                          var propName = this.data[i].name;
  
                          for (var j = 0; j < this.data[i].data.length; j++) {
                              if (i == 0) treemapData[j] = {};
                              currObj = {};
                              currObj[propName] = this.data[i].data[j];
                              jQuery.extend(treemapData[j], currObj);
                          }
                      }
                  }else{
                      treemapData = this.data[0].data;
                  }
  
                  this.map.children = [];
  
                  for(var i = 0; i < treemapData.length; i++){
                      this.checkAggragationField(treemapData[i], this._component.fields.length - 1, this._component.fields.length - 1);
                  }
  
                  var json = JSON.stringify(this.map);
  
              },
  
              findChild: function(child, category){
                  var children = child.children;
                  for (var i=0; i<children.length; i++) {
                      if (children[i].name == category)
                          return children[i];
                  }
                  var nchild = {name : category , children : []};
                  children.push(nchild);
                  return nchild;
              },
  
              checkAggragationField: function(object, levels, value_index){
                  var curchild = this.map;
                  var keys = Object.keys(object);
                  for(var level= 0; level < levels; level++){
  
                      var child = this.findChild(curchild, object[keys[level]]);
                      curchild = child;
                  }
  
                  if (curchild.value === undefined)
                      curchild.value = 0;
  
                  var value = curchild.value + parseFloat(object[keys[value_index]]);
                  curchild.children = null;
                  curchild.value = value;
              },
  
              presentData: function(){
7d89b743   lucvic   Spinner + Word wrap
197
198
199
200
201
202
203
204
205
                  var me = this;
                  var xyz = function(url) {
                      me.selectResource(url);
                  }
                  build(this.map, "treemap_placeholder", xyz);
              },
  
              selectResource: function(url) {
                  this._component.fire("datasetexplorer-datalet_data-url", { url: url });
ab77b03a   lucvic   Added datasetexpl...
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
              }
          };
  
  
          Polymer({
              is : 'datasetexplorer-datalet' ,
  
              properties: {
                  /**
                   * It's the name for treemap
                   *
                   * @attribute name
                   * @type String
                   * @default ''
                   */
                  name: {
                      type: String,
                      value: ""
                  },
                  /**
                   * It's the component behavior
                   *
                   * @attribute behavior
                   * @type Object
                   * @default {}
                   */
                  behavior : {
                      type : Object,
                      value : {}
                  }
              },
  
              ready: function(){
                  this.behavior =  $.extend(true, {}, BaseDataletBehavior, WorkcycleBehavior, AjaxJsonJsonPathBehavior, DatasetexplorerBehavior);
                  this.async(function(){this.behavior.init(this)},1000);
              }
  
          });
      </script>
  </dom-module>