mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-30 05:11:41 +08:00
28 lines
980 B
HTML
28 lines
980 B
HTML
<script type="text/javascript">//<![CDATA[
|
|
XHR.poll(1, '<%=url([[admin]], [[nas]], [[syncthing]], [[status]])%>', null,
|
|
function (x, data) {
|
|
var tb = document.getElementById('syncthing_status');
|
|
if (data && tb) {
|
|
if (data.running) {
|
|
var links = '<em><b><font color="green">Syncthing <%:RUNNING%></font></b></em><input class="btn cbi-button mar-10" type="button" value="<%:Open Syncthing page%>" onclick="openwebui();" />';
|
|
tb.innerHTML = links;
|
|
} else {
|
|
tb.innerHTML = '<em><b><font color="red">Syncthing <%:NOT RUNNING%></font></b></em>';
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
function openwebui(){
|
|
var url = window.location.host+":<%=luci.sys.exec("uci -q get syncthing.syncthing.gui_address"):match(":[0-9]+"):gsub(":", "")%>";
|
|
window.open('http://'+url,'target','');
|
|
}
|
|
//]]>
|
|
</script>
|
|
<style>.mar-10 {margin-left: 50px; margin-right: 10px;}</style>
|
|
<fieldset class="cbi-section">
|
|
<p id="syncthing_status">
|
|
<em><%:Collecting data...%></em>
|
|
</p>
|
|
</fieldset>
|