forked from predixdesignsystem/px-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpx-vis-data-converter.html
349 lines (317 loc) · 8.96 KB
/
px-vis-data-converter.html
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<link rel="import" href="../polymer/polymer.html"/>
<link rel="import" href="px-vis-behavior-common.html" />
<!--
Converts data from array form to object form.
px-vis charts expect data in the following array of objects format:
```
[
{
x: 10,
y: 50
},{
x: 20,
y: 40
}
]
```
Keys are flexible and multiple can be added to the same object:
```
[
{
timestamp: 1413930600000,
tag1: 15,
tag2: 16,
tag3: 11
},{
timestamp: 1414080000000,
tag1: 14,
tag2: 17,
tag3: 13
}
]
```
This component accepts data in this format:
```
[{
"id":"myTagID",
"name":"My Favorite Tag",
"minValue":0,
"maxValue":293,
"data":[
[1464562720308,41],
[1464571360308,170]
]
},{
"id":"myOtherID",
"name":"My Least Favorite Tag",
"minValue":0,
"maxValue":150,
"data":[
[1464562720308,20],
[1464571360308,63]
]
}]
```
It will reformat the data into the object format and create a seriesConfig file.
##### Usage
<px-vis-data-converter
data-key = "[[dataKey]]"
id-key = "[[idKey]]"
original-data="[[originalData]]"
chart-data="{{chartData}}"
series-config="{{seriesConfig}}">
</px-vis-data-converter>
@element px-vis-data-converter
@blurb Converts data from array form to object form.
@homepage index.html
@demo demo.html
-->
<dom-module id="px-vis-data-converter">
<template>
</template>
</dom-module>
<script>
Polymer({
is: 'px-vis-data-converter',
behaviors: [
PxVisBehavior.commonMethods
],
/**
* Properties block, expose attribute values to the DOM via 'reflect'
*
* @property properties
* @type Object
*/
properties: {
/**
* The key for accessing the data array.
*
*/
dataKey: {
type: String,
value: "data"
},
/**
* The key for accessing the data id.
*
*/
idKey: {
type: String,
value: "id"
},
/**
* The key for accessing the data name.
*
*/
nameKey: {
type: String,
value: "name"
},
/**
* An optional array of data IDs matching the order of the data array.
*
*/
dataIds: {
type: Array,
value: function(){ return []; }
},
/**
* An optional array of data names matching the order of the data array.
*
*/
dataNames: {
type: Array,
value: function(){ return []; }
},
/**
* An optional name for the x-key for chartData.
*
*/
newXKey: {
type: String,
value: 'x'
},
/**
* An optional key for the x axis units for chartData.
*
*/
xUnitKey: {
type: String,
value: 'xAxisUnit'
},
/**
* An optional key for the y axis units for chartData.
*
*/
yUnitKey: {
type: String,
value: 'units'
},
/**
* A series configuration file computed from originalData.
*
*/
originalData: {
type: Array,
notify: true
},
/**
* A series configuration file computed from originalData.
*
*/
seriesConfig: {
type: Object,
notify: true,
readOnly: true,
computed: '_computeSeriesConfig(originalData.*)'
},
/**
* A series configuration file computed from originalData.
*
*/
chartData: {
type: Array,
notify: true,
readOnly: true,
computed: '_computeChartData(originalData.*)'
},
/**
* A list of the empty datasets
*
*/
emptySets: {
type: Object,
notify: true,
readOnly: true,
value: function(){ return {} }
}
},
/**
* when attached, re-fire set properties for precipitation pattern
*
* @method attached
*/
attached: function(){
if(this._doesObjHaveValues(this.seriesConfig)){
this.fire('px-vis-series-config', { 'dataVar': 'seriesConfig', 'data': this.seriesConfig, 'method':'set' });
}
if(this._doesObjHaveValues(this.chartData)){
this.fire('px-vis-chart-data', { 'dataVar': 'chartData', 'data': this.chartData, 'method':'set' });
}
},
/**
* returns the correct id for the series
*
*/
_calcId: function(d,i){
if(this.dataIds[i]){
return this.dataIds[i];
} else if(d[this.idKey]){
return d[this.idKey];
} else {
return 'y' + i;
}
},
/**
* Merges n sorted arrays into an array of objects
*
*/
_computeChartData: function() {
if(this.originalData.length > 0) {
// put in check to see if we have sorted data or not
var chartData = [],
numArrs = this.originalData.length, // how many arrays we have
indexes = Array(numArrs).fill(0), // create starting index for each
iter = 0, // how many series we have reached the end
id = Array.prototype.map.call(this.originalData,function(d,i){
// since we are iterating over the data...
if(d[this.dataKey].length === 0){
var id = this._calcId(this.originalData[i],i);
this.emptySets[id] = true;
this.fire('px-vis-data-converter-empty-data', { "id": id });
}
// add infinity to the end so we have a stop point
d[this.dataKey].push([Infinity,Infinity]);
// figure out if we should use user input ID or the series key
return this._calcId(d,i);
}.bind(this));
// keep going until we reach the end of each series
while(iter < numArrs){
var lowest = Number.MAX_VALUE, //Number.MAX_VALUE < Infinity
obj = {}, //our new merged data unit
indicies = [], //which indexes got incremented
iter = 0; //reset iter with each pass
for(var i = 0; i < numArrs; i++){
if(this.originalData[i][this.dataKey][indexes[i]][0] < lowest){
// reset obj
obj = {};
// set our lowest for reference on the next pass
lowest = this.originalData[i][this.dataKey][indexes[i]][0];
// set our obj x value
obj[this.newXKey] = lowest;
// set our obj y value
obj[id[i]] = this.originalData[i][this.dataKey][indexes[i]][1];
// track in index we are at
indicies = [i];
} else if (this.originalData[i][this.dataKey][indexes[i]][0] === lowest){
// add our y val
obj[id[i]] = this.originalData[i][this.dataKey][indexes[i]][1];
// add our index
indicies.push(i);
}
}
// add our new object to our dataset
chartData.push(obj);
// increment out indexes
for(var j = 0; j < numArrs; j++){
// increase the index for any series we merged
var k = indicies[j]
indexes[k] += 1;
// check to see we hit the end of each series, increment iter if we do
if(this.originalData[j][this.dataKey][indexes[j]][0] === Infinity){
iter += 1;
}
}
}
this.fire('px-vis-empty-sets', { 'dataVar': 'emptySets', 'data': this.emptySets, 'method':'set' });
this.fire('px-vis-chart-data', { 'dataVar': 'chartData', 'data': chartData, 'method':'set' });
return chartData;
}
// else return empty array
return [];
},
/**
* bundles info in the original dataset into a new series config
*
*/
_computeSeriesConfig: function(){
if(this.originalData.length > 0) {
var seriesConfig = {},
id,
y1,
y2;
for(var i = 0; i < this.originalData.length; i++){
id = this._calcId(this.originalData[i],i);
seriesConfig[id] = {};
seriesConfig[id]['name'] = this.dataNames[i] ? this.dataNames[i] : this.originalData[i][this.nameKey] ? this.originalData[i][this.nameKey] : id;
seriesConfig[id]['x'] = this.newXKey;
seriesConfig[id]['y'] = id;
if(this.originalData[i]['min']){
seriesConfig[id]['yMin'] = this.originalData[i]['min'];
}
if(this.originalData[i]['max']){
seriesConfig[id]['yMax'] = this.originalData[i]['max'];
}
if(this.originalData[i][this.yUnitKey]){
seriesConfig[id]['yAxisUnit'] = this.originalData[i][this.yUnitKey];
}
if(this.originalData[i][this.xUnitKey]){
seriesConfig[id]['xAxisUnit'] = this.originalData[i][this.xUnitKey];
}
}
this.fire('px-vis-series-config', { 'dataVar': 'seriesConfig', 'data': seriesConfig, 'method':'set' });
return seriesConfig;
}
}
});
</script>