diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2022-02-21 23:37:24 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-12-13 23:30:53 +0100 |
commit | 75dcb097547257d654e9b7f7d58578b9210968e5 (patch) | |
tree | 5f4a42bc2a33387eb91d31c769df215195cc4297 /modules | |
parent | 14c3a7803f4c88bc19c1a096a56a2e2e65958a1a (diff) |
luci-mod-status: improve channel_analysis page
Many user complained problem with using pool with wifi scan. This comes
from the limitation that some wifi driver have problems with scanning
nearby wifi and keeping traffic.
Fix this by doing the wifi scan only one time on page load and provide a
button to refresh the channels manually. The original implementation is
preserved as the user can simply reenable the poll referesh from the ui.
While at it also sort the table by channel instead of by signal quality
to better track the most used channels in the table.
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
[rewrap commit message]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js | 47 |
1 files changed, 30 insertions, 17 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js index 0c8cff8c0e..9f266ebef3 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js @@ -163,6 +163,8 @@ return view.extend({ chan_analysis.tab.addEventListener('cbi-tab-active', L.bind(function(ev) { this.active_tab = ev.detail.tab; + if (!this.radios[this.active_tab].loadedOnce) + poll.start(); }, this)); }, @@ -170,17 +172,17 @@ return view.extend({ if (!this.active_tab) return; - var radioDev = this.radios[this.active_tab].dev, - table = this.radios[this.active_tab].table, - chan_analysis = this.radios[this.active_tab].graph, - scanCache = this.radios[this.active_tab].scanCache; + var radio = this.radios[this.active_tab]; return Promise.all([ - radioDev.getScanList(), - this.callInfo(radioDev.getName()) + radio.dev.getScanList(), + this.callInfo(radio.dev.getName()) ]).then(L.bind(function(data) { var results = data[0], - local_wifi = data[1]; + local_wifi = data[1], + table = radio.table, + chan_analysis = radio.graph, + scanCache = radio.scanCache; var rows = []; @@ -228,9 +230,7 @@ return view.extend({ results.push(scanCache[k].data); results.sort(function(a, b) { - var diff = (b.quality - a.quality) || (a.channel - b.channel); - - if (diff) + if (a.channel - b.channel) return diff; if (a.ssid < b.ssid) @@ -306,6 +306,11 @@ return view.extend({ } cbi_update_table(table, rows); + + if (!radio.loadedOnce) { + radio.loadedOnce = true; + poll.stop(); + } }, this)) }, @@ -347,7 +352,16 @@ return view.extend({ var svg = data[0], wifiDevs = data[1]; - var v = E('div', {}, E('div')); + var h2 = E('div', {'class' : 'cbi-title-section'}, [ + E('h2', {'class': 'cbi-title-field'}, [ _('Channel Analysis') ]), + E('div', {'class': 'cbi-title-buttons' }, [ + E('button', { + 'class': 'cbi-button cbi-button-edit', + 'click': ui.createHandlerFn(this, 'handleScanRefresh') + }, [ _('Refresh Channels') ])]) + ]); + + var tabs = E('div', {}, E('div')); for (var ifname in wifiDevs) { var freq_tbl = { @@ -392,25 +406,24 @@ return view.extend({ dev: wifiDevs[ifname].dev, graph: graph_data, table: table, - scanCache: {} + scanCache: {}, + loadedOnce: false, }; cbi_update_table(table, [], E('em', { class: 'spinning' }, _('Starting wireless scan...'))); - v.firstElementChild.appendChild(tab) + tabs.firstElementChild.appendChild(tab) requestAnimationFrame(L.bind(this.create_channel_graph, this, graph_data, freq_tbl[freq], freq)); } } - ui.tabs.initTabGroup(v.firstElementChild.childNodes); + ui.tabs.initTabGroup(tabs.firstElementChild.childNodes); this.pollFn = L.bind(this.handleScanRefresh, this); - poll.add(this.pollFn); - poll.start(); - return v; + return E('div', {}, [h2, tabs]); }, handleSaveApply: null, |