diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-13 20:45:26 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-02-13 20:45:26 +0100 |
commit | 9680fdea9e2e38bfafe0d97967925dd9fc836a05 (patch) | |
tree | ccc5e30e098eab84c4eaf2da8bda97dbfd5a17df /applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js | |
parent | 1d47f0c1a913ccbcba86061daa20e1e336d7b559 (diff) |
luci-app-statistics: convert graph rendering to client side js
This conversion requires cgi-io >= version 17 and uhttpd version >= 2020-02-12
to function properly.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js')
-rw-r--r-- | applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js | 205 |
1 files changed, 205 insertions, 0 deletions
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js new file mode 100644 index 0000000000..2abe78dac7 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js @@ -0,0 +1,205 @@ +'use strict'; +'require ui'; +'require uci'; +'require statistics.rrdtool as rrdtool'; + +var pollFn = null, + activePlugin = null, + activeInstance = null; + +return L.view.extend({ + load: function() { + return rrdtool.load(); + }, + + updatePluginTab: function(host, span, time, ev) { + var container = ev.target, + plugin = ev.detail.tab, + plugin_instances = rrdtool.pluginInstances(host.value, plugin); + + activePlugin = plugin; + + L.dom.content(container, [ + E('p', {}, [ + E('em', { 'class': 'spinning' }, [ _('Loading data…') ]) + ]) + ]); + + Promise.all(plugin_instances.map(function(instance) { + return rrdtool.render(plugin, instance, false, host.value, span.value, Math.max(200, container.offsetWidth - 100)); + })).then(function(blobs) { + var multiple = blobs.length > 1; + + L.dom.content(container, E('div', {}, blobs.map(function(blobs, i) { + var plugin_instance = plugin_instances[i]; + + return E('div', { + 'class': 'center', + 'data-tab': multiple ? i : null, + 'data-tab-title': multiple ? '%s: %s'.format(rrdtool.pluginTitle(plugin), plugin_instances[i]) : null, + 'data-plugin': plugin, + 'data-plugin-instance': plugin_instances[i], + 'cbi-tab-active': function(ev) { activeInstance = ev.target.getAttribute('data-plugin-instance') } + }, blobs.map(function(blob) { + return E('img', { + 'src': URL.createObjectURL(new Blob([blob], { type: 'image/png' })) + }); + })); + }))); + + if (multiple) + ui.tabs.initTabGroup(container.lastElementChild.childNodes); + else + activeInstance = plugin_instances[0]; + }); + }, + + updateGraphs: function(host, span, time, container, ev) { + var plugin_names = rrdtool.pluginNames(host.value); + + container.querySelectorAll('img').forEach(function(img) { + URL.revokeObjectURL(img.src); + }); + + L.dom.content(container, null); + + if (container.hasAttribute('data-initialized')) { + container.removeAttribute('data-initialized'); + container.parentNode.removeChild(container.previousElementSibling); + } + + for (var i = 0; i < plugin_names.length; i++) { + if (!rrdtool.hasDefinition(plugin_names[i])) + continue; + + container.appendChild(E('div', { + 'data-tab': plugin_names[i], + 'data-tab-title': rrdtool.pluginTitle(plugin_names[i]), + 'cbi-tab-active': L.bind(this.updatePluginTab, this, host, span, time) + }, [ + E('p', {}, [ + E('em', { 'class': 'spinning' }, [ _('Loading data…') ]) + ]) + ])); + } + + ui.tabs.initTabGroup(container.childNodes); + }, + + refreshGraphs: function(host, span, time, container) { + var div = document.querySelector('[data-plugin="%s"][data-plugin-instance="%s"]'.format(activePlugin, activeInstance || '')); + + return rrdtool.render(activePlugin, activeInstance || '', false, host.value, span.value, Math.max(200, container.offsetWidth - 100)).then(function(blobs) { + return Promise.all(blobs.map(function(blob) { + return new Promise(function(resolveFn, rejectFn) { + var img = E('img', { 'src': URL.createObjectURL(new Blob([blob], { type: 'image/png' })) }); + img.onload = function(ev) { resolveFn(img) }; + img.onerror = function(ev) { resolveFn(img) }; + }); + })).then(function(imgs) { + while (div.childNodes.length > imgs.length) + div.removeChild(div.lastElementChild); + + for (var i = 0; i < imgs.length; i++) { + if (i < div.childNodes.length) { + URL.revokeObjectURL(div.childNodes[i].src); + div.childNodes[i].src = imgs[i].src; + } + else { + div.appendChild(E('img', { 'src': imgs[i].src })); + } + } + }); + }); + }, + + togglePolling: function(host, span, time, container, ev) { + var btn = ev.currentTarget; + + if (pollFn) { + L.Poll.remove(pollFn); + pollFn = null; + } + + if (time.value != '0') { + pollFn = L.bind(this.refreshGraphs, this, host, span, time, container); + L.Poll.add(pollFn, +time.value); + } + }, + + render: function() { + var hosts = rrdtool.hostInstances(); + return hosts.length ? this.renderGraphs() : this.renderNoData(); + }, + + renderNoData: function() { + ui.showModal(_('No RRD data found'), [ + E('p', {}, _('There is no RRD data available yet to render graphs.')), + E('p', {}, _('You need to configure <em>collectd</em> to gather data into <em>.rrd</em> files.')), + E('div', { 'class': 'right' }, [ + E('button', { + 'class': 'cbi-button', + 'click': function(ev) { location.href = 'collectd' } + }, [ _('Setup collectd') ]) + ]) + ]); + }, + + renderGraphs: function() { + var hostSel = E('select', { 'style': 'max-width:170px', 'data-name': 'host' }, rrdtool.hostInstances().map(function(host) { + return E('option', { + 'selected': (rrdtool.opts.host == host) ? 'selected' : null + }, [ host ]) + })); + + var spanSel = E('select', { 'style': 'max-width:170px', 'data-name': 'timespan' }, L.toArray(uci.get('luci_statistics', 'collectd_rrdtool', 'RRATimespans')).map(function(span) { + return E('option', { + 'selected': (rrdtool.opts.timespan == span) ? 'selected' : null + }, [ span ]) + })); + + var timeSel = E('select', { 'style': 'max-width:170px', 'data-name': 'refresh' }, [ + E('option', { 'value': 0 }, [ _('Do not refresh') ]), + E('option', { 'value': 5 }, [ _('Every 5 seconds') ]), + E('option', { 'value': 30 }, [ _('Every 30 seconds') ]), + E('option', { 'value': 60 }, [ _('Every minute') ]) + ]); + + var graphDiv = E('div', { 'data-name': 'graphs' }); + + var view = E([], [ + E('h2', {}, [ _('Statistics') ]), + E('div', {}, [ + E('div', {}, [ + hostSel, + E('button', { + 'class': 'cbi-button cbi-button-apply', + 'click': ui.createHandlerFn(this, 'updateGraphs', hostSel, spanSel, timeSel, graphDiv, ) + }, [ _('Display Host »') ]), + ' ', + spanSel, + E('button', { + 'class': 'cbi-button cbi-button-apply', + 'click': ui.createHandlerFn(this, 'updateGraphs', hostSel, spanSel, timeSel, graphDiv) + }, [ _('Display timespan »') ]), + ' ', + timeSel, + E('button', { + 'class': 'cbi-button cbi-button-apply', + 'click': ui.createHandlerFn(this, 'togglePolling', hostSel, spanSel, timeSel, graphDiv) + }, [ _('Apply interval »') ]) + ]), + E('hr'), + graphDiv + ]) + ]); + + requestAnimationFrame(L.bind(this.updateGraphs, this, hostSel, spanSel, timeSel, graphDiv)); + + return view; + }, + + handleSave: null, + handleSaveApply: null, + handleReset: null +}); |