-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjs.go
152 lines (131 loc) · 3.37 KB
/
js.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package gui
// THIS FILE IS AUTO-GENERATED BY make.bash
// EDITING IS FUTILE
const JS = `<script type="text/javascript">
// random ID number for this page, to assure proper update if open in multiple browsers
var pageID = Math.floor((Math.random()* 10000000000)+1);
// auto-update rate
var tick = 300;
var autoUpdate = true;
// show error in document (non-intrusive alert())
function showErr(err){
if (err != ""){
document.body.style.background = "#DDDDDD";
}else{
document.body.style.background = "#FFFFFF";
}
document.getElementById("ErrorBox").innerHTML = err;
}
// show debug message in document
function msg(err){
document.getElementById("MsgBox").innerHTML = err;
}
// wraps document.getElementById, shows error if not found
function elementById(id){
var elem = document.getElementById(id);
if (elem == null){
showErr("undefined: " + id);
return null;
}
return elem;
}
// called on change of auto-update button
//function setautoupdate(){
// autoupdate = elementById("AutoUpdate").checked;
//}
// Id of element that has focus. We don't auto-update a focused textbox
// as this would overwrite the users input.
var hasFocus = "";
function notifyfocus(id){hasFocus = id;}
function notifyblur (id){hasFocus = "";}
function setattr_(elem, attr, value){
if (elem[attr] == null){
showErr("settAttr: undefined: " + elem + "[" + attr + "]");
return;
}
elem[attr] = value;
}
// called by server to manipulate the DOM
function setAttr(id, attr, value){
var elem = elementById(id);
if (elem == null){
showErr("undefined: " + id);
return;
}
setattr_(elem, attr, value);
}
// set textbox value unless focused
function setTextbox(id, value){
if (hasFocus != id){
elementById(id).value = value;
}
}
// set select value unless focused
function setSelect(id, value){
if (hasFocus != id){
elementById(id).value = value;
}
}
// onreadystatechange function for update http request.
// updates the DOM with new values received from server.
function updateDOM(req){
if (req.readyState == 4) { // DONE
if (req.status == 200) {
showErr("");
var response = JSON.parse(req.responseText);
for(var i=0; i<response.length; i++){
var r = response[i];
var func = window[r.F];
if (func == null) {
showErr("undefined: " + r.F);
}else{
func.apply(this, r.Args);
}
}
} else {
showErr("Disconnected");
}
}
}
// updates the contents of all dynamic elements.
// periodically called via setInterval()
function update(){
try{
var req = new XMLHttpRequest();
req.open("POST", document.URL, true);
req.timeout = tick;
req.onreadystatechange = function(){ updateDOM(req) };
req.setRequestHeader("Content-type","application/x-www-form-urlencoded");
req.send("id=" + pageID);
}catch(e){
showErr(e); // TODO: same message as update
}
}
function doAutoUpdate(){
if (autoUpdate){
update();
}
}
setInterval(doAutoUpdate, tick);
// sends event notification to server, called on button clicks etc.
function notify(id, arg){
try{
var req = new XMLHttpRequest();
req.open("PUT", document.URL, false);
var map = {"ID": id, "Arg": arg};
req.send(JSON.stringify(map));
}catch(e){
showErr(e); // TODO
}
update();
}
function notifyel(id, key){
notify(id, elementById(id)[key]);
}
function notifyselect(id){
var e = elementById(id);
var value = e.options[e.selectedIndex].text;
notify(id, value);
}
window.onload = update;
</script>`