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
|
<!--
@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
*
-->
|
413bc541
Renato De Donato
data cache
|
32
|
<link rel="import" href="../base-ajax-json-alasql-datalet/base-ajax-json-alasql-datalet.html">
|
b53fef03
Renato De Donato
treemap tooltip
|
33
|
<link rel="import" href="treemap_tooltip.html">
|
ab77b03a
lucvic
Added datasetexpl...
|
34
|
|
941bbb68
Renato De Donato
tooltip ln
|
35
36
|
<script src="../../locales/datasetexplorer_ln.js"></script>
|
ab77b03a
lucvic
Added datasetexpl...
|
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
68
|
<!--
`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%;
|
0b7cbd33
Renato De Donato
title-desciption
|
69
|
/*min-height: 500px;*/
|
34789a0e
Renato De Donato
jsdatachecker ln,...
|
70
71
|
/*background: #ffffff;*/
background: transparent;
|
7d89b743
lucvic
Spinner + Word wrap
|
72
|
position: relative;
|
ab77b03a
lucvic
Added datasetexpl...
|
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
}
:host ::content text {
pointer-events: none;
}
:host ::content .grandparent text {
font-weight: bold;
}
:host ::content rect {
fill: none;
stroke: #fff;
}
|
cc57caa4
Renato De Donato
datasetexplorer
|
88
|
:host ::content rect.parent {
|
ab77b03a
lucvic
Added datasetexpl...
|
89
90
91
92
93
94
95
96
97
98
99
|
stroke-width: 2px;
}
:host ::content .grandparent rect {
fill: orange;
}
:host ::content .grandparent:hover rect {
fill: #ee9700;
}
|
cc57caa4
Renato De Donato
datasetexplorer
|
100
101
102
103
104
105
|
:host ::content .children rect.parent {
cursor: pointer;
}
:host ::content .grandparent rect {
stroke-width: 2px;
|
ab77b03a
lucvic
Added datasetexpl...
|
106
107
108
109
110
111
112
113
114
115
116
117
|
cursor: pointer;
}
:host ::content .children rect.parent {
fill: #bbb;
-fill-opacity: .5;
fill-opacity: 1;
}
:host ::content .children:hover rect.child {
fill: #bbb;
}
|
fb05b400
Renato De Donato
controllet 2.0, n...
|
118
|
|
34789a0e
Renato De Donato
jsdatachecker ln,...
|
119
120
121
122
|
:host ::content iframe.iframe {
border: 0 !important;
}
|
fb05b400
Renato De Donato
controllet 2.0, n...
|
123
124
125
126
127
128
129
|
/*:host ::content .children svg.foreignObject {*/
/*font: 9px sans-serif;*/
/*text-overflow: ellipsis;*/
/*text-align: left;*/
/*word-wrap: break-word;*/
/*overflow: hidden;*/
/*}*/
|
ab77b03a
lucvic
Added datasetexpl...
|
130
|
</style>
|
b53fef03
Renato De Donato
treemap tooltip
|
131
132
133
|
<div id="treemap_placeholder">
<treemap-tooltip id="treemap_tooltip"></treemap-tooltip>
</div>
|
413bc541
Renato De Donato
data cache
|
134
|
<base-ajax-json-alasql-datalet data-url="{{dataUrl}}" fields="{{fields}}" data="{{data}}" export_menu="{{export_menu}}"></base-ajax-json-alasql-datalet>
|
b53fef03
Renato De Donato
treemap tooltip
|
135
|
<!--<treemap-tooltip id="treemap_tooltip"></treemap-tooltip>-->
|
ab77b03a
lucvic
Added datasetexpl...
|
136
137
|
</template>
|
a31f0660
root
sevc-controllet i...
|
138
|
<script src="../shared_js/d3.js"></script>
|
26e669ac
Renato De Donato
treemap conflict
|
139
|
<script src="js/buildtreemap2.js"></script>
|
ab77b03a
lucvic
Added datasetexpl...
|
140
141
142
143
144
145
146
147
148
|
<script>
var DatasetexplorerBehavior = {
map : {
name : "",
children : []
},
|
413bc541
Renato De Donato
data cache
|
149
|
transformData: function()
|
26e669ac
Renato De Donato
treemap conflict
|
150
|
{
|
dae2275f
Renato De Donato
datasetexplorer
|
151
152
|
this._filterData();
|
ab77b03a
lucvic
Added datasetexpl...
|
153
|
var treemapData = [];
|
b4accc86
Renato De Donato
datalet improved
|
154
|
DatasetexplorerBehavior.map.name = this._component.title;
|
ab77b03a
lucvic
Added datasetexpl...
|
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
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++){
|
a53fbbed
Renato De Donato
select-dataset ne...
|
174
|
this.checkAggragationField(treemapData[i], this._component.fields.length - 2, this._component.fields.length - 2);
|
ab77b03a
lucvic
Added datasetexpl...
|
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
}
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
|
210
211
212
213
|
var me = this;
var xyz = function(url) {
me.selectResource(url);
}
|
34789a0e
Renato De Donato
jsdatachecker ln,...
|
214
|
this.map.name = datasetexplorer_ln["path_" + datasetexplorer_ln["ln"]];
|
26e669ac
Renato De Donato
treemap conflict
|
215
|
build2(this.map, this.meta, this._component.$.treemap_placeholder, xyz, this._component.width, this._component.height);
|
7d89b743
lucvic
Spinner + Word wrap
|
216
217
218
219
|
},
selectResource: function(url) {
this._component.fire("datasetexplorer-datalet_data-url", { url: url });
|
2217c83d
lucvic
Support for meta ...
|
220
221
|
},
|
dae2275f
Renato De Donato
datasetexplorer
|
222
|
_filterData : function() {
|
474d4e8f
Andrea Petta
cache dataset exp...
|
223
|
|
413bc541
Renato De Donato
data cache
|
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
|
this.meta = this.data.result.providers;
this._component.fields = JSON.parse(this._component.fields);
this.data = this._transformData(this.data.result.datasets, this._component.fields, false);
// var tmpData = [];
//
// if(!this.properties.json_results.value.result)
// this.properties.json_results.value = this.data;
//
// this.meta = this.properties.json_results.value.result.providers;
//
// //Deal the fields with "'" char
// //this._component.fields = this._component.fields.replace(/#/g,"'");
//
// this._component.fields = JSON.parse(this._component.fields);
//
// for (var i = 0; i < this._component.fields.length; i++) {
// var query = "$";
// var query_elements = this._component.fields[i].split(',');
// for (var j = 0; j < query_elements.length; j++) {
// query += "['" + query_elements[j] + "']";
// if (this.isFieldArray(query_elements.slice(0, j + 1))) {
// query += "[*]";
// }
// }
//
// tmpData.push({
// name: query_elements[query_elements.length - 1],
// data: jsonPath(this.properties.json_results.value, query)
// });
// }
// this.data = tmpData;
// this._deleteWaitImage();
},
|
474d4e8f
Andrea Petta
cache dataset exp...
|
257
|
|
413bc541
Renato De Donato
data cache
|
258
259
260
|
_transformData : function(data, fields, truncate) {
if(!data || data.length == 0)
return [];
|
474d4e8f
Andrea Petta
cache dataset exp...
|
261
|
|
413bc541
Renato De Donato
data cache
|
262
263
|
/*DEPRECATED*/for (var i=0; i < fields.length; i++)
fields[i] = fields[i].substring(fields[i].lastIndexOf(",") + 1, fields[i].length);
|
2217c83d
lucvic
Support for meta ...
|
264
|
|
413bc541
Renato De Donato
data cache
|
265
|
var tData = [];
|
2217c83d
lucvic
Support for meta ...
|
266
|
|
413bc541
Renato De Donato
data cache
|
267
|
for (var i in fields){
|
2217c83d
lucvic
Support for meta ...
|
268
|
|
413bc541
Renato De Donato
data cache
|
269
270
|
var field = fields[i];
var values = [];
|
474d4e8f
Andrea Petta
cache dataset exp...
|
271
|
|
413bc541
Renato De Donato
data cache
|
272
273
274
275
276
277
|
for (var i in data) {
var v = data[i][field];
if(truncate)
if(!isNaN(v) && v % 1 != 0)
v = Math.floor(v * 100) / 100;
values.push(v);
|
2217c83d
lucvic
Support for meta ...
|
278
|
}
|
413bc541
Renato De Donato
data cache
|
279
280
281
282
283
|
tData.push({
name: field,
data: values
});
|
26e669ac
Renato De Donato
treemap conflict
|
284
|
}
|
ab77b03a
lucvic
Added datasetexpl...
|
285
|
|
413bc541
Renato De Donato
data cache
|
286
287
288
|
return tData;
}
|
26e669ac
Renato De Donato
treemap conflict
|
289
|
};
|
ab77b03a
lucvic
Added datasetexpl...
|
290
291
292
293
294
295
|
Polymer({
is : 'datasetexplorer-datalet' ,
properties: {
/**
|
ab77b03a
lucvic
Added datasetexpl...
|
296
297
298
299
300
301
302
303
304
|
* It's the component behavior
*
* @attribute behavior
* @type Object
* @default {}
*/
behavior : {
type : Object,
value : {}
|
dd85f27a
lucvic
Dataset explorer:...
|
305
306
|
},
|
413bc541
Renato De Donato
data cache
|
307
308
309
310
311
|
data : {
type : Array,
value : undefined
},
|
a53fbbed
Renato De Donato
select-dataset ne...
|
312
313
314
315
316
|
name : {
type : String,
value: ""
},
|
dd85f27a
lucvic
Dataset explorer:...
|
317
318
|
width : {
type : Number,
|
ffd617ec
lucvic
Default dimensions
|
319
|
value: 968
|
dd85f27a
lucvic
Dataset explorer:...
|
320
321
322
323
|
},
height : {
type : Number,
|
ffd617ec
lucvic
Default dimensions
|
324
|
value: 700
|
498cdf34
Andrea Petta
leafletjs
|
325
326
327
328
329
330
331
332
333
334
335
336
|
},
/**
* Control the export menu
* xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
*
* @attribute export_menu
* @type Number
* @default 15
*/
export_menu : {
type : Number,
value : 15 // xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
|
ab77b03a
lucvic
Added datasetexpl...
|
337
338
339
340
|
}
},
ready: function(){
|
0b7cbd33
Renato De Donato
title-desciption
|
341
342
|
$(this).find("base-datalet")[0].hideFooter();
|
413bc541
Renato De Donato
data cache
|
343
|
this.behavior = $.extend(true, {}, BaseDataletBehavior, WorkcycleBehavior, AjaxJsonAlasqlBehavior, DatasetexplorerBehavior);
|
a31f0660
root
sevc-controllet i...
|
344
|
this.async(function(){this.behavior.init(this)},0);
|
941bbb68
Renato De Donato
tooltip ln
|
345
346
347
|
},
attached: function(){
|
22e29cdb
Andrea Petta
bug fix
|
348
|
datasetexplorer_ln["ln"] = (typeof ODE != 'undefined') ? ODE.user_language : parent.ODE.user_language;
|
ab77b03a
lucvic
Added datasetexpl...
|
349
350
351
352
353
|
}
});
</script>
</dom-module>
|