1
0
Fork 0
fgdata/webgui/topics/Simulator/Screenshot.js
2015-03-04 09:40:25 +01:00

38 lines
1.1 KiB
JavaScript

define([
'jquery', 'knockout', 'text!./Screenshot.html', 'kojqui/spinner'
], function(jquery, ko, htmlString, fgcommand ) {
function ViewModel(params) {
var self = this;
self.imageUrl = ko.observable("");
self.updateInterval = ko.observable(5);
self.spinUpdateInterval = function(evt, ui) {
$(evt.target).spinner("value",ui.value);
return true;
}
self.updateId = 0;
self.update = function( id ) {
if( id != self.updateId )
return;
self.imageUrl("/screenshot?type=jpg&t=" + Date.now());
console.log(self.updateInterval(), self.imageUrl());
setTimeout( function() { self.update(id); }, self.updateInterval()*1000);
};
self.update(++self.updateId);
}
ViewModel.prototype.dispose = function() {
++self.updateId;
}
// Return component definition
return {
viewModel : ViewModel,
template : htmlString
};
});