mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-28 08:59:37 -05:00
mithril-webui: make automatic update work
This commit is contained in:
parent
ddd91e228a
commit
ddbf7c8fa2
@ -41,7 +41,7 @@ var last_update_ts = 0;
|
|||||||
function check_for_changes(){
|
function check_for_changes(){
|
||||||
var tokens = [];
|
var tokens = [];
|
||||||
for_key_in_obj(cache, function(path){
|
for_key_in_obj(cache, function(path){
|
||||||
var token = cache[path].token;
|
var token = cache[path].statetoken;
|
||||||
if(token !== undefined){
|
if(token !== undefined){
|
||||||
tokens.push(token);
|
tokens.push(token);
|
||||||
}
|
}
|
||||||
@ -58,7 +58,7 @@ function check_for_changes(){
|
|||||||
var paths_to_fetch = [];
|
var paths_to_fetch = [];
|
||||||
for_key_in_obj(cache, function(path){
|
for_key_in_obj(cache, function(path){
|
||||||
var found = false;
|
var found = false;
|
||||||
for(var i = 0; i > response.data.length; i++){
|
for(var i = 0; i < response.data.length; i++){
|
||||||
if(response.data[i] === cache[path].statetoken){
|
if(response.data[i] === cache[path].statetoken){
|
||||||
found = true;
|
found = true;
|
||||||
}
|
}
|
||||||
@ -69,7 +69,7 @@ function check_for_changes(){
|
|||||||
});
|
});
|
||||||
var requests = [];
|
var requests = [];
|
||||||
paths_to_fetch.map(function request_it(path){
|
paths_to_fetch.map(function request_it(path){
|
||||||
var req = m.request({
|
var req2 = m.request({
|
||||||
|
|
||||||
method: "GET",
|
method: "GET",
|
||||||
|
|
||||||
@ -78,15 +78,22 @@ function check_for_changes(){
|
|||||||
background: true,
|
background: true,
|
||||||
|
|
||||||
});
|
});
|
||||||
req.then(function fill_in_result(response){
|
req2 = req2.then(function fill_in_result(response){
|
||||||
cache[path].data = response.data;
|
cache[path].data = response.data;
|
||||||
|
cache[path].statetoken = response.statetoken;
|
||||||
});
|
});
|
||||||
requests.push(req);
|
requests.push(req2);
|
||||||
});
|
});
|
||||||
m.sync(requests, function trigger_render(){
|
if(requests.length > 0){
|
||||||
|
m.sync(requests).then(function trigger_render(){
|
||||||
m.startComputation();
|
m.startComputation();
|
||||||
m.endComputation();
|
m.endComputation();
|
||||||
|
setTimeout(check_for_changes, 500);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
setTimeout(check_for_changes, 500);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user