Blame view

datalets/datatable-datalet/datatable-datalet.html 4.06 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
25
26
27
28
29
      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.

  -->

  

  <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
30
31
32
  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
33
  Example:

73bcce88   luigser   COMPONENTS
34
  

5e6ba8af   isisadmin   datalet doc update
35
36
37
      <datatable-datalet

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

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

73bcce88   luigser   COMPONENTS
38
39
      </datatables-datalet>

  

5e6ba8af   isisadmin   datalet doc update
40
41
42
43
  @element datatable-datalet

  @status v0.1

  @demo demo/index.html

  @group datalets

73bcce88   luigser   COMPONENTS
44
  -->

73bcce88   luigser   COMPONENTS
45
46
47
  

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

      <template>

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

73bcce88   luigser   COMPONENTS
49
50
51
  

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

          </table>

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

73bcce88   luigser   COMPONENTS
53
54
55
      </template>

  

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

73bcce88   luigser   COMPONENTS
56
57
58
  

      <script>

          var DatatableBehavior = {

73bcce88   luigser   COMPONENTS
59
  

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

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

73bcce88   luigser   COMPONENTS
62
63
64
                  html = "";

                  html += '<thead>'+

                             '<tr>';

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

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

73bcce88   luigser   COMPONENTS
67
68
69
70
71
                  }

                  html +=  '</tr>' +

                           '</thead>' +

                           '<tfoot>' +

                           '<tr>';

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

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

73bcce88   luigser   COMPONENTS
74
75
76
77
                  }

                  html += '</tr>' +

                          '</tfoot>' +

                          '<tbody>';

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

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

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

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

73bcce88   luigser   COMPONENTS
82
83
84
85
86
87
88
89
90
91
92
93
94
                      }

                      html += '</tr>';

                  }

                  html += '</tbody>';

  

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

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

              }

          };

  

          Polymer({

              is : 'datatable-datalet' ,

              ready: function(){

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

73bcce88   luigser   COMPONENTS
96
97
98
99
100
101
102
                  DatatableComponentBehavior.init(this);

              }

  

          });

      </script>

  </dom-module>