73bcce88
luigser
COMPONENTS
|
1
|
<!--
|
5e6ba8af
isisadmin
datalet doc update
|
2
3
4
|
@license
The MIT License (MIT)
|
94601c1f
Renato De Donato
trevieww multitable
|
5
|
Copyright (c) 2015 Dipartimento di Informatica - Universit� di Salerno - Italy
|
5e6ba8af
isisadmin
datalet doc update
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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.
|
a1f0799c
isisadmin
datalet global re...
|
24
25
|
-->
|
ae17a8dc
Luigi Serra
Controllet and da...
|
26
|
<!--
|
950d181d
Luigi Serra
license updates
|
27
28
|
* Developed by :
* ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu
|
ae17a8dc
Luigi Serra
Controllet and da...
|
29
30
31
|
*
-->
|
a1f0799c
isisadmin
datalet global re...
|
32
33
34
|
<link rel="import" href="../../bower_components/polymer/polymer.html">
<!--
|
5e6ba8af
isisadmin
datalet doc update
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
The `base-datalet` is the base component that includes datalet footer (with information about dataset domain and ROUTE-TO-PA project).
Base datalet includes polymer.html and the BaseDataletBehaviors javascript file that define the datalet workcycle and the datalet base properties : dataUrl, fields and data.
Every datalet must include this one in its `<template>` section.
Example :
<dom-module id="every-datalet">
<template>
...
<base-datalet data-url="{{dataUrl}}" fields="{{fields}}"></base-datalet>
...
</template>
</dom-module>
@element base-datalet
@status v0.1
@homepage
@group datalets
|
73bcce88
luigser
COMPONENTS
|
53
|
-->
|
73bcce88
luigser
COMPONENTS
|
54
55
56
57
|
<dom-module id="base-datalet">
<template>
<style>
|
0f6424fe
root
update new data-s...
|
58
59
60
61
62
63
64
65
|
a {
color: #00BCD4;
text-decoration: none;
}
a:hover {
color: #2db395;
text-decoration: underline;
}
|
94601c1f
Renato De Donato
trevieww multitable
|
66
|
#base_datalet_container {
|
59100bec
Renato De Donato
localization + ba...
|
67
|
/*display: flex;*/
|
94601c1f
Renato De Donato
trevieww multitable
|
68
|
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
59100bec
Renato De Donato
localization + ba...
|
69
70
71
72
|
/*color: #212121;*/
padding-top: 2px;
/*padding: 16px;*/
border-top: 2px solid #B6B6B6;
|
94601c1f
Renato De Donato
trevieww multitable
|
73
74
|
}
#base_datalet_rtp {
|
59100bec
Renato De Donato
localization + ba...
|
75
|
/*background-color: red;*/
|
94601c1f
Renato De Donato
trevieww multitable
|
76
|
display: flex;
|
59100bec
Renato De Donato
localization + ba...
|
77
|
padding-top: 4px;
|
94601c1f
Renato De Donato
trevieww multitable
|
78
|
}
|
0f6424fe
root
update new data-s...
|
79
|
#rtp {
|
59100bec
Renato De Donato
localization + ba...
|
80
|
/*width: 152px;*/
|
94601c1f
Renato De Donato
trevieww multitable
|
81
82
|
padding-top: 8px;
padding-right: 8px;
|
73bcce88
luigser
COMPONENTS
|
83
84
|
font-size: small;
}
|
0f6424fe
root
update new data-s...
|
85
|
#rtpalogo {
|
94601c1f
Renato De Donato
trevieww multitable
|
86
87
|
height:32px;
width: 32px;
|
73bcce88
luigser
COMPONENTS
|
88
|
}
|
0f6424fe
root
update new data-s...
|
89
|
#base_datalet_spin {
|
b4accc86
Renato De Donato
datalet improved
|
90
|
height:64px;
|
73cc8795
pina
dataset page and ...
|
91
|
width: 100%;
|
59100bec
Renato De Donato
localization + ba...
|
92
93
94
95
96
97
98
99
100
101
|
}
/*#base_datalet_info{*/
/*padding-top: 8px;*/
/*/!*background-color: green;*!/*/
/*width: 100%;*/
/*/!*font-size: small;*!/*/
/*}*/
#base_datalet_source_link{
padding-top: 12px;
}
|
73bcce88
luigser
COMPONENTS
|
102
103
|
</style>
|
73cc8795
pina
dataset page and ...
|
104
|
<div id="base_datalet_imgWaitDatalet">
|
b4accc86
Renato De Donato
datalet improved
|
105
|
<img id="base_datalet_spin" src="static/images/spin.svg">
|
73cc8795
pina
dataset page and ...
|
106
|
</div>
|
0f6424fe
root
update new data-s...
|
107
|
|
94601c1f
Renato De Donato
trevieww multitable
|
108
|
<div id="base_datalet_container">
|
0f6424fe
root
update new data-s...
|
109
|
|
59100bec
Renato De Donato
localization + ba...
|
110
111
112
113
114
115
116
|
<div id="base_datalet_title_description">
<span id="span_title" style="font-size: small"><b>{{title}}</b><span id="span_description" style="color: #727272"> - {{description}}</span></span>
</div>
<div id="base_datalet_source_link">
<b>Source:</b> <a id="base_datalet_source" target="_blank"></a> (<a id="base_datalet_link" target="_blank">dataset</a>)
</div>
|
0f6424fe
root
update new data-s...
|
117
|
|
94601c1f
Renato De Donato
trevieww multitable
|
118
|
<div id="base_datalet_rtp">
|
73cc8795
pina
dataset page and ...
|
119
|
<div id="rtp">Powered by ROUTE-TO-PA</div>
|
9579b866
Renato De Donato
firefox bug fix
|
120
|
<div><a href="http://www.routetopa.eu/" target="_blank"><img id="rtpalogo" src="static/images/rtpalogo.png" ></a></div>
|
94601c1f
Renato De Donato
trevieww multitable
|
121
|
</div>
|
b4accc86
Renato De Donato
datalet improved
|
122
|
|
94601c1f
Renato De Donato
trevieww multitable
|
123
124
|
</div>
|
73bcce88
luigser
COMPONENTS
|
125
126
|
</template>
|
4e7eacf4
Luigi Serra
Controllets and d...
|
127
128
|
<script src="static/js/BaseDataletBehavior.js"></script>
<script src="static/js/WorkcycleBehavior.js"></script>
|
73bcce88
luigser
COMPONENTS
|
129
130
131
132
|
<script>
BaseDatalet = Polymer({
is: 'base-datalet',
|
3c812cc9
Renato De Donato
title-desciption ...
|
133
134
135
136
137
|
properties: {
title : {
type : String,
|
4b79b3c8
Renato De Donato
datalet-selection...
|
138
|
value : ""
|
3c812cc9
Renato De Donato
title-desciption ...
|
139
140
141
142
|
},
description : {
type : String,
|
4b79b3c8
Renato De Donato
datalet-selection...
|
143
|
value : ""
|
59100bec
Renato De Donato
localization + ba...
|
144
145
146
147
148
|
},
hideFooter : {
type : Boolean,
value : false
|
3c812cc9
Renato De Donato
title-desciption ...
|
149
150
151
152
|
}
},
|
73cc8795
pina
dataset page and ...
|
153
154
155
156
157
158
159
160
161
162
163
164
165
|
objectDatalet: {
/**
* It contains the json data from async xhr call returned from core-ajax core component
*
* @attribute json_resultDatalet
* @type object
* @default 'null'.
*/
json_resultDatalet: {
type: Object,
value: {}
}
},
|
59100bec
Renato De Donato
localization + ba...
|
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
_setFooter: function() {
if (this.title == "" && this.description == "")
this.$.base_datalet_title_description.innerHTML = "";
else if (this.description == "")
this.$.span_description.innerHTML = "";
if (this.hideFooter) {
this.$.base_datalet_source_link.innerHTML = "";
this.$.base_datalet_rtp.innerHTML = "";
}
},
|
5e6ba8af
isisadmin
datalet doc update
|
180
|
/**
|
94601c1f
Renato De Donato
trevieww multitable
|
181
|
* It is called after the element�s template has been stamped and all elements inside the element�s local
|
5e6ba8af
isisadmin
datalet doc update
|
182
183
184
|
* DOM have been configured (with values bound from parents, deserialized attributes, or else default values)
* and had their ready method called.
*
|
73cc8795
pina
dataset page and ...
|
185
186
187
188
|
* Extract
* 1) the dataset domain
* 2) the page of a datalet
* from the entire URL and set the text content of the datalet footer.
|
5e6ba8af
isisadmin
datalet doc update
|
189
|
* @method ready
|
5e6ba8af
isisadmin
datalet doc update
|
190
|
*/
|
73bcce88
luigser
COMPONENTS
|
191
|
ready: function(){
|
59100bec
Renato De Donato
localization + ba...
|
192
|
this._setFooter();
|
0f6424fe
root
update new data-s...
|
193
|
|
59100bec
Renato De Donato
localization + ba...
|
194
|
if(this.dataUrl != undefined) {
|
0f6424fe
root
update new data-s...
|
195
|
|
59100bec
Renato De Donato
localization + ba...
|
196
197
|
//cKan organized with or not catalog
var queryInitial = this.dataUrl.substring(0, this.dataUrl.indexOf("api")); //SOURCE
|
0f6424fe
root
update new data-s...
|
198
|
|
59100bec
Renato De Donato
localization + ba...
|
199
200
201
|
var urlSource = this.dataUrl.split("/")[0] + "//" + this.dataUrl.split("/")[2];
this.$.base_datalet_source.innerHTML = urlSource;
this.$.base_datalet_source.setAttribute("href", urlSource);
|
73cc8795
pina
dataset page and ...
|
202
|
|
73cc8795
pina
dataset page and ...
|
203
|
|
59100bec
Renato De Donato
localization + ba...
|
204
205
206
207
208
209
210
211
212
|
//OpenDataSoft check
if(this.dataUrl.indexOf("/records/") > -1 )
{
//Resourceid of a datalet
var query = this.dataUrl.substring(this.dataUrl.indexOf("?"), this.dataUrl.length);
var params = this.decomponeQueryString(query);
var resultIssyIdDatalet = params["dataset"];
var resultIssyAPI = "explore/dataset/";
var urlPageDatasetIssy = queryInitial + resultIssyAPI + resultIssyIdDatalet + "/";
|
73cc8795
pina
dataset page and ...
|
213
|
|
59100bec
Renato De Donato
localization + ba...
|
214
215
216
217
218
219
|
this.$.base_datalet_link.setAttribute("href", urlPageDatasetIssy);
}
else
{
//CKAN portal
var urlDatalet;
|
0f6424fe
root
update new data-s...
|
220
|
|
59100bec
Renato De Donato
localization + ba...
|
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
var apiIdResource = "resource_show?id=";
//Resourceid of a datalet
var query = this.dataUrl.substring(this.dataUrl.indexOf("?"), this.dataUrl.length);
var params = this.decomponeQueryString(query);
//CKAN
var resultIdDatalet = params["resource_id"];
//cKan organized with or not catalog
var queryFinal = this.dataUrl.substring(this.dataUrl.indexOf("api"), this.dataUrl.indexOf("datastore_search"));
urlDatalet = queryInitial + queryFinal + apiIdResource + resultIdDatalet;
this.requestDataletData(urlDatalet);
}
|
6cf27113
pina
add link dataset ...
|
235
|
}
|
59100bec
Renato De Donato
localization + ba...
|
236
|
|
035bbee3
Luigi Serra
Datalets and cont...
|
237
238
239
240
241
242
|
},
/**
* Set the domain url to show in the footer
*/
setDomain: function(url){
this.$.domain.textContent = url;
|
73cc8795
pina
dataset page and ...
|
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
},
/**
* Get the (key, value) query string parameters
**/
decomponeQueryString: function (querystring) {
// remove any preceding url and split
querystring = querystring.substring(querystring.indexOf('?')+1).split('&');
var params = {}, pair, d = decodeURIComponent;
// march and parse
for (var i = querystring.length - 1; i >= 0; i--) {
pair = querystring[i].split('=');
params[d(pair[0])] = d(pair[1]);
}
return params;
},
/**
* Make an AJAX call to the dataset URL to retrieve package_id
*
* @method urlDatalet
*/
requestDataletData: function(urlDatalet){
var comp = this;
$.ajax({
url: urlDatalet, //url con package
dataType: "json",
success: function(e){
comp.handleDataletResponse(e);
}
});
},
/**
* Called when core-ajax component receive the json data from called url.
*
* @method handleResponse
*/
handleDataletResponse: function(e) {
this.objectDatalet.json_resultDatalet.value = e;
|
73cc8795
pina
dataset page and ...
|
280
281
282
283
284
285
286
287
288
289
290
291
|
//packageId of a give datalet
packageIdDatalet = this.objectDatalet.json_resultDatalet.value.result.package_id;
resourceId = this.objectDatalet.json_resultDatalet.value.result.id;
//url complete of download
urlDatasetDownload = this.objectDatalet.json_resultDatalet.value.result.url;
if(this.dataUrl != undefined){
//static url
lastStringResourceId = this.dataUrl.split("/")[5];
resourceId = lastStringResourceId.split('=')[1];
var urlDatalet = this.dataUrl.split("/")[0]+ "//" + this.dataUrl.split("/")[2] + "/dataset/" + packageIdDatalet +"/resource/" +resourceId;
|
035bbee3
Luigi Serra
Datalets and cont...
|
292
|
|
73cc8795
pina
dataset page and ...
|
293
294
295
|
urlDatalet = urlDatasetDownload.replace(/\/download\/.*/, '');
urlSource = this.dataUrl.split("/")[0] + "//" + this.dataUrl.split("/")[2];
|
0f6424fe
root
update new data-s...
|
296
|
this.$.base_datalet_link.setAttribute("href", urlDatalet);
|
73cc8795
pina
dataset page and ...
|
297
|
}
|
59100bec
Renato De Donato
localization + ba...
|
298
299
300
301
|
},
|
73bcce88
luigser
COMPONENTS
|
302
303
304
|
});
</script>
</dom-module>
|