regression: fixed broken polling

pull/2/head
gorhill 10 years ago
parent e025afe8ea
commit 0211bcec64

@ -87,28 +87,8 @@ function setUserSetting(setting, value) {
/******************************************************************************/ /******************************************************************************/
var matrixSnapshotChanged = function() {
if ( typeof matrixSnapshot !== 'object' ) {
return;
}
if ( matrixSnapshot.mtxContentModified ) {
makeMenu();
return;
}
if ( matrixSnapshot.mtxCountModified ) {
updateMatrixCounts();
}
if ( matrixSnapshot.mtxColorModified ) {
updateMatrixColors();
updateMatrixBehavior();
updateMatrixButtons();
}
};
/******************************************************************************/
function updateMatrixSnapshot() { function updateMatrixSnapshot() {
matrixSnapshotPoller.pollNow(matrixSnapshotChanged); matrixSnapshotPoller.pollNow();
} }
/******************************************************************************/ /******************************************************************************/
@ -1209,20 +1189,39 @@ var onMatrixSnapshotReady = function(response) {
var matrixSnapshotPoller = (function() { var matrixSnapshotPoller = (function() {
var timer = null; var timer = null;
var snapshotPolled = function(response) { var processPollResult = function(response) {
timer = null; if ( typeof response !== 'object' ) {
if ( typeof response === 'object' ) { return;
matrixSnapshot = response; }
matrixSnapshotChanged(); if (
response.mtxContentModified === false &&
response.mtxCountModified === false &&
response.mtxColorModified === false
) {
return;
}
matrixSnapshot = response;
if ( response.mtxContentModified ) {
makeMenu();
return;
}
if ( response.mtxCountModified ) {
updateMatrixCounts();
}
if ( response.mtxColorModified ) {
updateMatrixColors();
updateMatrixBehavior();
updateMatrixButtons();
} }
}; };
var pollNow = function(callback) { var onPolled = function(response) {
processPollResult(response);
pollAsync();
};
var pollNow = function() {
unpollAsync(); unpollAsync();
var onPolled = function(response) {
callback(response);
pollAsync();
};
messager.send({ messager.send({
what: 'matrixSnapshot', what: 'matrixSnapshot',
tabId: matrixSnapshot.tabId, tabId: matrixSnapshot.tabId,
@ -1234,7 +1233,7 @@ var matrixSnapshotPoller = (function() {
var poll = function() { var poll = function() {
timer = null; timer = null;
pollNow(snapshotPolled); pollNow();
}; };
var pollAsync = function() { var pollAsync = function() {
@ -1276,7 +1275,9 @@ var matrixSnapshotPoller = (function() {
}, snapshotFetched); }, snapshotFetched);
})(); })();
return pollNow; return {
pollNow: pollNow
};
})(); })();
/******************************************************************************/ /******************************************************************************/

Loading…
Cancel
Save