Blame view

datalets/datatable-datalet/datatable-datalet.html 4.24 KB
73bcce88   luigser   COMPONENTS
1
  <!--

5e6ba8af   isisadmin   datalet doc update
2
3
  @license

      The MIT License (MIT)

73bcce88   luigser   COMPONENTS
4
  

5e6ba8af   isisadmin   datalet doc update
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
      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.

  -->

ae17a8dc   Luigi Serra   Controllet and da...
25
26
27
28
29
30
31
32
  <!--

  * Created by :

  * Luigi Serra - luigser@gmail.com

  * Andrea Petta - andrpet@gmail.com

  *

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

  *

  -->

5e6ba8af   isisadmin   datalet doc update
33
34
35
36
37
  

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

  

  <!--

  The `datatable-datalet` is a porting of Datatables JQuery library in a web component that has built up by using Polymer.

73bcce88   luigser   COMPONENTS
38
39
40
  Pass to this component a data url(CKAN api uri) and a string with one or multiple query in JsonPath format(separated by spaces) and it'll show a

  table with data and query attributes with all Datatables library features.

  

5e6ba8af   isisadmin   datalet doc update
41
  Example:

73bcce88   luigser   COMPONENTS
42
  

5e6ba8af   isisadmin   datalet doc update
43
44
45
      <datatable-datalet

          data-url="http://ckan.routetopa.eu/api/action/datastore_search?resource_id=#"

          fields='["field1","field2"]'>

73bcce88   luigser   COMPONENTS
46
47
      </datatables-datalet>

  

5e6ba8af   isisadmin   datalet doc update
48
49
50
51
  @element datatable-datalet

  @status v0.1

  @demo demo/index.html

  @group datalets

73bcce88   luigser   COMPONENTS
52
  -->

73bcce88   luigser   COMPONENTS
53
54
55
  

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

      <template>

a1f0799c   isisadmin   datalet global re...
56
          <link rel="stylesheet" href="js/DataTables-master/media/css/jquery.dataTables.min.css">

73bcce88   luigser   COMPONENTS
57
58
59
  

          <table id="datatable" class="table table-striped table-bordered" cellspacing="0" style="height: auto; width: auto;">

          </table>

a1f0799c   isisadmin   datalet global re...
60
          <base-ajax-json-jsonpath-datalet data-url="{{dataUrl}}" fields="{{fields}}"></base-ajax-json-jsonpath-datalet>

73bcce88   luigser   COMPONENTS
61
62
63
      </template>

  

      <script src="js/DataTables-master/media/js/jquery.dataTables.js"></script>

73bcce88   luigser   COMPONENTS
64
65
66
  

      <script>

          var DatatableBehavior = {

73bcce88   luigser   COMPONENTS
67
  

5bc002a2   isisadmin   datalet refactoring
68
              presentData: function(){

a1f0799c   isisadmin   datalet global re...
69
                  if(!this.data || this.data == undefined) return;

73bcce88   luigser   COMPONENTS
70
71
72
                  html = "";

                  html += '<thead>'+

                             '<tr>';

a1f0799c   isisadmin   datalet global re...
73
74
                  for(var x = 0; x<this.data.length; x++){

                     html += '<th>' + this.data[x].name + '</th>';

73bcce88   luigser   COMPONENTS
75
76
77
78
79
                  }

                  html +=  '</tr>' +

                           '</thead>' +

                           '<tfoot>' +

                           '<tr>';

a1f0799c   isisadmin   datalet global re...
80
81
                  for(var x = 0; x<this.data.length; x++){

                      html += '<th>' + this.data[x].name + '</th>';

73bcce88   luigser   COMPONENTS
82
83
84
85
                  }

                  html += '</tr>' +

                          '</tfoot>' +

                          '<tbody>';

a1f0799c   isisadmin   datalet global re...
86
                  for(var i = 0; i<this.data[0].data.length; i++){

73bcce88   luigser   COMPONENTS
87
                      html += '<tr>';

a1f0799c   isisadmin   datalet global re...
88
89
                      for(var x = 0; x<this.data.length; x++){

                        html += '<td>' + this.data[x].data[i] + '</td>';

73bcce88   luigser   COMPONENTS
90
91
92
93
94
95
96
97
98
99
100
101
102
                      }

                      html += '</tr>';

                  }

                  html += '</tbody>';

  

                  $(this._component.$.datatable).append(html);

                  $(this._component.$.datatable).DataTable();

              }

          };

  

          Polymer({

              is : 'datatable-datalet' ,

              ready: function(){

a1f0799c   isisadmin   datalet global re...
103
                  var DatatableComponentBehavior =  $.extend(true, {}, BaseDataletBehavior, WorkcycleBehavior, AjaxJsonJsonPathBehavior, DatatableBehavior);

73bcce88   luigser   COMPONENTS
104
105
106
107
108
109
110
                  DatatableComponentBehavior.init(this);

              }

  

          });

      </script>

  </dom-module>