Merge remote-tracking branch 'origin/master'

application-manager-new
charithag 9 years ago
commit 9cdba70f72

1
.gitignore vendored

@ -30,3 +30,4 @@ target
.project .project
*.iml *.iml
.idea .idea
.DS_Store

@ -39,30 +39,13 @@ eventModule = function () {
var eventsData = []; var eventsData = [];
// -- start of dummy data for (var i = 0; i < fetchedData.size(); i++) {
eventsData.push({
var timeInterval = 30; time: fetchedData.get(i).getTime(),
var i, rnd; deviceId: fetchedData.get(i).getDeviceId(),
var currentDay = new Date(); activity: fetchedData.get(i).getDeviceActivity()
var startDate = currentDay.getTime() - (60 * 60 * 24 * 5); });
var endDate = currentDay.getTime(); };
var i = parseInt(startDate / 1000);
while (i < parseInt(endDate / 1000)) {
rnd = rnd = Math.random() * 50;
eventsData.push({time: i*1000, deviceName: 'device' + rnd, activity:'Event number ' + rnd});
i += timeInterval;
}
// -- end of dummy data
// for (var i = 0; i < fetchedData.size(); i++) {
// eventsData.push({
// time: fetchedData.get(i).getTime(),
// deviceName: fetchedData.get(i).getDeviceName(),
// activity: fetchedData.get(i).getDeviceActivity()
// });
// };
return eventsData; return eventsData;
}; };

@ -11,7 +11,7 @@
{{#each data}} {{#each data}}
<tr> <tr>
<td width="20%" class="formatDate">{{time}}</td> <td width="20%" class="formatDate">{{time}}</td>
<td width="20%">{{deviceName}}</td> <td width="20%">{{deviceId}}</td>
<td>{{activity}}</td> <td>{{activity}}</td>
</tr> </tr>
{{/each}} {{/each}}

Loading…
Cancel
Save