applications/luci-ahcp: rework status javascript to use XHR.poll()
This commit is contained in:
parent
fa52f7f54b
commit
97f74fe766
1 changed files with 31 additions and 38 deletions
|
@ -1,48 +1,41 @@
|
||||||
<script type="text/javascript">//<![CDATA[
|
<script type="text/javascript">//<![CDATA[
|
||||||
var stxhr = new XHR();
|
XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "network", "ahcpd", "status")%>', null,
|
||||||
(function() {
|
function(x, st)
|
||||||
var func = arguments.callee;
|
{
|
||||||
|
var tb = document.getElementById('ahcpd_status_table');
|
||||||
stxhr.get('<%=luci.dispatcher.build_url("admin", "network", "ahcpd", "status")%>', null,
|
var tx = document.getElementById('ahcpd_status_text');
|
||||||
function(x, st)
|
if (st && tb && tx)
|
||||||
{
|
{
|
||||||
var tb = document.getElementById('ahcpd_status_table');
|
/* clear all rows */
|
||||||
var tx = document.getElementById('ahcpd_status_text');
|
while( tb.rows.length > 1 )
|
||||||
if (st && tb && tx)
|
tb.deleteRow(1);
|
||||||
|
|
||||||
|
for( var i = 0; i < st.leases.length; i++ )
|
||||||
{
|
{
|
||||||
/* clear all rows */
|
var tr = tb.insertRow(-1);
|
||||||
while( tb.rows.length > 1 )
|
tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1);
|
||||||
tb.deleteRow(1);
|
|
||||||
|
|
||||||
for( var i = 0; i < st.leases.length; i++ )
|
tr.insertCell(-1).innerHTML = st.leases[i].addr;
|
||||||
{
|
tr.insertCell(-1).innerHTML = String.format('%t', st.leases[i].age);
|
||||||
var tr = tb.insertRow(-1);
|
|
||||||
tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1);
|
|
||||||
|
|
||||||
tr.insertCell(-1).innerHTML = st.leases[i].addr;
|
|
||||||
tr.insertCell(-1).innerHTML = String.format('%t', st.leases[i].age);
|
|
||||||
}
|
|
||||||
|
|
||||||
if( tb.rows.length == 1 )
|
|
||||||
{
|
|
||||||
var tr = tb.insertRow(-1);
|
|
||||||
tr.className = 'cbi-section-table-row';
|
|
||||||
|
|
||||||
var td = tr.insertCell(-1);
|
|
||||||
td.colSpan = 2;
|
|
||||||
td.innerHTML = '<em><br /><%:There are no active leases.%></em>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if( st.uid == '00:00:00:00:00:00:00:00' )
|
|
||||||
tx.innerHTML = 'The AHCP Service is not running.';
|
|
||||||
else
|
|
||||||
tx.innerHTML = String.format('The AHCP Service is running with ID %s.', st.uid);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window.setTimeout(func, 5000);
|
if( tb.rows.length == 1 )
|
||||||
|
{
|
||||||
|
var tr = tb.insertRow(-1);
|
||||||
|
tr.className = 'cbi-section-table-row';
|
||||||
|
|
||||||
|
var td = tr.insertCell(-1);
|
||||||
|
td.colSpan = 2;
|
||||||
|
td.innerHTML = '<em><br /><%:There are no active leases.%></em>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if( st.uid == '00:00:00:00:00:00:00:00' )
|
||||||
|
tx.innerHTML = 'The AHCP Service is not running.';
|
||||||
|
else
|
||||||
|
tx.innerHTML = String.format('The AHCP Service is running with ID %s.', st.uid);
|
||||||
}
|
}
|
||||||
)
|
}
|
||||||
})();
|
);
|
||||||
//]]></script>
|
//]]></script>
|
||||||
|
|
||||||
<fieldset class="cbi-section">
|
<fieldset class="cbi-section">
|
||||||
|
|
Loading…
Reference in a new issue