3
0
Fork 0

[IMP] stop hammering the server when our call caused a problem

10.0
Holger Brunn 2017-08-10 09:29:28 +02:00
parent 8c64013780
commit c52e355ef1
No known key found for this signature in database
GPG Key ID: 01C9760FECA3AE18
1 changed files with 20 additions and 7 deletions

View File

@ -30,18 +30,25 @@ openerp.web_menu_navbar_needaction = function(instance)
new instance.web.Model('ir.config_parameter') new instance.web.Model('ir.config_parameter')
.call('get_param', .call('get_param',
['web_menu_navbar_needaction.refresh_timeout']) ['web_menu_navbar_needaction.refresh_timeout'])
.then(self.proxy(self.refresh_navbar_needaction)) .then(self.proxy(self.set_interval_navbar_needaction))
}); });
return result; return result;
}, },
refresh_navbar_needaction: function(timeout) set_interval_navbar_needaction: function(timeout)
{ {
if(parseInt(timeout, 10)) if(parseInt(timeout, 10))
{ {
setTimeout(this.proxy(this.refresh_navbar_needaction), timeout, timeout); this.navbar_needaction_timer = setInterval(
this.proxy(this.load_navbar_needaction), timeout
);
} }
return this.load_navbar_needaction(); return this.load_navbar_needaction();
}, },
clear_interval_navbar_needaction: function(error, ev)
{
clearInterval(this.navbar_needaction_timer);
ev.preventDefault();
},
load_navbar_needaction: function() load_navbar_needaction: function()
{ {
this.navbar_menu_ids = this.$el.parents('body') this.navbar_menu_ids = this.$el.parents('body')
@ -52,7 +59,8 @@ openerp.web_menu_navbar_needaction = function(instance)
return new instance.web.Model('ir.ui.menu') return new instance.web.Model('ir.ui.menu')
.call('get_navbar_needaction_data', [this.navbar_menu_ids], .call('get_navbar_needaction_data', [this.navbar_menu_ids],
{}, {shadow: true}) {}, {shadow: true})
.then(this.proxy(this.process_navbar_needaction)); .then(this.proxy(this.process_navbar_needaction))
.fail(this.proxy(this.clear_interval_navbar_needaction));
}, },
process_navbar_needaction: function(data) process_navbar_needaction: function(data)
{ {
@ -120,12 +128,17 @@ openerp.web_menu_navbar_needaction = function(instance)
}) })
instance.mail.Thread.include({ instance.mail.Thread.include({
message_fetch_set_read: function (message_list) message_fetch_set_read: function(message_list)
{ {
this._super.apply(this, arguments); this._super.apply(this, arguments);
return this.render_mutex.exec(function() return this.message_fetch_set_read_navbar_needaction(message_list);
},
message_fetch_set_read_navbar_needaction: function()
{
// don't return the deferred object, this should be asynchronous
this.render_mutex.exec(function()
{ {
instance.client.menu.refresh_navbar_needaction(); instance.client.menu.load_navbar_needaction();
}); });
}, },
}) })