base-datalet.html
2.07 KB
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
32
33
34
35
36
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
<!--
@group ROUTETOPA Base Web Component
The `base-datalet` is a base-datalet web component that has built up by using Polymer.
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 build an object
you can use to set up the structures for presentation.
### Code
Example
<base-datalet
dataUrl="http://demo.ckan.org/api/action/datastore_search?resource_id=8324a4c9-66d6-47bf-a898-94237cc39b9f&limit=50"
query="$.result.records..Supplier $.result.records..Amount">
</base-datalet>
### HTML
<base-datalet
dataUrl="http://demo.ckan.org/api/action/datastore_search?resource_id=8324a4c9-66d6-47bf-a898-94237cc39b9f&limit=50"
query="$.result.records..Supplier $.result.records..Amount">
</base-datalet>
@class base-datalet
-->
<link rel="import" href="../../bower_components/polymer/polymer.html">
<dom-module id="base-datalet">
<template>
<style>
#footer {
position: relative;
bottom: 0;
width: 100%;
font-size: small;
}
#rtpalogo{
height:30px;
width: 30px;
}
</style>
<b>Source : </b><span id="domain"></span><br><br>
<div id="footer">Powered by Route-to-PA  <a href="http://routetopa.eu/"><img src="static/images/rtpalogo.png" id="rtpalogo"></a></div><br>
</template>
<!--<script src="../shared_js/jquery-1.11.2.min.js"></script>-->
<script src="../shared_js/jsonpath-0.8.5.js"></script>
<script src="../shared_js/behaviors/BaseDataletBehaviors.js"></script>
<script src="../shared_js/behaviors/AjaxJsonDataRequestBehavior.js"></script>
<script>
BaseDatalet = Polymer({
is: 'base-datalet',
ready: function(){
this.$.domain.textContent = this.dataUrl.split("/")[0] + "//" + this.dataUrl.split("/")[2];
}
});
</script>
</dom-module>