-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
457 lines (375 loc) · 16.5 KB
/
index.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<style>body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:#555;font-family:sans-serif}
small{font-weight:400;display:block;font-size:14px}
code{background-color:#d3d3d3;border-radius:3px;font-family:monospace;padding:0 .5em}
.icon.-facebook:before,.icon.-linkedin:before,.icon.-pinterest:before,.icon.-twitter:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:Post-Creator-Icons;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none}
@font-face{font-family:Post-Creator-Icons;src:url(fonts/Post-Creator-Icons.eot);src:url(fonts/Post-Creator-Icons.eot?#iefix) format('embedded-opentype'),url(fonts/Post-Creator-Icons.woff) format('woff'),url(fonts/Post-Creator-Icons.ttf) format('truetype'),url(fonts/Post-Creator-Icons.svg#Post-Creator-Icons) format('svg');font-weight:400;font-style:normal}
.icon.-facebook:before{content:"\e001"}
.icon.-linkedin:before{content:"\e002"}
.icon.-pinterest:before{content:"\e003"}
.icon.-twitter:before{content:"\e004"}
.social-icons h4{display:inline-block;margin:20px 10px 0 0}
.social-icons .icon{display:inline-block;margin:0 5px}
body.modal-open{overflow:hidden}
.jsoneditor table,.jsoneditor td,.jsoneditor td.tree,.jsoneditor tr{border:none;margin:0}</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.1/css/selectize.default.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jsoneditor/4.2.0/jsoneditor.min.css"/>
<div class="container-fluid">
<div class="row">
<div class="col-sm-10">
<input type="text" id="variable-selector">
</div>
<div class="col-sm-2">
<button class="btn btn-default pull-right" type="submit" id="settings-button">Settings</button>
</div>
</div>
<div class="row">
<div class="collapse col-xs-12" id="settings-collapse">
<div class="panel panel-default" style="margin-top: 20px">
<div class="panel-heading"><h3 class="panel-title">Adjust chart settings</h3></div>
<div class="panel-body">
<div class="row">
<div id="jsoneditor" class="col-md-12" style="height: 350px"></div>
</div>
<div class="row" style="margin-top: 10px">
<div class="col-sm-4">
<button type="button" class="btn btn-primary" id="save-settings">
Apply changes
</button>
</div>
<div class="col-sm-8 text-right ">
<form class="form-inline">
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" id="options-input"
placeholder="settings" style="text-align: right">
<div class="input-group-addon"><strong>.json</strong></div>
</div>
</div>
<button type="submit" class="btn btn-primary" id="options-button">Save</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div id="chart-container" style="min-width: 310px;"></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.18/require.min.js"></script>
<script>(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
//findIndex polyfill
if (!Array.prototype.findIndex) {
Array.prototype.findIndex = function(predicate) {
if (this == null) {
throw new TypeError('Array.prototype.findIndex called on null or undefined');
}
if (typeof predicate !== 'function') {
throw new TypeError('predicate must be a function');
}
var list = Object(this);
var length = list.length >>> 0;
var thisArg = arguments[1];
var value;
for (var i = 0; i < length; i++) {
value = list[i];
if (predicate.call(thisArg, value, i, list)) {
return i;
}
}
return -1;
};
}
if (!Array.prototype.filter) {
Array.prototype.filter = function(fun/*, thisArg*/) {
'use strict';
if (this === void 0 || this === null) {
throw new TypeError();
}
var t = Object(this);
var len = t.length >>> 0;
if (typeof fun !== 'function') {
throw new TypeError();
}
var res = [];
var thisArg = arguments.length >= 2 ? arguments[1] : void 0;
for (var i = 0; i < len; i++) {
if (i in t) {
var val = t[i];
// NOTE: Technically this should Object.defineProperty at
// the next index, as push can be affected by
// properties on Object.prototype and Array.prototype.
// But that method's new, and collisions should be
// rare, so use the more-compatible alternative.
if (fun.call(thisArg, val, i, t)) {
res.push(val);
}
}
}
return res;
};
}
function guid() {
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
s4() + '-' + s4() + s4() + s4();
}
Array.prototype.equals = function (array) {
// if the other array is a false value, return
if (!array)
return false;
// compare lengths - can save a lot of time
if (this.length != array.length)
return false;
for (var i = 0, l = this.length; i < l; i++) {
// Check if we have nested arrays
if (this[i] instanceof Array && array[i] instanceof Array) {
// recurse into the nested arrays
if (!this[i].equals(array[i]))
return false;
}
else if (this[i] != array[i]) {
// Warning - two different object instances will never be equal: {x:20} != {x:20}
return false;
}
}
return true;
};
},{}]},{},[1]);
</script>
<script>(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
requirejs.config({
"paths": {
"highstock": "https://cdnjs.cloudflare.com/ajax/libs/highstock/2.1.5/highstock",
"export": "https://cdnjs.cloudflare.com/ajax/libs/highstock/2.1.5/modules/exporting",
"more": "https://cdnjs.cloudflare.com/ajax/libs/highstock/2.1.7/highcharts-more",
"jsoneditor": "https://cdnjs.cloudflare.com/ajax/libs/jsoneditor/4.2.0/jsoneditor.min",
"selectize": "https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.1/js/standalone/selectize.min",
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min"
},
"shim": {
"export": ["highstock"],
"more": ["highstock"]
}
});
//Define jquery here to use the pre-loaded version
define('jquery', [], function() {
return jQuery;
});
},{}]},{},[1]);
</script>
<script>(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
//Count the number of charts on the page
if (window.counter == undefined) {
window.counter = 0;
} else {
window.counter++;
}
requirejs([
'jquery',
'selectize',
'jsoneditor',
'highstock',
'export',
'more'
], function ($, selectize, JSONEditor) {
function guid() {
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
s4() + '-' + s4() + s4() + s4();
}
var id = guid();
plot(id);
function plot(id) {
var series = [
{data: [1, 2, 4, 9], name: "temperature 1", display: true, color: '#2b908f'},
{data: [9, 4, 2, 1], name: "temperature 2", display: true},
{data: [0, 3, 5, 6], name: "temperature 3", display: false}
];
var series = [{"data": [[1, 2, 3], [2, 3, 4], [3, 4, 5]], "display": true}]
var options = {};
var options = {"scale": 2, "chart": {"type": "line"}, "tooltip": {"formatter": function() { return this.series.name + '<br/>' + this.point.y }}, "height": 400, "width": "auto", "type": "line"}
var useHighStock = false;
var useHighStock = false
var save = 'app/chart.svg';
var save = false
var url = 'http://127.0.0.1:65079';
var url = "http://127.0.0.1:54420/"
var settingsFile = 'settings';
var settingsFile = "settings"
var scale = options.scale;
//Create different containers for the charts
var chartContainer = document.getElementById("chart-container");
chartContainer.id = "chart-container" + id;
chartContainer.style.height = options.height.toString() + 'px';
if (options.width != 'auto') {
chartContainer.style.width = options.width.toString() + 'px';
}
var selector = $("#variable-selector");
selector.attr('id', "variable-selector" + id);
var settings = $("#settings-collapse");
settings.attr('id', "settings-collapse" + id);
var button = $("#settings-button");
button.attr('id', "settings-button" + id);
var saveButton = $("#save-settings");
saveButton.attr('id', "save-settings" + id);
var optionsInput = $("#options-input");
optionsInput.attr('id', "options-input" + id);
optionsInput.val(settingsFile);
var optionsButton = $("#options-button");
optionsButton.attr('id', "options-button" + id);
// create the editor
var editorContainer = document.getElementById("jsoneditor");
editorContainer.id = "jsoneditor" + id;
var editor = new JSONEditor(editorContainer);
button.on('click', showSettings);
saveButton.on('click', applyOptions);
optionsButton.on('click', saveOptions);
function applyOptions() {
var newOptions = editor.get();
setOptions(newOptions);
settings.collapse('hide');
}
function saveOptions(event) {
event.preventDefault();
applyOptions();
var options = chart.options;
delete options.exporting;
var name = optionsInput.val() ? optionsInput.val() + '.json' : 'settings.json';
options['settingsFile'] = name;
$.ajax({
type: "POST",
url: url,
data: JSON.stringify({
options: options,
name: name
})
});
}
function showSettings() {
settings.collapse('toggle');
}
//Choose a chart type
var ChartType = useHighStock ? Highcharts.StockChart : Highcharts.Chart;
//Default highchart colors
var colors = ['#7cb5ec', '#434348', '#90ed7d', '#f7a35c', '#8085e9',
'#f15c80', '#e4d354', '#2b908f', '#f45b5b', '#91e8e1'];
series.map(function (serie, index) {
if (!serie.color) {
serie['color'] = colors[index % 10];
}
return serie;
});
//Get all the keys
var keys = [];
var initialKeys = [];
$.each(series, function (index, serie) {
keys.push({
display: serie.display,
value: serie.name,
text: serie.name
});
if (serie.display) {
initialKeys.push(serie.name)
}
});
selector.selectize({
plugins: ['remove_button', 'restore_on_backspace'],
delimiter: ',',
options: keys,
items: initialKeys,
onItemAdd: function (key) {
console.log('series added');
addSeries(key);
newChart(chart.options, renderedSeries);
},
onItemRemove: function (key) {
console.log('series removed');
deleteSeries(key);
newChart(chart.options, renderedSeries);
}
});
//Set initial chart options
var chartOptions;
if (typeof options.chart === "undefined") {
chartOptions = {renderTo: chartContainer.id};
} else {
chartOptions = $.extend(options["chart"], {renderTo: chartContainer.id});
}
//Initial rendered series
var renderedSeries = [];
options = $.extend(options, {chart: chartOptions}, {series: renderedSeries});
var chart = new ChartType(options);
$.each(initialKeys, function (index, key) {
addSeries(key);
});
newChart(chart.options, renderedSeries);
editor.set(chart.options);
if (save) {
saveSVG(url, save)
}
function setOptions(options) {
//Prevent export from breaking
delete options.exporting;
options['exporting'] = {scale: options.scale};
chartContainer.style.height = options.height.toString() + 'px';
if (options.width != 'auto') {
chartContainer.style.width = options.width.toString() + 'px';
}
newChart(options, renderedSeries);
}
function findSeries(series, key) {
return series.findIndex(function (obj) {
return obj.name == key;
})
}
function newChart(options, series) {
//Disable animation
var newOptions = $.extend(options, {series: series});
newOptions.plotOptions['series'] = {animation: false};
//Get zoom
var xExtremes = chart.xAxis[0].getExtremes();
//Re-plot the chart
chart.destroy();
chart = new ChartType(newOptions);
//Reset the zoom
chart.xAxis[0].setExtremes(xExtremes.min, xExtremes.max, false, false);
//Re-draw chart
chart.redraw();
}
function addSeries(key) {
var index = findSeries(series, key);
var newSeries = series[index];
renderedSeries.push(newSeries)
}
function deleteSeries(key) {
var index = findSeries(renderedSeries, key);
renderedSeries.splice(index, 1)
}
function saveSVG(url, name) {
$.ajax({
type: "POST",
url: url,
data: JSON.stringify({
svg: chart.getSVG(),
name: name
})
});
}
console.log('loaded!', Date());
}
});
},{}]},{},[1]);
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"/>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>