modules: use configurable poll interval
authorFlorian Eckert <fe@dev.tdt.de>
Tue, 18 Dec 2018 14:46:53 +0000 (15:46 +0100)
committerFlorian Eckert <fe@dev.tdt.de>
Thu, 20 Dec 2018 09:19:07 +0000 (10:19 +0100)
Make poll interval configurable. Use option from

----
config core 'main'
    option pollinterval '5'
---

This will only be used if the interval option is less or equal zero.
If the poll interval is not configured then a default value of 5 seconds
is used.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
modules/luci-base/htdocs/luci-static/resources/xhr.js
modules/luci-base/luasrc/view/header.htm

index 8292fcdb6ce6d94b60f212fa082c99752aa68ea8..3133898b5e84415f3be57b20c73484d46848e8dc 100644 (file)
@@ -169,8 +169,8 @@ XHR.post = function(url, data, callback) {
 }
 
 XHR.poll = function(interval, url, data, callback, post) {
-       if (isNaN(interval) || interval < 1)
-               interval = 5;
+       if (isNaN(interval) || interval <= 0)
+               interval = L.env.pollinterval;
 
        if (!XHR._q) {
                XHR._t = 0;
index 2813c4d943e3af991903a932c55ad37152689a23..d68e39f9177cdfb99afefce17cc46f707771c42a 100644 (file)
@@ -18,6 +18,7 @@
                resource    = resource,
                scriptname  = luci.http.getenv("SCRIPT_NAME"),
                pathinfo    = luci.http.getenv("PATH_INFO"),
-               requestpath = luci.dispatcher.context.requestpath
+               requestpath = luci.dispatcher.context.requestpath,
+               pollinterval    = luci.config.main.pollinterval or 5
        }) %>);
 </script>