mirror of
https://gitlab.silvrtree.co.uk/martind2000/mdot_server.git
synced 2025-01-26 20:26:17 +00:00
new graph
This commit is contained in:
parent
a77d458eac
commit
3afe833595
397
app/js/mdot.js
397
app/js/mdot.js
@ -3,7 +3,6 @@
|
||||
/* global mainview */
|
||||
/* jshint browser: true , devel: true*/
|
||||
|
||||
|
||||
(function($) {
|
||||
|
||||
var mqttConfig = {
|
||||
@ -25,27 +24,26 @@
|
||||
var EventsModel = Backbone.Model.extend({
|
||||
initialize: function() {
|
||||
_.bindAll(this, 'processAdded');
|
||||
this.on('all',function(d) {
|
||||
console.log('model:all',d);
|
||||
this.temporal = {low: 0,high: 0};
|
||||
this.on('all', function(d) {
|
||||
console.log('model:all', d);
|
||||
this.temporal = {low: 0, high: 0};
|
||||
});
|
||||
this.on('remove', function(){
|
||||
this.on('remove', function() {
|
||||
$('#output').empty();
|
||||
});
|
||||
|
||||
this.on('add',function() {
|
||||
this.on('add', function() {
|
||||
this.processAdded();
|
||||
});
|
||||
|
||||
},
|
||||
processAdded: function() {
|
||||
}, processAdded: function() {
|
||||
console.log('Model:ProcessAdded');
|
||||
|
||||
var tempCollection = new Backbone.Collection();
|
||||
|
||||
_.invoke(DeviceCollection.toArray(), 'destroy');
|
||||
|
||||
this.temporal = {low: 0,high: 0};
|
||||
this.temporal = {low: 0, high: 0};
|
||||
|
||||
_(this.get('events')).each(function(i) {
|
||||
if (this.temporal.low === 0 || this.temporal.low > i.timestamp) {
|
||||
@ -56,7 +54,14 @@
|
||||
this.temporal.high = i.timestamp;
|
||||
}
|
||||
|
||||
tempCollection.add({dt: i.timestamp,lux: i.lux, temp: i.temp, co2: i.co2, humid: i.humidity, noise: i.sound});
|
||||
tempCollection.add({
|
||||
dt: i.timestamp,
|
||||
lux: i.lux,
|
||||
temp: i.temp,
|
||||
co2: i.co2,
|
||||
humid: i.humidity,
|
||||
noise: i.sound
|
||||
});
|
||||
}, this);
|
||||
|
||||
DeviceCollection.temporal = this.temporal;
|
||||
@ -64,26 +69,33 @@
|
||||
DeviceCollection.models = tempCollection.models;
|
||||
DeviceCollection.trigger('update');
|
||||
console.log('temporal:', this.temporal);
|
||||
},
|
||||
decoder: function(data) {
|
||||
}, decoder: function(data) {
|
||||
var _obj = {};
|
||||
var _data = window.atob(data).split('');
|
||||
|
||||
var bytes = _data.map(i => i.charCodeAt());
|
||||
|
||||
_obj.light = parseInt('0x' + ('0' + bytes[0]).substr(-2) + ('0' + bytes[1]).substr(-2));
|
||||
_obj.co2 = parseInt(_data[2] + _data[3] + _data[4] + _data[5] + _data[6], 10);
|
||||
_obj.temp = (parseInt(_data[7] + _data[8] + _data[9] + _data[10] + _data[11], 10) - 1000) / 10;
|
||||
_obj.humid = (parseInt(_data[12] + _data[13] + _data[14] + _data[15] + _data[16], 10) / 10);
|
||||
_obj.noise = parseInt('0x' + ('0' + bytes[17]).substr(-2) + ('0' + bytes[18]).substr(-2));
|
||||
_obj.light = parseInt('0x' + ('0' + bytes[0]).substr(-2) + ('0' + bytes[1]).substr(
|
||||
-2));
|
||||
_obj.co2 = parseInt(_data[2] + _data[3] + _data[4] + _data[5] + _data[6],
|
||||
10);
|
||||
_obj.temp = (parseInt(_data[7] + _data[8] + _data[9] + _data[10] + _data[11],
|
||||
10) - 1000) / 10;
|
||||
_obj.humid = (parseInt(_data[12] + _data[13] + _data[14] + _data[15] + _data[16],
|
||||
10) / 10);
|
||||
_obj.noise = parseInt('0x' + ('0' + bytes[17]).substr(-2) + ('0' + bytes[18]).substr(
|
||||
-2));
|
||||
_obj.binData = bytes;
|
||||
return _obj;
|
||||
},
|
||||
dateTime: function($date) {
|
||||
}, dateTime: function($date) {
|
||||
var dateTime = new Date.create($date);
|
||||
var date = dateTime.format('{yyyy}-{MM}-{dd}');
|
||||
var time = dateTime.format('{HH}:{mm}:{ss}');
|
||||
return {dateTime: dateTime.format('{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}'), date: date, time: time};
|
||||
return {
|
||||
dateTime: dateTime.format('{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}'),
|
||||
date: date,
|
||||
time: time
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
@ -114,8 +126,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
var MDOT = Backbone.View.extend({
|
||||
model: EventsModel, el: $('#output'),
|
||||
|
||||
@ -125,9 +135,9 @@
|
||||
_.bindAll(this, 'render', 'refresh', 'update');
|
||||
this.collection.bind('change reset add remove', this.render, this);
|
||||
|
||||
//this.template = _.template($('#list-template').html());
|
||||
//This.template = _.template($('#list-template').html());
|
||||
this.template = _.template($('#loaded-template').html());
|
||||
//this.render();
|
||||
//This.render();
|
||||
}, refresh: function() {
|
||||
|
||||
}, update: function() {
|
||||
@ -144,63 +154,56 @@
|
||||
var that = this;
|
||||
that.$el.append(this.template);
|
||||
|
||||
/* var that = this;
|
||||
this.$el.empty();
|
||||
this.collection.each(function(model) {
|
||||
var events = model.get('events');
|
||||
var e = new ItemView({model: model.toJSON()}).render().el;
|
||||
/* Var that = this;
|
||||
this.$el.empty();
|
||||
this.collection.each(function(model) {
|
||||
var events = model.get('events');
|
||||
var e = new ItemView({model: model.toJSON()}).render().el;
|
||||
|
||||
console.log('render:done:');
|
||||
that.$el.append(e);
|
||||
console.log('render:done:');
|
||||
that.$el.append(e);
|
||||
|
||||
});
|
||||
console.log('bah');*/
|
||||
});
|
||||
console.log('bah');*/
|
||||
return this;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
var MainModel = Backbone.Model.extend({});
|
||||
|
||||
var MainView = Backbone.View.extend({
|
||||
el: $('#main'),
|
||||
template: _.template($('#main-template').html()),
|
||||
events: {
|
||||
'change select#device': 'changeDevice',
|
||||
'click button#refresh': 'updateDevice',
|
||||
'change input#from': 'changeDate',
|
||||
'change input#to': 'changeDate',
|
||||
submit: function(event) {}
|
||||
el: $('#main'), template: _.template($('#main-template').html()), events: {
|
||||
'change select#device': 'changeDevice',
|
||||
'click button#refresh': 'updateDevice',
|
||||
'change input#from': 'changeDate',
|
||||
'change input#to': 'changeDate',
|
||||
submit: function(event) {}
|
||||
|
||||
},
|
||||
initialize: function() {
|
||||
_.bindAll(this, 'render','changeDevice', 'updateDevice');
|
||||
}, initialize: function() {
|
||||
_.bindAll(this, 'render', 'changeDevice', 'updateDevice');
|
||||
|
||||
this.model.on('change',this.updateDevice);
|
||||
console.log('MainView:', this);
|
||||
this.render();
|
||||
},
|
||||
render: function() {
|
||||
this.model.on('change', this.updateDevice);
|
||||
console.log('MainView:', this);
|
||||
this.render();
|
||||
}, render: function() {
|
||||
$(this.el).html(this.template());
|
||||
return this;
|
||||
},changeDate: function(elm) {
|
||||
console.log('ChangeDate', elm);
|
||||
}, changeDate: function(elm) {
|
||||
console.log('ChangeDate', elm);
|
||||
|
||||
if (elm.currentTarget.valueAsDate === null) {
|
||||
this.model.unset(elm.currentTarget.id);
|
||||
} else {
|
||||
this.model.set(elm.currentTarget.id, elm.currentTarget.valueAsDate);
|
||||
}
|
||||
if (elm.currentTarget.valueAsDate === null) {
|
||||
this.model.unset(elm.currentTarget.id);
|
||||
} else {
|
||||
this.model.set(elm.currentTarget.id, elm.currentTarget.valueAsDate);
|
||||
}
|
||||
|
||||
},
|
||||
changeDevice: function() {
|
||||
}, changeDevice: function() {
|
||||
var newDevice;
|
||||
console.log('MainView:ChangeDevice');
|
||||
newDevice = this.$el.find('#device')[0].value;
|
||||
|
||||
this.model.set('device', newDevice);
|
||||
},
|
||||
updateDevice: function() {
|
||||
}, updateDevice: function() {
|
||||
var fetchObj = {beforeSend: sendAuthentication};
|
||||
var rangeObj = {start: null, end: null};
|
||||
console.log('MainView:Updatedevice');
|
||||
@ -213,9 +216,10 @@
|
||||
// FetchObj.data = $.param({key:'"'+ this.model.get('device') + '"'});
|
||||
// this.collection.url = 'https://qz0da4.internetofthings.ibmcloud.com/api/v0002/historian/types/mDot/devices/' + this.model.get('device');
|
||||
// this.collection.url = '/api/mdot/' + this.model.get('device');
|
||||
this.collection.url = '/apiv2/mdot/' + this.model.get('device');
|
||||
this.collection.url = '/apiv2/mdot/' + this.model.get('device');
|
||||
// this.collection.url = 'http://127.0.0.1:5984/mdot/_design/getDevice/_view/getDevice';
|
||||
|
||||
$('#output').empty();
|
||||
this.collection.fetch(fetchObj);
|
||||
} else {
|
||||
console.error('Nothing to get!');
|
||||
@ -229,32 +233,31 @@
|
||||
el: $('#graph'),
|
||||
template: _.template($('#AMChart-template').html()),
|
||||
initialize: function() {
|
||||
this.modes = ['','lux','temp','co2','humid','noise'];
|
||||
this.mode = 0;
|
||||
this.modes = ['', 'lux', 'temp', 'co2', 'humid', 'noise'];
|
||||
this.mode = 0;
|
||||
|
||||
// Config AMChart
|
||||
this.chart = new AmCharts.AmStockChart();
|
||||
this.categoryAxesSettings = new AmCharts.CategoryAxesSettings();
|
||||
this.dataSet = new AmCharts.DataSet();
|
||||
// Config AMChart
|
||||
this.chart = new AmCharts.AmStockChart();
|
||||
this.categoryAxesSettings = new AmCharts.CategoryAxesSettings();
|
||||
this.dataSet = new AmCharts.DataSet();
|
||||
|
||||
console.log('GraphView!');
|
||||
_.bindAll(this, 'render', 'changeMode', 'updateGraph','setupChart');
|
||||
this.collection.on('update',function(d) {
|
||||
if (this.mode > 0) {
|
||||
this.updateGraph();
|
||||
}
|
||||
}, this);
|
||||
console.log('GraphView!');
|
||||
_.bindAll(this, 'render', 'changeMode', 'updateGraph', 'setupChart');
|
||||
this.collection.on('update', function(d) {
|
||||
if (this.mode > 0) {
|
||||
this.updateGraph();
|
||||
}
|
||||
}, this);
|
||||
|
||||
this.render();
|
||||
// This.setupChart();
|
||||
},
|
||||
this.render();
|
||||
// This.setupChart();
|
||||
},
|
||||
events: {
|
||||
'change select#displaymode': 'changeMode'
|
||||
},
|
||||
'change select#displaymode': 'changeMode'
|
||||
},
|
||||
render: function() {
|
||||
$(this.el).html(this.template());
|
||||
|
||||
|
||||
return this;
|
||||
},
|
||||
setupChart: function() {
|
||||
@ -270,119 +273,164 @@
|
||||
},
|
||||
|
||||
changeMode: function() {
|
||||
this.mode = this.$el.find('#displaymode')[0].value;
|
||||
this.updateGraph();
|
||||
console.log('new mode:', this.mode);
|
||||
this.mode = this.$el.find('#displaymode')[0].value;
|
||||
this.updateGraph();
|
||||
console.log('new mode:', this.mode);
|
||||
|
||||
},
|
||||
},
|
||||
updateGraph: function() {
|
||||
var self = this;
|
||||
let getMode = this.modes[this.mode];
|
||||
var self = this;
|
||||
let getMode = this.modes[this.mode];
|
||||
|
||||
var chartData = [];
|
||||
var chartData = [];
|
||||
|
||||
var temporal = {high:0, low:0};
|
||||
var HL = {high:0,low:0};
|
||||
var temporal = {high: 0, low: 0};
|
||||
var HL = {high: 0, low: 0};
|
||||
|
||||
_(this.collection.models).each(function(i) {
|
||||
var dt = i.get('dt');
|
||||
var value = i.get(getMode);
|
||||
if (temporal.low === 0 || dt < temporal.low) {
|
||||
temporal.low = dt;
|
||||
}
|
||||
if (temporal.high === 0 || dt > temporal.high) {
|
||||
temporal.high = dt;
|
||||
}
|
||||
var mode = parseInt(this.mode);
|
||||
console.log('mode:', mode, this.mode);
|
||||
debugger;
|
||||
_(this.collection.models).each(function(i) {
|
||||
var dt = i.get('dt');
|
||||
var obj;
|
||||
var value, valueB;
|
||||
if (mode < 6) {
|
||||
value = i.get(getMode);
|
||||
} else {
|
||||
if (mode === 6) {
|
||||
value = i.get(this.modes[1]);
|
||||
valueB = i.get(this.modes[3]);
|
||||
}
|
||||
}
|
||||
|
||||
if (HL.low === 0 || value < HL.low) {
|
||||
HL.low = value;
|
||||
}
|
||||
if (HL.high === 0 || value > HL.high) {
|
||||
HL.high = value;
|
||||
}
|
||||
if (temporal.low === 0 || dt < temporal.low) {
|
||||
temporal.low = dt;
|
||||
}
|
||||
if (temporal.high === 0 || dt > temporal.high) {
|
||||
temporal.high = dt;
|
||||
}
|
||||
|
||||
chartData.push({
|
||||
date: dt,
|
||||
value: value
|
||||
});
|
||||
if (HL.low === 0 || value < HL.low) {
|
||||
HL.low = value;
|
||||
}
|
||||
if (HL.high === 0 || value > HL.high) {
|
||||
HL.high = value;
|
||||
}
|
||||
|
||||
}, this);
|
||||
obj = {date: dt, value: value};
|
||||
|
||||
if (mode => 6) {
|
||||
obj.valueB = valueB;
|
||||
}
|
||||
chartData.push(obj);
|
||||
|
||||
console.log('this.temporal', this.temporal);
|
||||
console.log('temporal', temporal);
|
||||
console.log(chartData);
|
||||
}, this);
|
||||
|
||||
console.log(chartData);
|
||||
|
||||
console.log('Doing chart now');
|
||||
console.log('Doing chart now');
|
||||
|
||||
//debugger;
|
||||
// SERIAL CHART
|
||||
self.chart = new AmCharts.AmSerialChart();
|
||||
//Debugger;
|
||||
// SERIAL CHART
|
||||
self.chart = new AmCharts.AmSerialChart();
|
||||
|
||||
//"2016-08-10T23:04:31.000Z"
|
||||
self.chart.dataProvider = chartData;
|
||||
self.chart.dataDateFormat = "YYYY-MM-DDTHH:NN:SS.QQQ";
|
||||
self.chart.categoryField = "date";
|
||||
self.chart.dataProvider = chartData;
|
||||
self.chart.dataDateFormat = 'YYYY-MM-DDTHH:NN:SS.QQQ';
|
||||
self.chart.categoryField = 'date';
|
||||
|
||||
// AXES
|
||||
// category
|
||||
var categoryAxis = self.chart.categoryAxis;
|
||||
categoryAxis.parseDates = true; // As our data is date-based, we set parseDates to true
|
||||
categoryAxis.minPeriod = 'mm'; // Our data is daily, so we set minPeriod to DD
|
||||
categoryAxis.gridAlpha = 0.1;
|
||||
categoryAxis.minorGridAlpha = 0.1;
|
||||
categoryAxis.axisAlpha = 0;
|
||||
categoryAxis.minorGridEnabled = true;
|
||||
categoryAxis.inside = true;
|
||||
|
||||
// Value
|
||||
var valueAxis = new AmCharts.ValueAxis();
|
||||
valueAxis.tickLength = 0;
|
||||
valueAxis.axisAlpha = 0;
|
||||
valueAxis.showFirstLabel = false;
|
||||
valueAxis.showLastLabel = false;
|
||||
self.chart.addValueAxis(valueAxis);
|
||||
|
||||
if (mode === 6) {
|
||||
var co2Axis = new AmCharts.ValueAxis();
|
||||
co2Axis.tickLength = 0;
|
||||
co2Axis.axisAlpha = 0;
|
||||
co2Axis.showFirstLabel = false;
|
||||
co2Axis.showLastLabel = false;
|
||||
co2Axis.position = 'right';
|
||||
self.chart.addValueAxis(co2Axis);
|
||||
|
||||
}
|
||||
|
||||
|
||||
// AXES
|
||||
// category
|
||||
var categoryAxis = self.chart.categoryAxis;
|
||||
categoryAxis.parseDates = true; // as our data is date-based, we set parseDates to true
|
||||
categoryAxis.minPeriod = "mm"; // our data is daily, so we set minPeriod to DD
|
||||
categoryAxis.gridAlpha = 0.1;
|
||||
categoryAxis.minorGridAlpha = 0.1;
|
||||
categoryAxis.axisAlpha = 0;
|
||||
categoryAxis.minorGridEnabled = true;
|
||||
categoryAxis.inside = true;
|
||||
|
||||
// value
|
||||
var valueAxis = new AmCharts.ValueAxis();
|
||||
valueAxis.tickLength = 0;
|
||||
valueAxis.axisAlpha = 0;
|
||||
valueAxis.showFirstLabel = false;
|
||||
valueAxis.showLastLabel = false;
|
||||
self.chart.addValueAxis(valueAxis);
|
||||
|
||||
// GRAPH
|
||||
var graph = new AmCharts.AmGraph();
|
||||
graph.dashLength = 3;
|
||||
graph.lineColor = "#00CC00";
|
||||
graph.valueField = "value";
|
||||
graph.dashLength = 3;
|
||||
graph.bullet = "round";
|
||||
graph.balloonText = "[[category]]<br><b><span style='font-size:14px;'>value:[[value]]</span></b>";
|
||||
self.chart.addGraph(graph);
|
||||
|
||||
// CURSOR
|
||||
var chartCursor = new AmCharts.ChartCursor();
|
||||
chartCursor.valueLineEnabled = true;
|
||||
chartCursor.valueLineBalloonEnabled = true;
|
||||
self.chart.addChartCursor(chartCursor);
|
||||
|
||||
// SCROLLBAR
|
||||
var chartScrollbar = new AmCharts.ChartScrollbar();
|
||||
self.chart.addChartScrollbar(chartScrollbar);
|
||||
|
||||
// HORIZONTAL GREEN RANGE
|
||||
var guide = new AmCharts.Guide();
|
||||
guide.value = 525;
|
||||
guide.toValue = 575;
|
||||
guide.fillColor = "#00CC00";
|
||||
guide.inside = true;
|
||||
guide.fillAlpha = 0.2;
|
||||
guide.lineAlpha = 0;
|
||||
valueAxis.addGuide(guide);
|
||||
// GRAPH
|
||||
var graph = new AmCharts.AmGraph();
|
||||
graph.dashLength = 3;
|
||||
graph.lineColor = '#00CC00';
|
||||
graph.valueField = 'value';
|
||||
graph.dashLength = 3;
|
||||
graph.bullet = 'round';
|
||||
graph.balloonText = '[[category]]<br><b><span style=\'font-size:14px;\'>value:[[value]]</span></b>';
|
||||
self.chart.addGraph(graph);
|
||||
|
||||
|
||||
// WRITE
|
||||
if (mode === 6) {
|
||||
var co2graph = new AmCharts.AmGraph();
|
||||
co2graph.valueField = 'valueB';
|
||||
co2graph.title = 'Co2';
|
||||
co2graph.type = 'line';
|
||||
co2graph.valueAxis = co2Axis; // Indicate which axis should be used
|
||||
co2graph.lineColor = '#786c56';
|
||||
co2graph.lineThickness = 1;
|
||||
co2graph.legendValueText = '[[description]]/[[value]]';
|
||||
|
||||
co2graph.bullet = 'round';
|
||||
co2graph.bulletSizeField = 'townSize'; // Indicate which field should be used for bullet size
|
||||
co2graph.bulletBorderColor = '#786c56';
|
||||
co2graph.bulletBorderAlpha = 1;
|
||||
co2graph.bulletBorderThickness = 2;
|
||||
co2graph.bulletColor = '#000000';
|
||||
//Co2graph.labelText = "[[townName2]]"; // not all data points has townName2 specified, that's why labels are displayed only near some of the bullets.
|
||||
co2graph.labelPosition = 'right';
|
||||
//Co2graph.balloonText = "latitude:[[value]]";
|
||||
co2graph.showBalloon = true;
|
||||
co2graph.dashLengthField = 'dashLength';
|
||||
self.chart.addGraph(co2graph);
|
||||
|
||||
}
|
||||
// CURSOR
|
||||
var chartCursor = new AmCharts.ChartCursor();
|
||||
chartCursor.valueLineEnabled = true;
|
||||
chartCursor.valueLineBalloonEnabled = true;
|
||||
self.chart.addChartCursor(chartCursor);
|
||||
|
||||
// SCROLLBAR
|
||||
var chartScrollbar = new AmCharts.ChartScrollbar();
|
||||
self.chart.addChartScrollbar(chartScrollbar);
|
||||
|
||||
/* // HORIZONTAL GREEN RANGE
|
||||
var guide = new AmCharts.Guide();
|
||||
guide.value = 525;
|
||||
guide.toValue = 575;
|
||||
guide.fillColor = '#00CC00';
|
||||
guide.inside = true;
|
||||
guide.fillAlpha = 0.2;
|
||||
guide.lineAlpha = 0;
|
||||
valueAxis.addGuide(guide);*/
|
||||
|
||||
// WRITE
|
||||
|
||||
$('#chartdiv').empty();
|
||||
self.chart.write("chartdiv");
|
||||
self.chart.write('chartdiv');
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
@ -391,7 +439,10 @@ var self = this;
|
||||
var mdotCollection = new mDotCollection();
|
||||
|
||||
var mainSettings = new MainModel();
|
||||
var mainview = new MainView({collection: mdotCollection, model: mainSettings});
|
||||
var mainview = new MainView({
|
||||
collection: mdotCollection,
|
||||
model: mainSettings
|
||||
});
|
||||
|
||||
var mdot = new MDOT({collection: mdotCollection});
|
||||
|
||||
|
383
app/test.html
383
app/test.html
@ -3,248 +3,203 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<link href="css/mui.css" rel="stylesheet"
|
||||
type="text/css"/>
|
||||
<link href="css/style.css" rel="stylesheet"
|
||||
type="text/css"/>
|
||||
|
||||
<link href="css/mui.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="lib/notification.js"></script>
|
||||
<link rel="stylesheet" href="css/notification.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="mui-container">
|
||||
<div class='mui-row'>
|
||||
<div class="mui-col-md-3" >
|
||||
<div id="main">
|
||||
</div>
|
||||
|
||||
<div id="graph">
|
||||
</div>
|
||||
<div id="output"></div>
|
||||
|
||||
</div>
|
||||
<div class='mui-row'>
|
||||
<div class="mui-col-md-3">
|
||||
<div id="main"></div>
|
||||
<div id="graph"></div>
|
||||
<div id="output"></div>
|
||||
</div>
|
||||
<div class="mui-col-md-9">
|
||||
<div class="mui-container">
|
||||
<div id="chartdiv" style="width:100%; height:600px;"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--<div id="main"></div>-->
|
||||
<!--<div id="graph"></div>-->
|
||||
|
||||
<!--<div id="main"></div>-->
|
||||
<!--<div id="graph"></div>-->
|
||||
<script type="text/template" id="loaded-template">
|
||||
<div style="background-color: darkred;color: white;font-weight: 900;text-align: center">Loaded</div>
|
||||
</script>
|
||||
<script type="text/template" id="main-template">
|
||||
<div class="mui-container">
|
||||
|
||||
<div class="mui-row">
|
||||
|
||||
<div class="mui-select">
|
||||
<select id="device" name="device">
|
||||
<option>
|
||||
|
||||
</option>
|
||||
<option>
|
||||
HIE-mobile-1
|
||||
</option>
|
||||
<option>
|
||||
HIE-demo
|
||||
</option>
|
||||
<option>
|
||||
HIE-mobile-2
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-1
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-2
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-3
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-4
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-5
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-6
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-7
|
||||
</option>
|
||||
|
||||
<option>
|
||||
CENSIS-LoRa-1
|
||||
</option>
|
||||
|
||||
<option>
|
||||
CENSIS-LoRa-2
|
||||
</option>
|
||||
|
||||
<option>
|
||||
CENSIS-LoRa-3
|
||||
</option>
|
||||
|
||||
<option>
|
||||
CENSIS-LoRa-4
|
||||
</option>
|
||||
<option>
|
||||
HIE-mDot-1
|
||||
</option>
|
||||
|
||||
</select> <label>Device</label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-6">
|
||||
<div class="mui-textfield">
|
||||
<input type="date" placeholder="" id='from' name="from" /> <label>From</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mui-col-md-6">
|
||||
<div class="mui-textfield">
|
||||
<input type="date" placeholder="" id='to' name="to" /> <label>To</label>
|
||||
</div>
|
||||
<div
|
||||
style="background-color: darkred;color: white;font-weight: 900;text-align: center">Loaded
|
||||
</div>
|
||||
</script>
|
||||
<script type="text/template" id="main-template">
|
||||
<div class="mui-container">
|
||||
<div class="mui-row">
|
||||
<div class="mui-select">
|
||||
<select id="device" name="device">
|
||||
<option></option>
|
||||
<option>
|
||||
HIE-mobile-1
|
||||
</option>
|
||||
<option>
|
||||
HIE-demo
|
||||
</option>
|
||||
<option>
|
||||
HIE-mobile-2
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-1
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-2
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-3
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-4
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-5
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-6
|
||||
</option>
|
||||
<option>
|
||||
HIE-smart-campus-7
|
||||
</option>
|
||||
<option>
|
||||
CENSIS-LoRa-1
|
||||
</option>
|
||||
<option>
|
||||
CENSIS-LoRa-2
|
||||
</option>
|
||||
<option>
|
||||
CENSIS-LoRa-3
|
||||
</option>
|
||||
<option>
|
||||
CENSIS-LoRa-4
|
||||
</option>
|
||||
<option>
|
||||
HIE-mDot-1
|
||||
</option>
|
||||
</select> <label>Device</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-6">
|
||||
<div class="mui-textfield">
|
||||
<input type="date" placeholder="" id='from' name="from"/>
|
||||
<label>From</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mui-col-md-6">
|
||||
<div class="mui-textfield">
|
||||
<input type="date" placeholder="" id='to' name="to"/>
|
||||
<label>To</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mui-row">
|
||||
<button id='refresh' class="mui-btn mui-btn--small mui-btn--primary">Refresh</button>
|
||||
<button id='refresh'
|
||||
class="mui-btn mui-btn--small mui-btn--primary">Refresh
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script type="text/template" id="list-template">
|
||||
<ul></ul>
|
||||
</script>
|
||||
|
||||
<script type="text/template" id="item-template">
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-2"><%= item.timestamp %></div>
|
||||
</script>
|
||||
<script type="text/template" id="list-template">
|
||||
<ul></ul>
|
||||
</script>
|
||||
<script type="text/template" id="item-template">
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-2"><%= item.timestamp %></div>
|
||||
<div class="mui-col-md-2"><%= item.lux %></div>
|
||||
<div class="mui-col-md-2"><%= item.co2 %></div>
|
||||
<div class="mui-col-md-2"><%= item.temp %></div>
|
||||
<div class="mui-col-md-2"><%= item.humidity %></div>
|
||||
<div class="mui-col-md-2"><%= item.sound %></div>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<script type="text/template" id="AMChart-template">
|
||||
<div class="mui-container">
|
||||
<div class="mui-col-md-2"><%= item.co2 %></div>
|
||||
<div class="mui-col-md-2"><%= item.temp %></div>
|
||||
<div class="mui-col-md-2"><%= item.humidity %></div>
|
||||
<div class="mui-col-md-2"><%= item.sound %></div>
|
||||
</div>
|
||||
</script>
|
||||
<script type="text/template" id="AMChart-template">
|
||||
<div class="mui-container">
|
||||
<div class="mui-row">
|
||||
<div class="mui-select mui-col-md-12">
|
||||
<select id="displaymode" name="displaymode">
|
||||
<option value="0"></option>
|
||||
<option value="1">
|
||||
Light
|
||||
</option>
|
||||
|
||||
<option value="2">
|
||||
Temp
|
||||
</option>
|
||||
<option value="3">
|
||||
Co2
|
||||
<option value="0"></option>
|
||||
<option value="1">
|
||||
Light
|
||||
</option>
|
||||
<option value="2">
|
||||
Temp
|
||||
</option>
|
||||
<option value="3">
|
||||
Co2
|
||||
</option>
|
||||
|
||||
<option value="4">
|
||||
Humidity
|
||||
Humidity
|
||||
</option>
|
||||
<option value="5">
|
||||
Noise
|
||||
Noise
|
||||
</option>
|
||||
<option value="6">
|
||||
Light & Co2
|
||||
</option>
|
||||
<option value="7">
|
||||
Temperature & Humidity
|
||||
</option>
|
||||
|
||||
</select> <label>Graph</label>
|
||||
|
||||
</div>
|
||||
</select> <label>Graph</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<script type="text/template" id="graph-template">
|
||||
<div class="mui-container">
|
||||
<div class="mui-row">
|
||||
<div class="mui-select mui-col-md-6">
|
||||
<select id="displaymode" name="displaymode">
|
||||
<option value="0"></option>
|
||||
<option value="1">
|
||||
Light
|
||||
</option>
|
||||
|
||||
<option value="2">
|
||||
Temp
|
||||
</option>
|
||||
<option value="3">
|
||||
Co2
|
||||
</option>
|
||||
|
||||
<option value="4">
|
||||
Humidity
|
||||
</option>
|
||||
<option value="5">
|
||||
Noise
|
||||
</option>
|
||||
|
||||
</select> <label>Graph</label>
|
||||
|
||||
</div>
|
||||
<div class="mui-col-md-6">
|
||||
<svg id="graphSVG" width="300" height="150" fill="blue">
|
||||
<line x1="46" y1="12" x2="280" y2="12"
|
||||
style="stroke:#004c6d;stroke-width:2;"></line>
|
||||
<text id="maxY" x="36" y="15" text-anchor="end">--</text>
|
||||
<line x1="46" y1="136" x2="280" y2="136"
|
||||
style="stroke:#004c6d;stroke-width:2;"></line>
|
||||
<text id="MinY" x="36" y="139" text-anchor="end">0</text>
|
||||
|
||||
<polyline id="line" fill="none" stroke="#2196F3"
|
||||
text-anchor="end" stroke-width="1"
|
||||
points=""></polyline>
|
||||
<g id="datapoints"></g>
|
||||
<g id="baseline">
|
||||
|
||||
</g>
|
||||
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<script src="lib/jquery.js"
|
||||
integrity="sha256-laXWtGydpwqJ8JA+X9x2miwmaiKhn8tVmOVEigRNtP4="
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="lib/base64.js"></script>
|
||||
<script src="lib/underscore.js"></script>
|
||||
<script src="lib/backbone.js"></script>
|
||||
<script src="lib/sugar-date.js"></script>
|
||||
|
||||
<script src="lib/amcharts.js"></script>
|
||||
<script src="lib/serial.js"></script>
|
||||
<script src="lib/amstock.js"></script>
|
||||
|
||||
|
||||
<script src="js/mdot.js"></script>
|
||||
|
||||
|
||||
</script>
|
||||
<script type="text/template" id="graph-template">
|
||||
<div class="mui-container">
|
||||
<div class="mui-row">
|
||||
<div class="mui-select mui-col-md-6">
|
||||
<select id="displaymode" name="displaymode">
|
||||
<option value="0"></option>
|
||||
<option value="1">
|
||||
Light
|
||||
</option>
|
||||
<option value="2">
|
||||
Temp
|
||||
</option>
|
||||
<option value="3">
|
||||
Co2
|
||||
</option>
|
||||
<option value="4">
|
||||
Humidity
|
||||
</option>
|
||||
<option value="5">
|
||||
Noise
|
||||
</option>
|
||||
</select> <label>Graph</label>
|
||||
</div>
|
||||
<div class="mui-col-md-6">
|
||||
<svg id="graphSVG" width="300" height="150" fill="blue">
|
||||
<line x1="46" y1="12" x2="280" y2="12"
|
||||
style="stroke:#004c6d;stroke-width:2;"></line>
|
||||
<text id="maxY" x="36" y="15" text-anchor="end">--</text>
|
||||
<line x1="46" y1="136" x2="280" y2="136"
|
||||
style="stroke:#004c6d;stroke-width:2;"></line>
|
||||
<text id="MinY" x="36" y="139" text-anchor="end">0</text>
|
||||
<polyline id="line" fill="none" stroke="#2196F3" text-anchor="end"
|
||||
stroke-width="1" points=""></polyline>
|
||||
<g id="datapoints"></g>
|
||||
<g id="baseline"></g>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
<script src="lib/jquery.js"
|
||||
integrity="sha256-laXWtGydpwqJ8JA+X9x2miwmaiKhn8tVmOVEigRNtP4="
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="lib/base64.js"></script>
|
||||
<script src="lib/underscore.js"></script>
|
||||
<script src="lib/backbone.js"></script>
|
||||
<script src="lib/sugar-date.js"></script>
|
||||
<script src="lib/amcharts.js"></script>
|
||||
<script src="lib/serial.js"></script>
|
||||
<script src="lib/amstock.js"></script>
|
||||
<script src="js/mdot.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user