0af843be
Renato De Donato
filters + alasql
|
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
|
/*
@license
The MIT License (MIT)
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.
*/
/**
* Developed by :
* ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu
*
*/
var AjaxJsonAlasqlBehavior = {
properties: {
/**
* It contains the json data from async xhr call returned from core-ajax core component
*
* @attribute json_results
* @type object
* @default 'null'.
*/
json_results: {
type: Object,
value: {}
}
|
98d9d8a5
Renato De Donato
filters+groupby
|
48
|
|
0af843be
Renato De Donato
filters + alasql
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
},
/**
* Make an AJAX call to the dataset URL
*
* @method requestData
*/
requestData: function(){
var comp = this;
$.ajax({
url: this._component.dataUrl,
dataType: "json",
success: function(e){
comp.handleResponse(e);
}
});
},
/**
* Called when core-ajax component receive the json data from called url.
*
* @method handleResponse
*/
handleResponse: function(e) {
this.properties.json_results.value = e;
this.runWorkcycle();
},
|
0af843be
Renato De Donato
filters + alasql
|
78
79
|
/**
|
413bc541
Renato De Donato
data cache
|
80
|
* selectData built a ALASQL query based on the user selected fields then extract data from the JSON response.
|
0af843be
Renato De Donato
filters + alasql
|
81
82
83
84
85
|
* This method built an objects <name, data> for every user selected field and push it into the data array.
*
* @method selectData
*/
selectData : function() {
|
89558a41
Renato De Donato
datatype, provide...
|
86
|
var fields = this._component.fields = JSON.parse(this._component.fields);
|
0af843be
Renato De Donato
filters + alasql
|
87
|
|
0f4f5f1b
Renato De Donato
new datalets mult...
|
88
89
|
//var selectedFields = JSON.parse(this._component.getAttribute("selectedFields"));
|
98d9d8a5
Renato De Donato
filters+groupby
|
90
91
92
93
|
var filters = JSON.parse(this._component.getAttribute("filters"));
var aggregators = JSON.parse(this._component.getAttribute("aggregators"));
var orders = JSON.parse(this._component.getAttribute("orders"));
|
0f4f5f1b
Renato De Donato
new datalets mult...
|
94
|
//preview my space ?
|
0dafdf4f
Renato De Donato
my space bug fix
|
95
|
if(filters && filters[0] && filters[0].constructor == Array){
|
9fb4369c
Renato De Donato
my space on add p...
|
96
97
98
99
100
|
filters = filters[0];
aggregators = aggregators[0];
orders = orders[0];
}
|
89558a41
Renato De Donato
datatype, provide...
|
101
102
103
|
var f = Object.create(providerFactory);
var provider = f.getProvider(this._component.dataUrl);
var data = provider.selectData(this.properties.json_results.value);
|
0314f487
Renato De Donato
filters opendatasoft
|
104
|
|
0f4f5f1b
Renato De Donato
new datalets mult...
|
105
106
107
108
109
110
111
112
113
114
115
|
//if(selectedFields) {
// fields = [];
// var inputs = [];
// for (var i=0; i < selectedFields.length; i++) {
// if (selectedFields[i]) {
// fields.push(selectedFields[i].field);
// inputs.push(selectedFields[i].input);
// }
// }
//}
|
89558a41
Renato De Donato
datatype, provide...
|
116
|
var converter = new DataTypeConverter();
|
166db682
Renato De Donato
converter 3 times :(
|
117
|
|
89558a41
Renato De Donato
datatype, provide...
|
118
119
120
|
var result = converter.inferJsonDataType(data, ["*"]);
result = converter.cast(result);
data = result.dataset;
|
68ee970d
Renato De Donato
jsdatachecker
|
121
|
|
0f4f5f1b
Renato De Donato
new datalets mult...
|
122
123
124
125
126
127
|
data = alasql_selectData(data, fields, filters);//funziona senza?
result = converter.inferJsonDataType(data, ["*"]);
result = converter.cast(result);
data = result.dataset;
|
e136d5a6
Renato De Donato
filter bug fix
|
128
|
data = alasql_complexSelectData(data, fields, [], aggregators, orders);
|
0314f487
Renato De Donato
filters opendatasoft
|
129
|
|
166db682
Renato De Donato
converter 3 times :(
|
130
131
132
133
|
result = converter.inferJsonDataType(data, ["*"]);
result = converter.cast(result);
data = result.dataset;
|
89558a41
Renato De Donato
datatype, provide...
|
134
|
this.data = transformData(data, fields, true);
|
98d9d8a5
Renato De Donato
filters+groupby
|
135
136
|
this._deleteWaitImage();
|
0af843be
Renato De Donato
filters + alasql
|
137
138
|
},
|
0af843be
Renato De Donato
filters + alasql
|
139
140
141
|
/**
* Delete a image after loading a datalet
*/
|
98d9d8a5
Renato De Donato
filters+groupby
|
142
|
_deleteWaitImage : function() {
|
0af843be
Renato De Donato
filters + alasql
|
143
144
|
$("img[src$='spin.svg']").remove();
}
|
98d9d8a5
Renato De Donato
filters+groupby
|
145
|
|
0af843be
Renato De Donato
filters + alasql
|
146
|
};
|