Blame view

datalets/base-datalet/base-datalet.html 8.71 KB
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>

94601c1f   Renato De Donato   trevieww multitable
58
59
60
61
62
63
64
65
66
67
68
              #base_datalet_container {

                  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;

                  padding: 16px;

              }

              #base_datalet_rtp {

                  display: flex;

                  padding-top: 8px;

              }

              #rtp{

                  padding-top: 8px;

                  padding-right: 8px;

73bcce88   luigser   COMPONENTS
69
70
                  font-size: small;

              }

73bcce88   luigser   COMPONENTS
71
              #rtpalogo{

94601c1f   Renato De Donato   trevieww multitable
72
73
                  height:32px;

                  width: 32px;

73bcce88   luigser   COMPONENTS
74
              }

73cc8795   pina   dataset page and ...
75
76
77
78
79
80
81
82
              #image_spin {

                  height:32px;

                  width: 32px;

                  position: relative;

                  center: center;

                  width: 100%;

               }

  

564f0a81   pina   2 link footer
83
  

73bcce88   luigser   COMPONENTS
84
85
          </style>

  

73cc8795   pina   dataset page and ...
86
87
88
89
          <div id="base_datalet_imgWaitDatalet">

                  <img id="image_spin" src="static/images/spin.svg">

  

          </div>

94601c1f   Renato De Donato   trevieww multitable
90
          <div id="base_datalet_container">

564f0a81   pina   2 link footer
91
92
93
              <b> Source:</b><span id="domain"></span>

              <b>  </b><span id="domainPage">

          </span>

94601c1f   Renato De Donato   trevieww multitable
94
              <div id="base_datalet_rtp">

73cc8795   pina   dataset page and ...
95
96
                  <div id="rtp">Powered by ROUTE-TO-PA</div>

                  <div><a href="http://www.routetopa.eu/"><img id="rtpalogo" src="static/images/rtpalogo.png" ></a></div>

94601c1f   Renato De Donato   trevieww multitable
97
98
99
100
101
              </div>

          </div>

  

          <!--<b>Source : </b><span id="domain"></span><br><br>-->

          <!--<div id="footer">Powered by Route-to-PA&nbsp&nbsp<a href="http://routetopa.eu/"><img src="static/images/rtpalogo.png" id="rtpalogo"></a></div><br>-->

73bcce88   luigser   COMPONENTS
102
103
      </template>

  

4e7eacf4   Luigi Serra   Controllets and d...
104
105
      <script src="static/js/BaseDataletBehavior.js"></script>

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

73bcce88   luigser   COMPONENTS
106
107
108
109
  

      <script>

          BaseDatalet = Polymer({

              is: 'base-datalet',

73cc8795   pina   dataset page and ...
110
111
112
113
114
115
116
117
118
119
120
121
122
              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: {}

                  }

              },

5e6ba8af   isisadmin   datalet doc update
123
              /**

94601c1f   Renato De Donato   trevieww multitable
124
               * It is called after the element�s template has been stamped and all elements inside the element�s local

5e6ba8af   isisadmin   datalet doc update
125
126
127
               * 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 ...
128
129
130
131
               * 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
132
               * @method ready

5e6ba8af   isisadmin   datalet doc update
133
               */

73bcce88   luigser   COMPONENTS
134
              ready: function(){

73cc8795   pina   dataset page and ...
135
                  var urlDatalet;

5d6adad4   Luigi Serra   card and controll...
136
                  if(this.dataUrl != undefined){

73cc8795   pina   dataset page and ...
137
  

73cc8795   pina   dataset page and ...
138
139
140
141
142
143
144
145
146
147
148
149
                      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);

                      resultIdDatalet = params["resource_id"];

  

                      //cKan organized with or not catalog

                      queryInitial = this.dataUrl.substring(0,  this.dataUrl.indexOf("api"));

                      queryFinal = this.dataUrl.substring(this.dataUrl.indexOf("api"),  this.dataUrl.indexOf("datastore_search"));

  

                      urlDatalet = queryInitial +  queryFinal + apiIdResource + resultIdDatalet;

564f0a81   pina   2 link footer
150
                      urlSource = this.dataUrl.split("/")[0] + "//" + this.dataUrl.split("/")[2];

73cc8795   pina   dataset page and ...
151
  

564f0a81   pina   2 link footer
152
                      this.$.domainPage.innerHTML = '<a href=' + urlSource +  ' target=' + "_blank>" + urlSource + '</a>'+ "." ;

73cc8795   pina   dataset page and ...
153
                      this.requestDataletData(urlDatalet);

5d6adad4   Luigi Serra   card and controll...
154
                  }

035bbee3   Luigi Serra   Datalets and cont...
155
156
157
158
159
160
              },

              /**

               * Set the domain url to show in the footer

               */

              setDomain: function(url){

                  this.$.domain.textContent = url;

73cc8795   pina   dataset page and ...
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
              },

              /**

               * 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;

  

                  //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...
211
  

73cc8795   pina   dataset page and ...
212
213
214
215
  

                      urlDatalet = urlDatasetDownload.replace(/\/download\/.*/, '');

                      urlSource =  this.dataUrl.split("/")[0] + "//" + this.dataUrl.split("/")[2];

  

73cc8795   pina   dataset page and ...
216
  

564f0a81   pina   2 link footer
217
218
                      this.$.domainPage.innerHTML += " (" + ' <a href=' + urlDatalet +  ' target=' + "_blank>" + "Dataset's page" + '</a>' + " )";

  

73cc8795   pina   dataset page and ...
219
                  }

73bcce88   luigser   COMPONENTS
220
221
222
223
              }

          });

      </script>

  </dom-module>